/* ============================================
   DISCOTHEEK WILLY'S MOUSTACHE
   Dark Editorial Nightclub Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
  --ink: #0E0B16;
  --stone: #1A1726;
  --cream: #F5F0E8;
  --mist: #D6CFC4;
  --ember: #E84855;
  --ember-bright: #F26A72;
  --gold: #D4A843;
  --moss: #2D6A4F;
  --hover-ember: #d03a47;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1200px;
  --gap: 1.5rem;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; }
h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; letter-spacing: -0.02em; line-height: 0.95; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 700; }
.overline {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ember-bright);
}

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.875rem 2rem; font-family: var(--font-body); font-size: 0.8125rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: 50px; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary { background: var(--ember); color: var(--cream); }
.btn-primary:hover {
  background: var(--hover-ember); transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 72, 85, 0.3);
}
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(245, 240, 232, 0.3);
}
.btn-outline:hover {
  border-color: var(--cream); background: rgba(245, 240, 232, 0.05);
}

/* --- Header --- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0; transition: all var(--transition);
}
.header.scrolled {
  background: rgba(14, 11, 22, 0.95); backdrop-filter: blur(20px);
  padding: 0.75rem 0; border-bottom: 1px solid rgba(245, 240, 232, 0.05);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
}

/* --- Logo --- */
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-willys { font-family: var(--font-display); font-size: 1.35rem; font-weight: 900; color: var(--cream); }
.logo-moustache { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; font-style: italic; color: var(--ember); }

/* --- Nav --- */
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--mist); transition: color var(--transition); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--ember); transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--cream); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-tickets {
  background: var(--ember); color: var(--cream); padding: 0.5rem 1.25rem;
  border-radius: 50px; font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; transition: all var(--transition);
}
.nav-tickets:hover { background: var(--hover-ember); transform: translateY(-1px); }

/* --- Hamburger --- */
.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 28px; height: 28px; background: none; border: none;
  cursor: pointer; z-index: 1001; padding: 0;
}
.menu-toggle span {
  display: block; width: 100%; height: 2px; background: var(--cream);
  border-radius: 2px; transition: all var(--transition); transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile Nav Overlay --- */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(14, 11, 22, 0.97); backdrop-filter: blur(30px);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--cream); transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--ember); }
.mobile-nav .nav-tickets { font-family: var(--font-body); font-size: 0.875rem; margin-top: 1rem; }

/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 72, 85, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(212, 168, 67, 0.1) 0%, transparent 50%),
    var(--ink);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(14,11,22,0.6) 0%, rgba(14,11,22,0.4) 40%,
    rgba(14,11,22,0.7) 70%, rgba(14,11,22,0.95) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 2rem; }
.hero-overline { margin-bottom: 1.5rem; }
.hero-title { margin-bottom: 1rem; }
.hero-title .willys { color: var(--cream); }
.hero-title .moustache { color: var(--ember); font-style: italic; }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem); color: var(--mist);
  margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* --- Countdown --- */
.countdown { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; }
.countdown-item { display: flex; flex-direction: column; align-items: center; }
.countdown-number {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  background: rgba(245, 240, 232, 0.08); border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: var(--radius-sm); width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem;
}
.countdown-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--mist);
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 24px; height: 24px; stroke: var(--mist); opacity: 0.6; }
@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* --- Page Hero (subpages) --- */
.page-hero {
  position: relative; min-height: 50vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 8rem 1.5rem 4rem;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,72,85,0.12) 0%, transparent 50%), var(--ink);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,11,22,0.5) 0%, rgba(14,11,22,0.9) 100%);
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--mist); max-width: 600px; margin: 0 auto; }

/* --- Schedule Strip --- */
.schedule {
  background: var(--stone); padding: 2rem 0;
  border-top: 1px solid rgba(245,240,232,0.05);
  border-bottom: 1px solid rgba(245,240,232,0.05);
}
.schedule-inner { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.schedule-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--mist); white-space: nowrap;
}
.schedule-days { display: flex; gap: 0.75rem; }
.schedule-day { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.schedule-day-name {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mist);
}
.schedule-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(245,240,232,0.1); border: 1.5px solid rgba(245,240,232,0.15);
}
.schedule-dot.open { background: var(--ember); border-color: var(--ember); box-shadow: 0 0 10px rgba(232,72,85,0.4); }
.schedule-dot.special { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 10px rgba(212,168,67,0.4); }

/* --- Sections --- */
.section { padding: 5rem 0; }
.section-alt { background: var(--stone); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--mist); max-width: 550px; margin: 0 auto; }

/* --- Event Cards --- */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.event-card {
  background: var(--stone); border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition); border: 1px solid rgba(245,240,232,0.05);
}
.event-card:hover {
  transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-color: rgba(232,72,85,0.2);
}
.event-card-image { position: relative; height: 200px; overflow: hidden; }
.event-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.event-card:hover .event-card-image img { transform: scale(1.05); }
.event-card-date {
  position: absolute; top: 1rem; left: 1rem; background: var(--ember);
  color: var(--cream); padding: 0.5rem 0.75rem; border-radius: var(--radius-sm);
  text-align: center; line-height: 1;
}
.event-card-date .day { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; display: block; }
.event-card-date .month { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.event-card-body { padding: 1.25rem; }
.event-card-type {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ember-bright); margin-bottom: 0.5rem;
}
.event-card-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.2; }
.event-card-footer { display: flex; align-items: center; justify-content: space-between; }
.event-card-day { font-size: 0.8rem; color: var(--mist); }
.event-card-link {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ember); transition: color var(--transition);
}
.event-card-link:hover { color: var(--ember-bright); }

