/* ============================================================
   Village Church of Grantsburg -- Main Stylesheet
   ============================================================ */

/* ---- CSS Variables (design tokens) ---- */
:root {
  /* Brand colors */
  --teal:        #64a0a8;   /* primary brand teal */
  --teal-dark:   #4e8d96;   /* darker teal for hover */
  --teal-light:  #eaf4f5;   /* very light teal tint -- section backgrounds */
  --navy:        #1d4b65;   /* deep navy -- dark sections, footer, nav scrolled */
  --navy-dark:   #153a50;   /* hover state for navy */

  /* Neutrals */
  --white:       #ffffff;
  --off-white:   #f8fafb;   /* barely off-white for alternating sections */
  --border:      #dde8ea;   /* light teal-tinted border */

  /* Text */
  --text-dark:   #1a2e38;   /* primary text -- navy-influenced dark */
  --text-mid:    #4d6b7a;   /* secondary text */
  --text-light:  #7a9aaa;   /* tertiary / captions */

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 2px 16px rgba(29, 75, 101, 0.08);
  --shadow-lg: 0 6px 36px rgba(29, 75, 101, 0.14);

  --transition: 0.3s ease;
  --max-width:  1100px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---- Utility: Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Utility: Scroll fade-up animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-delay  { transition-delay: 0.15s; }
.fade-delay-2 { transition-delay: 0.3s; }

/* ---- Typography helpers ---- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-eyebrow.light {
  color: var(--teal-light);
  opacity: 0.85;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.25;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

p {
  margin-bottom: 16px;
  color: var(--text-mid);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 75, 101, 0.2);
}

/* Navy fill -- primary action */
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

/* White outline -- used on dark section backgrounds */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1rem;
  width: 100%;
  text-align: center;
  border-radius: var(--radius);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition),
              box-shadow var(--transition);
}

/* Scrolled: white background with subtle shadow */
.site-nav.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 16px rgba(29, 75, 101, 0.1);
}

/* Nav links go dark on white background */
.site-nav.scrolled .nav-links a {
  color: var(--text-mid);
}

.site-nav.scrolled .nav-links a:hover {
  color: var(--navy);
}

/* Hamburger lines go dark on white background */
.site-nav.scrolled .nav-toggle span {
  background: var(--navy);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav logo container */
.nav-logo {
  display: flex;
  align-items: center;
}

/* Logo image -- visible at all scroll positions.
   Default (over dark hero): semi-transparent dark pill makes the white PNG bg look intentional.
   Scrolled (white nav): mix-blend-mode: multiply makes the white PNG bg fully invisible. */
.nav-logo-img {
  display: block;
  height: 44px;
  width: auto;
  /* Dark rounded container so logo reads clearly over the dark hero */
  background: rgba(15, 35, 50, 0.4);
  padding: 4px 10px;
  border-radius: 8px;
}

/* When scrolled: white nav background -- multiply makes white PNG bg disappear */
.site-nav.scrolled .nav-logo-img {
  background: transparent;
  padding: 0;
  mix-blend-mode: multiply;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
}

/* Facebook icon link in nav */
.nav-fb {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75) !important;
  transition: color var(--transition) !important;
}

.nav-fb:hover {
  color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;

  /* Real hero background from images/hero-bg.png */
  background-image: url('../images/VCG - logo - no text.png');
  background-size: cover;
  background-position: center center;
}

/* Gradient overlay -- lighter at top (shows the teal gradient and houses),
   heavier at the bottom (covers the text baked into the background image) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 45, 60, 0.72) 0%,
    rgba(20, 45, 60, 0.68) 50%,
    rgba(20, 45, 60, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;  /* wide enough to keep headline on one line */
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  opacity: 0.9;
  margin-bottom: 16px;
}

/* "You Belong Here." -- forced to one line via white-space + responsive font size */
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;  /* keeps it on a single line */
  margin-bottom: 24px;
  color: var(--white);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Bouncing down-arrow at bottom of hero */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  animation: bounce 2.2s ease-in-out infinite;
  z-index: 1;
}

.hero-scroll-hint svg {
  width: 28px;
  height: 28px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}


/* ============================================================
   ABOUT -- white background, clean two-column
   ============================================================ */
.about {
  background: var(--white);
  padding: 96px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  font-size: 1.025rem;
}

/* Highlighted callout block -- teal-tinted border */
.about-highlight {
  background: var(--teal-light);
  border-left: 3px solid var(--teal);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem !important;
  font-style: italic;
  color: var(--text-dark) !important;
  margin-bottom: 28px !important;
}

.about-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Placeholder shown until a real photo is added */
.photo-placeholder {
  width: 100%;
  height: 440px;
  background: var(--teal-light);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.875rem;
  text-align: center;
  padding: 24px;
}

.photo-placeholder span { font-weight: 500; }
.photo-placeholder small {
  font-family: monospace;
  font-size: 0.72rem;
  opacity: 0.6;
}


/* ============================================================
   INFO BAR -- light teal background (NOT dark)
   ============================================================ */
.info-bar {
  background: var(--teal-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
}

.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: var(--shadow);
}

.info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
}

.info-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.info-item p {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.5;
}


/* ============================================================
   WATCH -- navy background, 2-column: text left, embed right
   ============================================================ */
.watch {
  background: var(--navy);
  padding: 96px 0;
}

.watch-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
}

