/*
Theme Name: Event Festival Theme
Author: Custom
Description: Dark orange, black & white music festival WordPress theme 
Version: 1.0
*/
 
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;700&family=Space+Mono:wght@400;700&display=swap');
 
/* ── CSS Variables ── */
:root {
  --orange:    #E85D04;
  --orange-dk: #C44A00;
  --orange-lt: #FF7527;
  --black:     #0A0A0A;
  --black-2:   #111111;
  --black-3:   #1A1A1A;
  --white:     #F5F5F0;
  --white-dim: rgba(245,245,240,0.7);
  --grey:      #2A2A2A;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --nav-h: 80px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}
 
/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
 
/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
 
/* ══════════════════════════════════
   TOP NAVIGATION
══════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,93,4,0.25);
  transition: background var(--transition);
}
#site-header.scrolled {
  background: rgba(10,10,10,0.98);
  border-bottom-color: var(--orange);
}
 
/* Logo */
.site-logo {
  display: flex;
  align-items: center;
}
.site-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition);
}
.site-logo img:hover { opacity: 0.8; }
.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}
.site-logo .logo-text span { color: var(--orange); }
 
/* Main Nav */
#main-nav {
  display: flex;
  gap: 48px;
  align-items: center;
}
#main-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
#main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
#main-nav a:hover,
#main-nav a.active {
  color: var(--orange);
}
#main-nav a:hover::after,
#main-nav a.active::after { width: 100%; }
 
/* Language Switcher */
 
/* DROPDOWN BASE (hidden) */
.lang-dropdown {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: all 0.2s ease;
}
 
/* OPEN STATE (controlled by JS) */
.lang-dropdown-wrap.open .lang-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
 
/* ARROW ROTATION */
.lang-dropdown-wrap.open .lang-arrow {
    transform: rotate(180deg);
}
/* REMOVE BORDERS + NORMAL WEIGHT */
.lang-dropdown-toggle,
.lang-dropdown {
    border: none !important;
    font-weight: 400 !important;
    background: transparent;
}
 
/* CLEAN TOGGLE LOOK */
.lang-dropdown-toggle {
    color: var(--white);
    padding: 8px 0;
}
 
.lang-dropdown-toggle:hover {
    color: var(--orange);
}
 
/* DROPDOWN PANEL */
.lang-dropdown {
    background: #000;
    padding: 6px 0;
}
 
/* LINKS */
.lang-dropdown .lang-link {
    color: var(--white);
    font-weight: 400;
}
 
/* ACTIVE LANGUAGE */
.lang-dropdown .lang-link.active {
    color: var(--orange);
}
 
/* HOVER */
.lang-dropdown .lang-link:hover {
    color: var(--orange);
    background: none;
}
 
 
/* ══ HEADER LAYOUT ══ */
#site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    box-sizing: border-box;
    padding: 0 20px;
}
 
/* ═══════════════════════════════════════
   HAMBURGER BUTTON
═══════════════════════════════════════ */
 
.hamburger {
	position: relative; /* or absolute/fixed depending on your header */
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 8px 16px;
    background-color: #000;
    border: 3px solid #FF6600;
    border-radius: 4px;
    z-index: 10001;
    transition: all 0.2s ease;
}
 
.hamburger-label {
    color: #FF6600;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
}
 
.hamburger:hover {
    background-color: #111;
    border-color: #FF8C00;
}
 
.hamburger:hover .hamburger-label {
    color: #FF8C00;
}
 
 
/* ═══════════════════════════════════════
   LANGUAGE DROPDOWN
═══════════════════════════════════════ */
 
.lang-dropdown-wrap {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 10002; /* above mobile nav */
}
 
.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #000;
    border: 3px solid #FF6600;
    border-radius: 4px;
    color: #FF6600;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}
 
.lang-dropdown-toggle:hover {
    background-color: #111;
    border-color: #FF8C00;
    color: #FF8C00;
}
 
.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}
 
.lang-dropdown-toggle[aria-expanded="true"] .lang-arrow {
    transform: rotate(180deg);
}
 
 
/* Dropdown panel */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #000;
    border: 3px solid #FF6600;
    border-radius: 4px;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    min-width: 90px;
    z-index: 10002;
 
    /* Animation */
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: all 0.2s ease;
}
 
.lang-dropdown.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
 
.lang-dropdown li {
    margin: 0;
}
 
.lang-dropdown .lang-link {
    display: block;
    padding: 8px 16px;
    color: #FF6600;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.2s ease;
}
 
.lang-dropdown .lang-link:hover,
.lang-dropdown .lang-link.active {
    background-color: #FF6600;
    color: #000;
}
 
 
/* ═══════════════════════════════════════
   MOBILE NAV DRAWER
═══════════════════════════════════════ */
 
