/* =========================================
   SABORES BAJO LA LUNA — styles.css
   ========================================= */

/* --- CSS Variables --- */
:root {
    --bg: #0e0b08;
    --surface: #1a1108;
    --border: rgba(200, 146, 42, 0.18);
    --gold: #c8a84b;
    --orange: #d9691e;
    --text: #f0ece6;
    --muted: #8a7a6a;
    --cyan: #5bc8c8;
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.6);

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius: 22px;
    --nav-h: 64px;
    --max-w: 1120px;
    --transition: 0.22s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- Utility --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(14, 11, 8, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
}

.navbar {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Hidden checkbox — drives CSS-only burger */
.menu-toggle {
    display: none;
}

/* Logo */
.brand {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.brand span {
    color: var(--text);
}

/* Nav links — desktop */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    color: var(--muted);
}

.nav-links a {
    font-size: 0.9rem;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

/* CTA + general .btn */
.nav-cta,
.btn,
.ticket-form button {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #160b06;
    font-weight: 800;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(255, 107, 53, 0.25);
    transition: opacity var(--transition), transform var(--transition);
    display: inline-block;
    line-height: 1;
}

.nav-cta:hover,
.btn:hover,
.ticket-form button:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* Secondary / ghost button */
.secondary {
    background: rgba(255, 255, 255, 0.11);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: none;
}

/* Hamburger label — hidden on desktop */
.hamburger {
    display: none;
}

/* =========================================
   HERO
   — .hero::before holds the background image
   — To swap in your own image, change the url()
     inside .hero::before below
   ========================================= */
.hero {
    min-height: 680px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 32px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 45px;
}

/* -------------------------------------------------------
   BACKGROUND IMAGE — edit only this rule to change the bg
   Replace the url() with your image path when ready:
   url('../assets/images/hero-food-festival.jpg') center/cover no-repeat
   The gradient overlay on top will keep text readable.
   ------------------------------------------------------- */
.hero::before {
    content: "";
    position: absolute;
    inset: 40px 20px;
    border-radius: var(--radius);
    /* Fallback atmospheric gradients (remove once real image is in place) */
     /* background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), op 2*/
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%),
     url('../assets/img/hero-bg.jpg') center / cover no-repeat;
    /* background-color: #3a1a06;
    background-image:
        radial-gradient(ellipse 75% 65% at 68% 28%, #7c3312 0%, transparent 60%),
        radial-gradient(ellipse 55% 55% at 22% 75%, #4a1a08 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 80% 70%, #5c2210 0%, transparent 55%); */
    z-index: -2;
    box-shadow: var(--shadow);
}

/* Gradient overlay — keeps text legible over any background image */
.hero-overlay {
    position: absolute;
    inset: 40px 20px;
    border-radius: var(--radius);
    background: radial-gradient(circle at 70% 20%, rgba(255, 188, 66, 0.22), transparent 28%);
    z-index: -1;
}

/* Decorative SVG waves */
.hero-waves {
    position: absolute;
    top: 38%;
    right: 2%;
    width: 58%;
    pointer-events: none;
    z-index: 0;
}

.hero-waves svg {
    width: 100%;
}

/* Decorative moon circle */
.hero-moon {
   position: absolute;
    top: 12%;
    left: 38%;          /* desktop: entre el texto y el lado derecho */
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: radial-gradient(circle, #f5c040, #c8922a);
    z-index: 1;
    pointer-events: none;
}

/* Content — uses display:contents so children join the .hero grid */
.hero-content {
    position: relative;
    z-index: 2;
    display: contents;
}

/* Left column */
.hero-text {
    max-width: 540px;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
    line-height: 1.05;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 5vw, 5rem);
    max-width: 720px;
    margin: 12px 0;
    text-transform: uppercase;
    color: var(--text);
}

.hero-desc {
    color: #d3c5b4;
    font-size: 1.05rem;
    max-width: 46ch;
    margin: 14px 0;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Right column */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: end;
}

/* Mockup card */
.hero-card {
    align-self: end;
    background: rgba(18, 18, 37, 0.78);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(14px);
}

/* Badge card — starts hidden, animates in via JS adding .badge-visible */
#badgeCard {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#badgeCard.badge-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Badge card */
.badge-card {
    background: rgba(20, 35, 60, 0.85);
}

.card-label {
    color: var(--cyan);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

.badge-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.badge-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Mockup internals */


/* =========================================
   GENERAL SECTIONS & TABLES
   ========================================= */
.section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 70px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2,
.about-content h2,
.tickets h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
}

/* Table */
.table-wrapper {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 12px;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

th,
td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

tbody tr:hover {
    background: rgba(255, 188, 66, 0.08);
}

/* =========================================
   ABOUT
   ========================================= */
.about-section {
    display: flex;
    align-items: center;
    gap: 34px;
}

.about-image {
    flex: 1;
    min-height: 360px;
    border-radius: 30px;
    background-color: #2e1508;
    overflow:hidden; /* clips the image to the border-radius */
    /* background-image: url('../assets/img/people.jpg'); */
    /* background-image:
        radial-gradient(ellipse at 40% 40%, #7a3020 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, #c8922a 0%, transparent 50%); */
    box-shadow: var(--shadow);
    position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* fills the space, crops edges */
  object-position: center; /* change to "top", "bottom", or "50% 20%" to reframe */
  position: absolute;
  inset: 0;
  display: block;
}

.about-content {
    flex: 1;
}

.about-content p {
    color: var(--muted);
    margin: 14px 0;
    font-size: 0.95rem;
}

.experience-list {
    margin-top: 18px;
    display: grid;
    gap: 10px;
    list-style-position: inside;
    color: #f7dcc2;
}

.experience-list li {
    font-size: 0.9rem;
}

/* =========================================
   ZONES — CSS-only flip cards (no JS)
   Same mechanism as the reference example:
   .zone-front starts visible, .zone-back starts
   rotated 180deg; on :hover they swap.
   ========================================= */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* Outer container — sets the 3D stage */
.zone-card {
    perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 220px;
}

/* Both faces share these rules */
.zone-front,
.zone-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: all 0.8s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
}

/* FRONT face — visible by default */
.zone-front {
    background: var(--surface);
    border: 1px solid var(--border);
}

.zone-front span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.zone-front h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text);
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.zone-front p {
    font-size: 0.85rem;
    color: var(--muted);
}

