@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;1,400&display=swap');

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

:root {
  --cream:   #fdf6ec;
  --brown:   #5c3d1e;
  --gold:    #c8922a;
  --green:   #3a6b35;
  --dark:    #1e1209;
  --light:   #f5ead7;
  --radius:  12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(28, 18, 9, 0.95);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 2rem;
}

nav .logo {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex; gap: 2rem;
}

nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

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

/* ── Hero ── */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1500076656116-558758c991c1?w=1600&q=80') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
}

.hero-badge {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.2rem;
}

#hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}

#hero h1 span { color: var(--gold); }

#hero .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* ── Countdown ── */
.countdown-wrap {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.5rem 2.5rem;
  display: flex; gap: 2rem;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 2.5rem;
}

.countdown-unit { text-align: center; min-width: 60px; }

.countdown-unit .number {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.countdown-unit .label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.countdown-sep {
  align-self: center;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.6;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 0.85rem 2.2rem;
  border-radius: 99px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.5px;
  font-family: inherit;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover { background: #e0a830; transform: translateY(-2px); }

/* ── Sections commons ── */
section { padding: 5rem 1.5rem; }

.container { max-width: 1000px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brown);
  margin-bottom: 1rem;
}

.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  border-radius: 99px;
  margin-bottom: 2.5rem;
}

/* ── Info cards ── */
#infos { background: var(--light); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.info-card .icon { font-size: 2rem; margin-bottom: 0.8rem; }
.info-card h3 { color: var(--brown); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.4rem; }
.info-card p { font-size: 1.05rem; font-weight: bold; }

/* ── Lineup ── */
#lineup { background: var(--cream); }

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

.lineup-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

/* Zone image / placeholder */
.lineup-thumb {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light), #e8d5b0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lineup-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lineup-thumb .lineup-emoji {
  font-size: 4rem;
  line-height: 1;
}

.lineup-info { padding: 1rem 1.2rem 1.2rem; }
.lineup-info h3 { color: var(--brown); font-size: 1.05rem; margin-bottom: 0.2rem; }
.lineup-info .role { font-size: 0.82rem; color: var(--gold); font-weight: bold; letter-spacing: 0.5px; }
.lineup-info .desc { font-size: 0.85rem; color: #666; margin-top: 0.4rem; }

/* ── Anecdotes ── */
#anecdotes { background: var(--brown); color: var(--cream); }
#anecdotes h2 { color: var(--gold); }
#anecdotes .section-label { color: #d4b07a; }

.anecdote-list { display: grid; gap: 1.5rem; }

.anecdote-item {
  background: rgba(255,255,255,0.07);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.3rem 1.5rem;
}

.anecdote-item h3 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.anecdote-item p { font-size: 0.95rem; opacity: 0.9; }

.anecdote-year {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: bold;
  padding: 0.15rem 0.6rem;
  border-radius: 99px;
  margin-bottom: 0.5rem;
}

/* ── Programme ── */
#programme { background: var(--light); }

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

.programme-day {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.programme-day-header {
  background: var(--green);
  color: #fff;
  padding: 0.8rem 1.2rem;
  font-weight: bold;
  font-size: 0.95rem;
}

.programme-day-header span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: normal;
}

.programme-event {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid #f0e8d8;
}

.programme-event:last-child { border-bottom: none; }

.prog-time {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: bold;
  min-width: 50px;
  padding-top: 2px;
}

.prog-title { font-size: 0.9rem; color: var(--dark); }
.prog-sub { font-size: 0.78rem; color: #888; }

/* ── Footer ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.85rem;
}

footer .footer-logo {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

footer a { color: var(--gold); text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 600px) {
  nav ul { display: none; }
  .countdown-wrap { gap: 1rem; padding: 1rem 1.5rem; }
  .countdown-unit .number { font-size: 2rem; }
}