/* --- Formule Cards --- */
.formules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.formule-card {
  background: var(--stone); border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition); border: 1px solid rgba(245,240,232,0.05);
  text-align: center; padding: 2.5rem 1.5rem;
}
.formule-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.formule-card-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.formule-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.75rem; }
.formule-card p { color: var(--mist); font-size: 0.95rem; margin-bottom: 1.5rem; padding: 0 1rem; }

/* --- Formule Detail (subpage) --- */
.formule-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; padding: 3rem 0;
}
.formule-detail:nth-child(even) { direction: rtl; }
.formule-detail:nth-child(even) > * { direction: ltr; }
.formule-detail-image { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.formule-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.formule-detail-content h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1rem; }
.formule-detail-content p { color: var(--mist); margin-bottom: 1.5rem; line-height: 1.7; }

/* --- Gallery --- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,11,22,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* --- Lightbox --- */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(14,11,22,0.95); backdrop-filter: blur(20px);
  align-items: center; justify-content: center; cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem; width: 44px; height: 44px;
  background: rgba(245,240,232,0.1); border: none; border-radius: 50%;
  color: var(--cream); font-size: 1.5rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: background var(--transition);
}
.lightbox-close:hover { background: var(--ember); }

/* --- Newsletter --- */
.newsletter {
  background: var(--stone); padding: 4rem 0; text-align: center;
  border-top: 1px solid rgba(245,240,232,0.05);
  border-bottom: 1px solid rgba(245,240,232,0.05);
}
.newsletter h2 { margin-bottom: 0.75rem; }
.newsletter p { color: var(--mist); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex; gap: 0.75rem; justify-content: center;
  max-width: 450px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; padding: 0.875rem 1.25rem;
  background: rgba(245,240,232,0.08); border: 1px solid rgba(245,240,232,0.15);
  border-radius: 50px; color: var(--cream); font-family: var(--font-body);
  font-size: 0.9rem; outline: none; transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(214,207,196,0.5); }
.newsletter-form input:focus { border-color: var(--ember); }
.newsletter-success { display: none; color: var(--ember-bright); font-weight: 600; margin-top: 1rem; }
.newsletter-success.show { display: block; }

/* --- Footer --- */
.footer { background: var(--ink); padding: 4rem 0 2rem; border-top: 1px solid rgba(245,240,232,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--mist); margin-top: 1rem; font-size: 0.95rem; }
.footer-heading {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 1.25rem;
}
.footer-links a { display: block; color: var(--mist); font-size: 0.9rem; padding: 0.35rem 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--ember); }
.footer-contact p { color: var(--mist); font-size: 0.9rem; line-height: 1.8; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid rgba(245,240,232,0.08); flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(214,207,196,0.5); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(214,207,196,0.5); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--cream); }

/* --- Filter Bar --- */
.filter-bar { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.5rem 1.25rem; background: transparent;
  border: 1px solid rgba(245,240,232,0.15); border-radius: 50px;
  color: var(--mist); font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 500; cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--ember); border-color: var(--ember); color: var(--cream); }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--stone) 0%, rgba(232,72,85,0.15) 100%);
  padding: 4rem 0; text-align: center; border-radius: var(--radius); margin: 3rem 0;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { color: var(--mist); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* --- Contact Grid --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.contact-info {
  background: var(--stone); padding: 2.5rem; border-radius: var(--radius);
  border: 1px solid rgba(245,240,232,0.05);
}
.contact-info h3 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-detail-icon {
  width: 40px; height: 40px; background: rgba(232,72,85,0.1);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 1.1rem;
}
.contact-detail-text h4 {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--mist); margin-bottom: 0.25rem;
}
.contact-detail-text p { color: var(--cream); font-size: 0.95rem; }
.contact-form {
  background: var(--stone); padding: 2.5rem; border-radius: var(--radius);
  border: 1px solid rgba(245,240,232,0.05);
}
.contact-form h3 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mist); margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 0.875rem 1.25rem;
  background: rgba(245,240,232,0.05); border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius-sm); color: var(--cream); font-family: var(--font-body);
  font-size: 0.95rem; outline: none; transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--ember); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- Opening Hours --- */
.hours-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.75rem; margin-bottom: 3rem; }
.hours-item {
  background: var(--stone); padding: 1.5rem 1rem; border-radius: var(--radius-sm);
  text-align: center; border: 1px solid rgba(245,240,232,0.05);
}
.hours-item.open { border-color: rgba(232,72,85,0.3); background: rgba(232,72,85,0.08); }
.hours-item.special { border-color: rgba(212,168,67,0.3); background: rgba(212,168,67,0.08); }
.hours-day {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--mist); margin-bottom: 0.5rem;
}
.hours-status { font-size: 0.85rem; font-weight: 600; }
.hours-item.open .hours-status { color: var(--ember); }
.hours-item.special .hours-status { color: var(--gold); }

/* --- Map --- */
.map-container {
  border-radius: var(--radius); overflow: hidden; height: 350px;
  border: 1px solid rgba(245,240,232,0.05); margin-bottom: 2rem;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* --- Animations --- */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Media Queries --- */
@media (max-width: 968px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .formules-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .formule-detail { grid-template-columns: 1fr; gap: 2rem; }
  .formule-detail:nth-child(even) { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-tickets { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .events-grid { grid-template-columns: 1fr; }
  .formules-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .countdown { gap: 0.5rem; }
  .countdown-number { width: 65px; height: 65px; font-size: 1.75rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .schedule-inner { flex-direction: column; gap: 1rem; }
  .hours-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .countdown-number { width: 55px; height: 55px; font-size: 1.5rem; }
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
}