/* ═══════════════════════════════════════
   MOBILE BREAKPOINT
═══════════════════════════════════════ */
 
@media (max-width: 767px) {
 
    .hamburger {
        display: flex;
    }
 
    #main-nav {
        display: none;
    }
 
}
 
/* ══════════════════════════════════
   HERO / BANNER
══════════════════════════════════ */
#hero,
.hero,
.hero-banner {
    width: 100%;
	padding-top: 60px;
    min-height: unset !important;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    max-height: 768px;
    min-height: 400px;
}
 
@media (max-width: 1024px) {
    #hero,
    .hero,
    .hero-banner {
        min-height: 360px;
        max-height: none;
    }
}
 
@media (max-width: 767px) {
    #hero,
    .hero,
    .hero-banner {
        /*height: 100%;*/
        width: auto;
    }
}
 
.hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--black) 0%, #1a0500 50%, var(--black-2) 100%);
  position: relative;
  overflow: hidden;
}
.hero-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(232,93,4,0.2) 0%, transparent 60%);
}
.hero-placeholder-text {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 160px);
  letter-spacing: 8px;
  color: var(--white);
  position: relative;
  text-align: center;
  line-height: 0.9;
}
.hero-placeholder-text .accent { color: var(--orange); }
.hero-upload-note {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--orange);
  opacity: 0.8;
  position: relative;
  border: 1px dashed rgba(232,93,4,0.5);
  padding: 10px 20px;
}
 
/* ══════════════════════════════════
   SECTION COMMONS
══════════════════════════════════ */
.section-wrap {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 60px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: var(--orange);
  margin-top: 16px;
}
 
/* ══════════════════════════════════
   ARTISTS SECTION
══════════════════════════════════ */
@media (max-width: 767px) {
    .artists-grid, .tickets-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: auto !important;
        scroll-snap-type: none !important;
    }
}
 
#artists {
  background: var(--black);
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3px;
}
 
@media (min-width: 900px) {
  .artists-grid[data-count="1"] { grid-template-columns: 1fr; max-width: 500px; }
  .artists-grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
  .artists-grid[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
  .artists-grid[data-count="4"] { grid-template-columns: repeat(4, 1fr); }
  .artists-grid[data-count="5"] { grid-template-columns: repeat(3, 1fr); }
  .artists-grid[data-count="6"] { grid-template-columns: repeat(3, 1fr); }
}
 
/* ── Artist card ── */
.artist-card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  background: var(--black-3);
  display: flex;
  flex-direction: column;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
}
 
.artist-overlay {
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
 
.artist-overlay img,
.player-card-image {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.6s ease;
  filter: grayscale(20%) brightness(0.9);
  display: block;
}
 
.artist-card:hover .artist-overlay img,
.artist-card:hover .player-card-image {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1);
}
 
.artist-name {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 38px);
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  padding: 16px 20px 12px;
  background: rgba(0, 0, 0, 0.6);
  transition: background var(--transition), letter-spacing var(--transition);
}
.artist-card:hover .artist-name {
  background: rgba(232, 93, 4, 0.75);
  letter-spacing: 5px;
}
 
.artist-country {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white);
  padding: 6px 20px 14px;
  background: rgba(0, 0, 0, 0.6);
  transition: background var(--transition), opacity var(--transition);
  opacity: 0.7;
}
.artist-card:hover .artist-country {
  background: rgba(232, 93, 4, 0.75);
  opacity: 1;
}
 
.artist-placeholder {
  background: var(--black-3);
  border: 1px dashed rgba(232,93,4,0.2);
}
.artist-placeholder .artist-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 70%);
}
 
/* ══════════════════════════════════
   TICKETS SECTION
══════════════════════════════════ */
#tickets {
  background: var(--black-2);
  border-top: 1px solid var(--grey);
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 400px);
  gap: 2px;
  justify-content: start;
}

grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ticket-card {
  background: var(--black-3);
  border: 1px solid var(--grey);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
  cursor: pointer;
}
.ticket-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grey);
  transition: background var(--transition);
}
.ticket-card:hover::before,
.ticket-card.featured::before {
  background: var(--orange);
}
.ticket-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(232,93,4,0.15);
}
.ticket-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--black-3) 0%, rgba(232,93,4,0.08) 100%);
}
.ticket-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  background: rgba(232,93,4,0.1);
  border: 1px solid rgba(232,93,4,0.3);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 20px;
}
.ticket-name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1;
}
.ticket-price {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--orange);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 24px;
}
.ticket-price .currency {
  font-size: 24px;
  vertical-align: super;
  color: var(--orange-lt);
}
.ticket-desc {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.7;
  border-top: 1px solid var(--grey);
  padding-top: 20px;
  margin-top: 4px;
}
.ticket-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 28px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 1px solid var(--orange);
}
.ticket-btn:hover {
  background: transparent;
  color: var(--orange);
}
 
