/* ========== Reset ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #0b3a21 0, #04140b 55%);
  color: #f9fafb;
  line-height: 1.6;
}

/* ========== Layout ========== */

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 4.75rem 1rem 3.75rem;
}

/* ========== Header ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1rem;
  background: rgba(6, 30, 18, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #ecfdf3;
}

/* nav = pill buttons, mobile friendly */
.main-nav {
  display: flex;
  gap: 0.45rem;
}

.main-nav button {
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.8);
  background: rgba(17, 24, 39, 0.85);
  color: #e5fdf4;
  font-size: 0.78rem;
  padding: 0.28rem 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.1s ease, box-shadow 0.15s ease;
}

.main-nav button:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #02130a;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(22, 163, 74, 0.3);
}

/* ========== Hero ========== */

.hero {
  padding: 2.75rem 1.3rem 2.3rem;
  margin-bottom: 0.25rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #052012 0%, #0a3a21 55%, #115e36 100%);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.55);
}

/* Flex wrapper for content + image */
.hero-inner {
  display: flex;
  flex-direction: column; /* stacked on mobile */
  gap: 1.5rem;
}

.hero-content {
  max-width: 32rem;
}

.hero-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #bbf7d0;
  margin-bottom: 0.4rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.1rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: #dcfce7;
  margin-bottom: 0.55rem;
}

.hero-details {
  font-size: 0.9rem;
  color: #fee2e2;
  font-weight: 600;
}

/* Image block */
.hero-media {
  display: flex;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.55);
  object-fit: cover;
}

/* Side-by-side on larger screens */
@media (min-width: 768px) {
  .hero {
    padding: 3.1rem 2.2rem 2.5rem;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1 1 auto;
  }

  .hero-media {
    flex: 0 0 340px;
    justify-content: flex-end;
  }
}

/* ========== Sections / Cards ========== */

.section {
  margin-top: 2.6rem;
}

.card {
  background: #f9fafb;
  color: #111827;
  border-radius: 20px;
  padding: 1.7rem 1.6rem 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(15, 23, 42, 0.02);
}

.section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #03120a;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Christmas tree icon, no pill */
.section h2::before {
  content: "🎄";
  font-size: 1.15rem;
  display: inline-block;
}

.section-intro {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 1.05rem;
}

.section-body {
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: #4b5563;
}

/* ========== About grid ========== */

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-top: 1.2rem;
  font-size: 0.9rem;
}

.info-grid h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #15803d;
  margin-bottom: 0.25rem;
}

.info-grid p {
  color: #374151;
}

/* Wider layout */
@media (min-width: 640px) {
  .info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ========== Playlist ========== */

.playlist {
  list-style: none;
  border-radius: 16px;
  padding: 0.75rem 0.75rem 0.55rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.playlist li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.15rem 0.75rem;
  padding: 0.5rem 0.55rem;
  margin-bottom: 0.1rem;
  border-radius: 10px;
  transition: background 0.12s ease, transform 0.08s ease, box-shadow 0.12s ease;
}

.playlist li:nth-child(odd) {
  background: #f9fafb;
}

.playlist li:hover {
  background: #ecfdf5;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(22, 163, 74, 0.18);
}

.song-title {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.9rem;
}

.song-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

.song-duration {
  font-weight: 600;
  color: #16a34a;
}

.playlist-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* ========== Video ========== */

.video-wrapper {
  position: relative;
  width: 100%;
  margin-top: 1rem;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.5);
}

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

/* ========== Visit / Contact ========== */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  margin-top: 0.5rem;
}

.visit-grid h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: #15803d;
  font-weight: 600;
}

.bullet-list {
  list-style: disc;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: #374151;
}

.bullet-list li + li {
  margin-top: 0.22rem;
}

.contact h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: #15803d;
  font-weight: 600;
}

.contact-email {
  font-size: 0.9rem;
  color: #374151;
}

.contact-email a {
  color: #15803d;
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
  text-decoration: underline;
}

.contact-email a:hover {
  text-decoration: none;
  color: #22c55e;
}

/* Larger screens */
@media (min-width: 768px) {
  .visit-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  }
}

/* ========== How To Listen section ========== */

#listen .listen-intro {
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

#listen h3 {
  margin: 1.1rem 0 0.55rem;
  font-size: 1rem;
  font-weight: 600;
}

#listen .listen-body {
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Steps list */
.listen-steps {
  margin-top: 0.2rem; /* small gap above list */
  margin-bottom: 0.9rem; /* same as listen-body below */
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: #111827;
}

.listen-steps li {
  line-height: 1.5;
}

/* Link styling */
.listen-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #15803d; /* darker, richer green */
  text-decoration: underline;
}

.listen-link:hover {
  text-decoration: none;
  color: #22c55e; /* brighter green on hover */
}

/* ========== Footer ========== */

.site-footer {
  text-align: center;
  padding: 1.4rem 1rem 2.1rem;
  font-size: 0.8rem;
  color: #bbf7d0;
  border-top: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(3, 18, 10, 0.95);
}

/* ========== Responsive tweaks ========== */

@media (max-width: 480px) {
  .site-header {
    padding-inline: 0.75rem;
    gap: 0.4rem;
  }

  .main-nav {
    max-width: 60%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero {
    padding-inline: 1rem;
  }
}

@media (min-width: 640px) {
  .site-header {
    padding-inline: 1.6rem;
  }

  main {
    padding-inline: 1.5rem;
  }

  .hero {
    padding: 3.1rem 2.2rem 2.5rem;
  }
}
