:root {
  --bg: #f2f2f0;
  --text: #222222;
  --muted: #888888;
  --border: #e0e0dd;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Satoshi', sans-serif;
}

/* Override Bootstrap border color */
.border-bottom {
  border-color: var(--border) !important;
}

/* Header */
.hdr h1,
.hdr h2 {
  display: inline-block;
}
.hdr h2 {
  margin-left: 1rem;
}

.site-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 0;
}

/* Section headings */
.section-heading {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Video cards */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.video-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.video-wrapper:hover .play-btn {
  opacity: 1;
}

.video-title {
  font-size: 0.95rem;
  font-weight: 500;
}

.video-desc {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 0;
}

/* Team */
.member-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.member-bio {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
}

/* Prevent horizontal overflow on mobile from Bootstrap row negative margins */
@media (max-width: 767.98px) {
  .row {
    --bs-gutter-x: 0;
  }
}

/* Footer */
.footer-text {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}
