/* ── Reset & Base ─────────────────────────────────────────── */

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

body {
  font-family: "Space Grotesk", "Segoe UI", Roboto, sans-serif;
  color: #1a1a2e;
  background: #f0eee6;
  line-height: 1.6;
}

a {
  color: #d4403a;
}

a:hover {
  color: #a83230;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Navigation ──────────────────────────────────────────── */

.site-nav {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.site-nav a {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-nav a:hover,
.site-nav a.nav-link--active {
  color: #fff;
}

/* ── Header ──────────────────────────────────────────────── */

.site-header {
  position: relative;
  background: url("https://images.unsplash.com/photo-1633437208253-4d724232d3b6?w=1400&q=80") center/cover no-repeat;
  color: #fff;
  padding: 0;
  overflow: hidden;
}

.header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.6);
}

.header-content {
  position: relative;
  padding: 1.5rem 1.25rem 2.25rem;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.header-next-date {
  text-align: right;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  padding: 0.6rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-next-date .next-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.1rem;
}

.header-next-date .next-date {
  display: block;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.header-next-date .next-time {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.15rem;
}

.header-next-date .next-cal {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #e2b93b;
  text-decoration: none;
  margin-top: 0.4rem;
  transition: color 0.15s ease;
}

.header-next-date .next-cal:hover {
  color: #fff;
}

.header-next-date.is-today {
  background: rgba(212, 64, 58, 0.8);
  border-color: rgba(255, 255, 255, 0.25);
}

.header-next-date.is-today .next-label {
  color: rgba(255, 255, 255, 0.9);
}

.site-header h1 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.site-header .h1-line1 {
  display: block;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(226, 185, 59, 0.6);
}

.site-header .h1-line2 {
  display: block;
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0.05rem;
  background: linear-gradient(135deg, #e2b93b, #d4403a, #1eb864);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-header .header-tagline {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e2b93b;
  margin-bottom: 0.25rem;
}

.site-header .description {
  max-width: 440px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ── Compact Header (inner pages) ────────────────────────── */

.site-header--compact .header-content {
  padding: 1.5rem 1.25rem 2rem;
}

.header-site-name {
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
}

.site-header--compact .page-title {
  font-family: "Syne", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

/* ── Contact Page ────────────────────────────────────────── */

.contact-section {
  padding: 2.5rem 0 3.5rem;
}

.contact-section h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.contact-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-email {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #d4403a;
  text-decoration: none;
}

.contact-email:hover {
  color: #a83230;
}

.newsletter-signup {
  margin-top: 2.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin-top: 0.5rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.7rem 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  background: #fff;
  color: #1a1a2e;
  transition: border-color 0.15s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #d4403a;
}

.newsletter-form button {
  padding: 0.7rem 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: #d4403a;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #a83230;
}

.newsletter-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter-msg {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #1eb864;
  font-weight: 500;
}

.newsletter-msg--error {
  color: #d4403a;
}

/* ── Venues Page ─────────────────────────────────────────── */

.venues-section {
  padding: 2.5rem 0 3.5rem;
}

.venues-section p.venues-intro {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.venue-placeholder-img {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #e2b93b 0%, #d4403a 40%, #1eb864 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

/* ── Map ─────────────────────────────────────────────────── */

.map-section {
  padding: 2rem 0;
}

.map-section h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #1a1a2e;
}

#map {
  height: 420px;
  border-radius: 16px;
  border: 3px solid #1a1a2e;
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.12);
}

/* ── Gallery Grid ────────────────────────────────────────── */

.gallery-section {
  padding: 0.5rem 0 3.5rem;
}

.gallery-section h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #1a1a2e;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ── Gallery Card ────────────────────────────────────────── */

.gallery-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-top: 4px solid transparent;
  background-clip: padding-box;
}

.gallery-card:nth-child(3n+1) { border-top-color: #d4403a; }
.gallery-card:nth-child(3n+2) { border-top-color: #e2b93b; }
.gallery-card:nth-child(3n+3) { border-top-color: #1eb864; }

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.12);
}

a.gallery-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #1a1a2e;
}

.card-body .card-address {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.85rem;
}

.card-body .card-show {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: #d4403a;
}

.card-body .card-dates {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.no-shows {
  color: #999;
  font-style: italic;
  padding: 2.5rem 0;
  text-align: center;
  font-size: 1.05rem;
}

.card-body .card-description {
  font-size: 0.9rem;
  color: #555;
  flex: 1;
  line-height: 1.65;
}

.card-body .card-links {
  margin-top: 0.85rem;
  font-size: 0.85rem;
}

.card-body .card-contact {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: #999;
}

/* ── Footer ──────────────────────────────────────────────── */

.site-footer {
  position: relative;
  background: url("https://images.unsplash.com/photo-1633437208253-4d724232d3b6?w=1400&q=80") center bottom/cover no-repeat;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 2rem 0;
  font-size: 0.85rem;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.65);
}

.footer-content {
  position: relative;
}

.site-footer .footer-name {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 2px;
}

.site-footer a:hover {
  color: #e2b93b;
}

.footer-location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 600px) {
  .header-content {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .header-top {
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .header-next-date {
    padding: 0.4rem 0.7rem;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .header-next-date .next-date {
    font-size: 0.9rem;
  }

  .header-next-date .next-label {
    font-size: 0.55rem;
  }

  .header-next-date .next-time {
    font-size: 0.65rem;
  }

  .site-header .h1-line1 {
    font-size: 2rem;
  }

  .site-header .h1-line2 {
    font-size: 2.2rem;
  }

  #map {
    height: 300px;
    border-radius: 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img {
    height: 180px;
  }

  .site-header--compact .page-title {
    font-size: 1.75rem;
  }

  .venue-placeholder-img {
    height: 180px;
  }

  .site-nav {
    gap: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
