/* === Home Page Sections === */

/* --- Intro Strip --- */
.intro-strip {
  background-color: var(--color-teal-mid);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.intro-strip .hook {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-off-white);
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

@media (min-width: 768px) {
  .intro-strip .hook {
    font-size: var(--text-2xl);
  }
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
}

.services-list li {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.services-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
  flex-shrink: 0;
}

/* --- About / Bio --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.about-photo-col {
  text-align: center;
}

.about-photo {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-socials {
  margin-top: var(--space-lg);
  justify-content: center;
}

.about-text h2 {
  margin-bottom: var(--space-lg);
}

.about-text p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
  color: var(--color-brown-warm);
}

.about-text .section-label {
  color: var(--color-brown-dark);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

/* --- Photo Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .gallery-item.featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item.featured {
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 36, 38, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* --- Video Feature --- */
.video-section {
  text-align: center;
}

.video-wrapper {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background-color: var(--color-teal-mid);
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 36, 38, 0.4);
  transition: background var(--transition-base);
}

.video-play-btn:hover {
  background: rgba(13, 36, 38, 0.2);
}

.video-play-btn svg {
  width: 72px;
  height: 72px;
  fill: var(--color-off-white);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-fast);
}

.video-play-btn:hover svg {
  transform: scale(1.1);
}

/* --- Music & Social Strip --- */
.social-strip {
  position: relative;
  padding: var(--space-4xl) 0;
  text-align: center;
  overflow: hidden;
}

.social-strip-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.social-strip-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-strip-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 36, 38, 0.85);
}

.social-strip .container {
  position: relative;
  z-index: 1;
}

.social-strip h2 {
  margin-bottom: var(--space-md);
}

.social-strip p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-inline: auto;
}

.social-strip .social-links {
  justify-content: center;
}

/* --- Events Teaser --- */
.events-teaser .events-list {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.events-teaser .section-footer {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-amber) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-teal-deep);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: var(--color-teal-deep);
  font-size: var(--text-md);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-inline: auto;
}

.cta-banner .btn-primary {
  background-color: var(--color-teal-deep);
  color: var(--color-off-white);
}

.cta-banner .btn-primary:hover {
  background-color: var(--color-teal-mid);
  color: var(--color-off-white);
}