/* ══════════════════════════════════
   LISTEN SECTION
══════════════════════════════════ */
#listen {
  background: var(--black);
  border-top: 1px solid var(--grey);
}
.listen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.player-card {
  background: var(--black-3);
  border: 1px solid var(--grey);
  overflow: hidden;
  transition: border-color var(--transition);
}
.player-card:hover {
  border-color: var(--orange);
}
.player-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.player-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.player-label {
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  border-top: 1px solid var(--grey);
}
 
/* ══════════════════════════════════
   HOTELS SECTION
══════════════════════════════════ */
#hotels {
  background: var(--black-3);
  border-top: 1px solid var(--grey);
}

/* Promo CTA line */
.hotels-promo {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white-dim);
  letter-spacing: 0.5px;
  margin-bottom: 48px;
  margin-top: -36px; /* pull up closer to the section title */
}
.hotels-promo-code {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--orange);
  background: rgba(232,93,4,0.1);
  border: 1px solid rgba(232,93,4,0.35);
  padding: 2px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  margin: 0 4px;
}

/* Grid — flex-wrap like partners but fixed card width */
.hotels-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}

/* Card */
.hotel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 80px 32px 40px; /* right: space for the discount text badge */
  background: var(--black-2);
  border: 1px solid var(--grey);
  min-width: 260px;
  min-height: 160px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  /* overflow visible so nothing clips; badge is inside so no need to hide */
  overflow: visible;
}
.hotel-card:hover {
  border-color: var(--orange);
  background: rgba(232,93,4,0.05);
}
.hotel-card img {
  max-height: 72px;
  max-width: 180px;
  object-fit: contain;
  transition: filter var(--transition);
  display: block;
}
.hotel-card:hover img {
  filter: brightness(0) invert(1);
}
.hotel-name-text {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--white-dim);
  text-transform: uppercase;
  text-align: center;
}
.hotel-placeholder {
  border-style: dashed;
  opacity: 0.5;
}

/* Discount badge — plain orange text, top-right inside the card */
.hotel-discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}
.hotel-card:hover .hotel-discount-badge {
  /* no transform needed without the circle */
}
.hotel-discount-value {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--orange);
  letter-spacing: 0;
  line-height: 1;
}
.hotel-discount-pct {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--orange);
  letter-spacing: 0;
  line-height: 1;
  margin-top: 0;
}

/* ══════════════════════════════════
   PARTNERS SECTION
══════════════════════════════════ */
#partners {
  background: var(--black-2);
  border-top: 1px solid var(--grey);
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  background: var(--black-3);
  border: 1px solid var(--grey);
  transition: all var(--transition);
  min-width: 160px;
  min-height: 80px;
}
.partner-logo:hover {
  border-color: var(--orange);
  background: rgba(232,93,4,0.05);
}
.partner-logo img {
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
  transition: filter var(--transition);
}
.partner-logo:hover img {
  filter: brightness(0) invert(1);
}
 
/* ══════════════════════════════════
   VENUE / MAP SECTION
══════════════════════════════════ */
#venue {
  background: var(--black);
  border-top: 1px solid var(--grey);
}
.map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 45%;   /* 16:7 aspect ratio — wide cinematic map */
  height: 0;
  overflow: hidden;
  border: 1px solid var(--grey);
  transition: border-color var(--transition);
}
.map-embed:hover {
  border-color: var(--orange);
}
.map-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
  filter: grayscale(30%) contrast(1.05);
  transition: filter var(--transition);
}
.map-embed:hover iframe {
  filter: grayscale(0%) contrast(1);
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 280px;
  background: var(--black-3);
  border: 1px dashed var(--grey);
}
.map-placeholder span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(245,245,240,.4);
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.8;
}
.venue-address {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--white-dim);
}
.venue-address svg {
  flex-shrink: 0;
  color: var(--orange);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
#site-footer {
  background: var(--black-3);
  border-top: 1px solid var(--grey);
  padding: 80px 60px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--grey);
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white-dim);
  position: relative;
  padding-left: 16px;
  transition: color var(--transition);
}
.footer-col ul li a::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 12px;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(245,245,240,0.3);
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 4px;
  color: rgba(245,245,240,0.2);
}
.footer-logo-text span { color: rgba(232,93,4,0.5); }
 