/* BACK face — hidden behind (rotated 180deg) */
.zone-back {
    transform: rotateY(180deg);
    background-size: cover;
    background-position: center;
    background-color: #2a1206;
    padding: 0;
}


/* Gradient overlay on the back so text stays readable */
.zone-back-content {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.25) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.75rem 1.5rem;
    text-align: center;
}
.desserts{
    background-image: url('../assets/img/desserts.png');
}
.drinks{
    background-image: url('../assets/img/drinks.jpg');
}
.asian{
    background-image:url('../assets/img/tasting-menu.jpg');
}
.street{
    background-image: url('../assets/img/street-food.jpg');
}

.zone-back-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text);
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.zone-back-content p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
}

/* THE FLIP — pure CSS :hover, identical to reference */
.zone-card:hover .zone-front {
    transform: rotateY(-180deg);
}

.zone-card:hover .zone-back {
    transform: rotateY(0);
}

/* =========================================
   GALLERY
   ========================================= */
/* =========================================
   GALLERY
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}

.gallery-card {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition);
}

.gallery-card:hover {
    transform: scale(1.01);
}

.gallery-card--large {
    grid-row: span 2;
}

.gallery-card--wide {
    grid-column: span 2;
}

/* Inner — ahora contiene solo la imagen */
.gallery-card-inner {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    min-height: 180px;
    background: #1a1108;
}

.gallery-card--large .gallery-card-inner {
    min-height: 340px;
}

.gallery-card--wide .gallery-card-inner {
    min-height: 150px;
}

/* La imagen llena el espacio completamente */
.gallery-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
    display: block;
    transition: transform 0.4s ease;
}

/* Zoom sutil al hacer hover */
.gallery-card:hover .gallery-card-inner img {
    transform: scale(1.05);
}

/* El label de abajo — sin cambios */
.gallery-label {
    background: var(--orange);
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    color: var(--text);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 16px 16px;
}

/* =========================================
   VIDEO
   ========================================= */
.video-section {
    text-align: center;
}

.video-container {
    display: flex;
    justify-content: center;
    margin: 0 auto 1.5rem;
    max-width: 700px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
}

.video-description {
    font-size: 0.9rem;
    color: var(--muted);
    max-width: 55ch;
    margin: 0 auto;
    line-height: 1.65;
}

/* =========================================
   TICKETS / CTA
   ========================================= */
.tickets {
    background: linear-gradient(135deg, #3a1a28 0%, #5c2a14 100%);
    border-radius: 20px;
    max-width: 720px;
    margin: 0 auto 80px;
    padding: 3.5rem 2rem;
    text-align: center;
}

.tickets p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0.75rem 0 2rem;
    line-height: 1.6;
}

