/* ============================================
   Sundays Page — Gateway Bible Church
   Page-specific layouts only.
   ============================================ */


/* ============================================
   SERIES IMAGE — contain on tablet so text-heavy artwork isn't cropped
   ============================================ */

.series-block .split-image {
  background: var(--near-black);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .series-block .split-image img {
    object-fit: contain;
    object-position: center;
  }
}


/* ============================================
   HERO — Split: text left, video right
   ============================================ */

.sun-hero {
  background: var(--dark-blue);
  padding: calc(var(--nav-height) + var(--space-12)) var(--space-6) var(--space-12);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .sun-hero {
    padding: calc(var(--nav-height) + var(--space-16)) var(--space-10) var(--space-16);
  }
}

/* Subtle grain */
.sun-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 1;
}

.sun-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 900px) {
  .sun-hero-inner {
    grid-template-columns: 42% 1fr;
    gap: var(--space-12);
  }
}

.sun-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: var(--font-weight-black);
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: var(--space-5);
}

.sun-hero-sub {
  font-size: clamp(var(--text-base), 1.8vw, var(--text-lg));
  font-weight: var(--font-weight-book);
  color: var(--white-70);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: var(--space-6);
}

.sun-hero-times {
  margin-bottom: var(--space-6);
}

.sun-hero-time {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-book);
  color: var(--white);
}

.sun-hero-time svg {
  color: var(--bright-blue);
  flex-shrink: 0;
}

.sun-hero-time strong {
  font-weight: var(--font-weight-bold);
}

.sun-hero-scroll-link {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--bright-blue);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.sun-hero-scroll-link:hover {
  opacity: 0.7;
}

.sun-hero-video-note {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-book);
  color: var(--white-50);
  margin-top: var(--space-3);
  text-align: center;
}

.sun-hero-video-note a {
  color: var(--bright-blue);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: opacity var(--duration-fast) var(--ease-out);
}

.sun-hero-video-note a:hover {
  opacity: 0.8;
}


/* Current series uses shared .series-block from components.css */


/* ============================================
   QUOTE BREAK
   ============================================ */

.sun-quote-section {
  padding: var(--space-20) 0;
}

.sun-quote-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.sun-quote-inner .quote {
  color: var(--white);
  font-size: clamp(1.15rem, 2.5vw, var(--text-2xl));
  font-style: italic;
}


/* ============================================
   WHAT SUNDAY LOOKS LIKE — split text + details
   ============================================ */

.sun-experience-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 768px) {
  .sun-experience-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.sun-detail {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--white-10);
}

.sun-detail:last-child {
  border-bottom: none;
}

.sun-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(0, 156, 255, 0.1);
  color: var(--bright-blue);
  flex-shrink: 0;
}

.sun-detail-title {
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  margin-bottom: var(--space-1);
}

.sun-detail-desc {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-book);
  color: var(--white-70);
  line-height: 1.6;
}


/* ============================================
   JOIN US IN PERSON — split photo + details
   ============================================ */

.sun-visit-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .sun-visit-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
  }
}

.sun-visit-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .sun-visit-photo {
    aspect-ratio: auto;
    height: 100%;
    min-height: 420px;
  }
}

.sun-visit-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.sun-visit-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  background: var(--cool-gray);
}

.sun-visit-item strong {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  color: var(--dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sun-visit-item span {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-book);
  color: var(--gray-blue);
  line-height: 1.5;
}

.sun-visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}


/* ============================================
   CLOSING CTA
   ============================================ */

.sun-closing-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sun-closing-headline {
  font-size: clamp(2.5rem, 7vw, var(--text-5xl));
  font-weight: var(--font-weight-black);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-4);
}

.sun-closing-sub {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-book);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto var(--space-8);
}

.sun-closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}