/* ══════════════════════════════════
   MOBILE NAV DRAWER
══════════════════════════════════ */

/* 1. The Container: Only as tall as its content */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto; /* Changed from 100vh to follow the points of menu */
    background-color: #000000;
    z-index: 1000;
    
    /* Layout: Vertical padding gives it room to breathe */
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start; /* Start from the top instead of centering */
    align-items: center;
    gap: 25px; 
    
    /* PADDING: Adjust 100px to match your header's height so links appear below it */
    padding: 100px 0 40px 0; 

    /* Shadow to separate it from the page content below */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    
    /* Hidden state */
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
backdrop-filter: blur(10px); /* This will blur the site content visible under the menu */
    background-color: rgba(0, 0, 0, 0.95); /* Slightly transparent looks more modern */
}

/* 2. The Active State: When the hamburger is clicked */
.mobile-nav.open {
    transform: translateY(0);
    visibility: visible;
}

/* 3. The Links: Style the 'Artists', 'Tickets', and 'Listen' text */
.mobile-nav a {
    color: #FFFFFF !important; /* Force white text */
    font-family: 'Bebas Neue', sans-serif; /* Your theme's headline font */
    font-size: 42px; /* Large, easy-to-tap mobile links */
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    display: block;
    
    /* Animation for a smoother entrance */
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

/* Show links when menu is open */
.mobile-nav.open a {
    opacity: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .lang-row {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

/* 4. Hover/Active effect */
.mobile-nav a:hover,
.mobile-nav a:active {
    color: #FF0000; /* Or your theme's accent color */
}

.mobile-nav .lang-row a {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 2px;
}
 
/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .tickets-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  #site-header { padding: 0 20px; }
  #main-nav, .lang-switcher { display: none; }
  .hamburger { display: flex; }
  .section-wrap { padding: 72px 24px; }
  .tickets-grid { grid-template-columns: 1fr; }
  .listen-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  #site-footer { padding: 60px 24px; }
  .partners-grid { gap: 12px; }
  .partner-logo { min-width: 120px; padding: 16px 20px; }
  .map-embed { padding-bottom: 65%; } /* taller on mobile */
  /* Hotels: single centred column, each card 80% wide, uniform height */
  .hotels-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .hotel-card {
    width: 80%;
    max-width: 420px;
    min-width: unset;
    min-height: 140px;
    padding: 32px 72px 32px 32px; /* right padding reserves space for the badge */
  }
  .hotels-promo { font-size: 14px; margin-top: -24px; }
}
 
/* ── Artists Grid: desktop unchanged, mobile = horizontal scroll ── */
 
@media (max-width: 767px) {
 
    #artists .section-wrap {
        padding-left: 0;
        padding-right: 0;
    }
 
    .artists-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 12px;
        padding: 0 20px 16px;
        /* iOS Safari: override body overflow-x:hidden scroll context so
           horizontal touch events are routed here, not swallowed by body */
        touch-action: pan-x;
    }
 
    .artists-grid::-webkit-scrollbar { display: none; }
 
    /* Override fixed desktop width for mobile */
    .artist-card {
        flex: 0 0 72vw;
        width: 240px;
        min-width: unset;
        max-width: 240px;
    }
}
 
@media (max-width: 767px) {
 
    #tickets .section-wrap {
        padding-left: 0;
        padding-right: 0;
    }
 
    .tickets-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 16px;
        padding: 0 20px 16px;
        touch-action: pan-x;
    }
 
    .tickets-grid::-webkit-scrollbar { display: none; }
 
    .ticket-card {
  background: var(--black-3);
  border: 1px solid var(--grey);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
  cursor: pointer;
  width: 320px;
  min-width: 320px;
  max-width: 320px;
}
}

/* On mobile, ensure hamburger and nav links are not blocked */
@media (max-width: 767px) {
    .lang-dropdown-wrap {
        z-index: 9999; /* below mobile-nav (10000) */
    }

    .hamburger {
        z-index: 10001;
    }
}

/* Ensure mobile menu is NEVER visible on desktop */
@media (min-width: 992px) {
    .mobile-nav {
        display: none !important;
        visibility: hidden;
        pointer-events: none;
    }
}

/* ── Night Mode for Embedded Map ── */
.map-embed iframe {
    width: 100%; /* Ensures it fills the container */
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
    border-radius: 8px; /* Optional: matches your card-style UI */
    border: 1px solid var(--grey) !important; /* Uses your theme's grey variable */
}

/* Optional: Add a subtle orange glow on hover to match your artist cards */
.map-embed:hover iframe {
    border-color: var(--orange) !important;
    transition: border-color var(--transition);
}