.ticket-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 480px;
    margin: 0 auto;
}

.ticket-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
}

.ticket-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.ticket-form input:focus {
    border-color: var(--gold);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 3rem 20px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer-section h5 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.footer-section h5+p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}

.footer-section h6 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}

.contact-list li {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.contact-list a {
    transition: color var(--transition);
}

.contact-list a:hover {
    color: var(--gold);
}
/* social links start here  */

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  transition: border-color var(--transition);
}

.social-links a:hover {
  border-color: var(--gold);
}

.social-links a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.social-links a:hover img {
  filter: brightness(0) saturate(100%) invert(68%) sepia(50%) saturate(500%) hue-rotate(5deg);
}
/* .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.social-links a {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--muted);
    transition: border-color var(--transition), color var(--transition);
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
} */
 /* ── Sponsors ───────────────────────────────────────────────── */
.sponsors {
  background: var(--color-surface);
  padding-block: var(--space-xl);
}

.sponsors-title {
  color: var(--color-text);
}
.sponsor-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  max-width: 60ch;
  margin-inline: auto;
}
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  align-items: stretch;
  margin-top: var(--space-lg);
}

.sponsor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 140px;
  padding: 1.25rem 1.75rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color var(--ease-normal), transform var(--ease-fast), box-shadow var(--ease-normal);
}
.sponsor-card:hover {
  border-color: rgba(245, 196, 0, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
}

/* mix-blend-mode removes white logo backgrounds automatically */
.sponsor-logo {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-logo img {
  max-height: 44px;
  max-width: 120px;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: grayscale(1) brightness(1.4);
  opacity: 0.75;
  transition: filter var(--ease-normal), opacity var(--ease-normal);
}
.sponsor-card:hover .sponsor-logo img {
  filter: grayscale(0) brightness(1.2);
  opacity: 1;
}

.sponsor-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  transition: color var(--ease-fast);
}
.sponsor-card:hover .sponsor-name {
  color: var(--color-accent);
}


/*footer*/

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--muted);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
}

/* =========================================
   RESPONSIVE — TABLET (max 900px-1024)
   ========================================= */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 35px;
        min-height: auto;
    }

    .hero-right {
        display: none;
    }

    .hero-moon {
        top: 6%;
        left: auto;
        right: 5%;      /* se va a la esquina superior derecha */
        width: 52px;
        height: 52px;
    }

    .hero-waves {
        /* width: 75%;
        top: 20%; */
        display: none;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        min-height: 240px;
        width: 100%;
    }

    .zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gallery-card--large {
        grid-row: span 1;
        grid-column: span 2;
    }

    .gallery-card--wide {
        grid-column: span 2;
    }

    .site-footer {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
   RESPONSIVE — MOBILE (max 640px-735)
   ========================================= */
@media (max-width: 735px) {

    /* CSS-only burger menu */
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        cursor: pointer;
        font-size: 1.6rem;
        color: var(--gold);
        padding: 0.3rem 0.5rem;
        background: none;
        border: none;
        z-index: 110;
        order: 3;
    }

    .brand {
        order: 1;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(14, 11, 8, 0.97);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        padding: 0.5rem 0;
        z-index: 99;
    }

    /* Checkbox checked → show menu */
    .menu-toggle:checked~.nav-links {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        color: var(--text);
        border-bottom: 1px solid var(--border);
        transition: background var(--transition), color var(--transition);
    }

    .nav-links a:hover {
        background: var(--surface);
        color: var(--gold);
    }

    /* Hero */
    .hero {
        padding: 40px 16px;
    }

    .hero::before {
        inset: 20px 12px;
    }

    .hero-overlay {
        inset: 20px 12px;
    }

    .hero-moon {
        top: 4%;
        left: auto;
        right: 4%;
        width: 20px;
        height: 20px;
    }

    .hero-waves {
        display: none;
    }

    h1 {
        font-size: clamp(2.6rem, 10vw, 3.8rem);
    }

    /* Table: horizontal scroll, structure intact */
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 14px;
        padding: 0;
    }

    table {
        min-width: 650px;
    }

    /* Sections */
    .section {
        padding: 50px 16px;
    }

    .section-title h2,
    .about-content h2 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .zones-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

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

    .gallery-card--large,
    .gallery-card--wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Tickets */
    .ticket-form {
        flex-direction: column;
    }

    .ticket-form input,
    .ticket-form button {
        width: 100%;
        text-align: center;
    }

    .tickets {
        margin: 0 16px 60px;
    }

    /* Footer */
    .site-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}