.watch-text h2 {
  color: var(--white);
}

.watch-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
}

.watch-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Primary button on dark bg: use teal instead of navy */
.watch .btn-primary {
  background: var(--teal);
  border-color: var(--teal);
}
.watch .btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

/* Watch preview card -- clickable link card, opens Eagle Brook's message page */
.watch-preview {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  background: linear-gradient(135deg, rgba(15, 35, 50, 0.95) 0%, rgba(45, 100, 120, 0.85) 100%);
  border: 1px solid rgba(100, 160, 168, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.watch-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.55);
}

.watch-preview-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px;
}

/* Big circular play button */
.watch-play-btn {
  width: 76px;
  height: 76px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(100, 160, 168, 0.5);
  transition: background var(--transition), transform var(--transition);
}

.watch-preview:hover .watch-play-btn {
  background: var(--teal-dark);
  transform: scale(1.1);
}

.watch-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px; /* optical centering for the triangle */
}

.watch-preview-label {
  text-align: center;
}

.watch-preview-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-light);
  opacity: 0.75;
  margin-bottom: 8px;
}

.watch-preview-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}


/* ============================================================
   CONNECT + EVENTS -- white background
   ============================================================ */
.connect {
  background: var(--white);
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 60px;
}

.section-intro {
  font-size: 1.025rem;
  color: var(--text-mid);
  margin: 0;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.connect-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.connect-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
}

.connect-card p {
  font-size: 0.9rem;
}

.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  transition: color var(--transition);
}

.card-link:hover {
  color: var(--teal-dark);
}

/* Events list */
.event-list {
  margin-bottom: 20px;
}

.event-list li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.event-list li:last-child { border-bottom: none; }

.event-date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 2px;
}

.event-name {
  color: var(--text-dark);
  font-weight: 500;
}


/* Small group items rendered from Google Sheets */
.group-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.group-item:last-child { border-bottom: none; }

.group-name {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.group-when {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.group-location {
  display: block;
  font-size: 0.75rem;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.group-item p {
  font-size: 0.85rem;
  margin-bottom: 6px;
}


/* ============================================================
   FACEBOOK FEED -- two-column embed of the church Facebook page
   ============================================================ */
.facebook-section {
  background: var(--off-white);
  padding: 96px 0;
}

.facebook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.facebook-feed {
  display: flex;
  justify-content: center;
}

.facebook-feed iframe {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--white);
}


/* ============================================================
   BUILDING TEASER -- navy-to-teal gradient (matches brand graphic)
   ============================================================ */
.building-teaser {
  background: linear-gradient(135deg, var(--navy) 0%, #2d7a88 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.teaser-content {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.building-teaser h2 {
  color: var(--white);
}

.building-teaser p {
  font-size: 1.025rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
}


/* ============================================================
   GIVE -- very light off-white background
   ============================================================ */
.give {
  background: var(--off-white);
  padding: 96px 0;
}

.give-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.give-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow);
  text-align: center;
}

.give-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.give-card p {
  margin-bottom: 28px;
}

.give-note {
  font-size: 0.8rem !important;
  color: var(--text-light) !important;
  margin-top: 16px;
  margin-bottom: 0 !important;
}


/* ============================================================
   FOOTER -- navy background
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-top {
  padding: 72px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

/* Logo in footer: white-bg PNG on dark navy.
   invert(1) flips white→black and teal→its complement.
   hue-rotate(180deg) rotates the complement back to a teal-ish tone.
   mix-blend-mode: screen then makes the (now black) background invisible on dark navy. */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo {
  height: 64px;
  width: auto;
  filter: invert(1) hue-rotate(180deg) saturate(1.2);
  mix-blend-mode: screen;
}

.footer-info p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--teal);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-contact h4,
.footer-reach h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-contact p,
.footer-reach p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-contact strong { color: var(--white); }

.footer-coming-soon {
  display: inline-block;
  background: rgba(100, 160, 168, 0.2);
  color: var(--teal-light) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 8px;
}

.footer-reach a {
  color: var(--teal);
  transition: color var(--transition);
}
.footer-reach a:hover {
  color: var(--teal-light);
}

/* Map */
.footer-map {
  filter: grayscale(0.3) brightness(0.8);
}

/* Bottom bar */
.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-eb a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}
.footer-eb a:hover { color: var(--teal); }


/* ============================================================
   RESPONSIVE -- TABLET (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  .about-grid,
  .give-grid,
  .watch-grid,
  .facebook-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .watch-text {
    text-align: center;
  }

  .watch-actions {
    justify-content: center;
  }

  .about-photo {
    order: -1; /* photo above text on tablet */
  }

  .about-photo img,
  .photo-placeholder {
    height: 320px;
  }

  .connect-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-bar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-info {
    grid-column: 1 / -1;
  }
}


/* ============================================================
   RESPONSIVE -- MOBILE (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 13px 0;
    font-size: 0.975rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-cta {
    margin-top: 8px;
    display: block;
    text-align: center;
    padding: 13px 22px !important;
    border-radius: var(--radius) !important;
  }

  /* Hero */
  /* On small screens, allow the headline to wrap if needed */
  .hero-headline {
    white-space: normal;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Sections */
  .about,
  .watch,
  .connect,
  .give {
    padding: 64px 0;
  }

  .connect-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .watch-actions {
    flex-direction: column;
    align-items: center;
  }

  .watch-actions .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
