/* ========================================
   1. CSS CUSTOM PROPERTIES & RESET
   ======================================== */
:root {
  --clr-orange: #E8611A;
  --clr-orange-dark: #C74E10;
  --clr-orange-light: #F49D37;
  --clr-brown: #4A2511;
  --clr-brown-light: #6B3A1F;
  --clr-cream: #F5DEB3;
  --clr-cream-light: #FFF8ED;
  --clr-white: #FFFFFF;
  --font-display: 'Baloo 2', 'Arial Black', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --nav-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--clr-cream-light);
  color: var(--clr-brown);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--clr-orange);
  color: var(--clr-white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Focus states */
:focus-visible {
  outline: 3px solid var(--clr-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Cursor pointer for interactives */
button, a, .tab-btn, .info-card, .sponsor-image-wrap {
  cursor: pointer;
}

/* ========================================
   2. TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 0.5em;
  color: var(--clr-brown);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: var(--clr-orange);
  margin: 0.3em auto 0;
  border-radius: 3px;
}

/* ========================================
   3. NAVIGATION
   ======================================== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 1000;
  transition: background 0.3s;
}

.main-nav.nav-scrolled {
  background: rgba(74, 37, 17, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: text-shadow 0.3s ease;
}

.nav-logo:hover {
  text-shadow: 0 2px 20px rgba(232, 97, 26, 0.5);
}

.nav-links {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--clr-orange);
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--clr-white);
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========================================
   4. HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--clr-brown);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center 40%, rgba(232, 97, 26, 0.15) 0%, transparent 60%),
    linear-gradient(
      to bottom,
      rgba(74, 37, 17, 0.25) 0%,
      rgba(74, 37, 17, 0.5) 50%,
      rgba(74, 37, 17, 0.9) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
}

.hero-logo {
  width: min(400px, 80vw);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5))
         drop-shadow(0 0 60px rgba(232, 97, 26, 0.3));
  animation: heroLogoIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroLogoIn {
  0% { opacity: 0; transform: scale(0.3) translateY(60px) rotate(-5deg); }
  60% { opacity: 1; transform: scale(1.08) translateY(-10px) rotate(1deg); }
  100% { opacity: 1; transform: scale(1) translateY(0) rotate(0deg); }
}

.hero-logo:hover {
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5))
         drop-shadow(0 0 80px rgba(232, 97, 26, 0.5));
  transform: scale(1.04);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.hero-location {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--clr-white);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4),
               0 0 30px rgba(232, 97, 26, 0.2);
  animation: heroTextIn 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-dates {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--clr-white);
  font-weight: 700;
  margin-bottom: 1.5em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3),
               0 0 40px rgba(244, 157, 55, 0.4);
  animation: heroDateIn 1s 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroTextIn {
  0% { opacity: 0; transform: translateY(25px); letter-spacing: 1px; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 4px; }
}

@keyframes heroDateIn {
  0% { opacity: 0; transform: translateY(25px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: heroTextIn 1s 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--clr-white);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.4em 0.5em;
  backdrop-filter: blur(8px);
  min-width: 60px;
  text-align: center;
  transition: transform 0.3s ease;
}

.countdown-label {
  font-size: 0.75rem;
  color: var(--clr-cream);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.4rem;
  font-weight: 500;
}

.countdown-done {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--clr-white);
  text-shadow: 0 0 30px rgba(232, 97, 26, 0.5);
}

.btn-cta {
  display: inline-block;
  padding: 1em 3em;
  background: linear-gradient(135deg, var(--clr-orange) 0%, var(--clr-orange-dark) 100%);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  box-shadow: 0 4px 20px rgba(232, 97, 26, 0.4),
              0 0 40px rgba(232, 97, 26, 0.15);
  animation: heroTextIn 1s 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 97, 26, 0.5),
              0 0 60px rgba(232, 97, 26, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   5. WAVE DIVIDERS
   ======================================== */
.wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  margin-top: -1px;
  margin-bottom: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

.wave-divider.flip svg {
  transform: scaleY(-1);
}

/* Match wave backgrounds to adjacent sections */
.wave-divider:has(+ .locatie) {
  background: var(--clr-cream-light);
}

.wave-locatie-bottom {
  background: linear-gradient(135deg, var(--clr-orange) 0%, var(--clr-orange-dark) 100%);
}

/* ========================================
   6. SECTIONS BASE
   ======================================== */
.section {
  padding: 4rem 1.5rem;
  position: relative;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ========================================
   7. PROGRAMMA SECTION
   ======================================== */
.programma {
  background: var(--clr-cream-light);
}

.tab-bar {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.7em 1.5em;
  background: var(--clr-brown);
  color: var(--clr-cream);
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.tab-btn:hover {
  background: var(--clr-brown-light);
}

.tab-btn.active {
  background: var(--clr-orange);
  color: var(--clr-white);
  transform: scale(1.05);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.day-card {
  background: var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(74, 37, 17, 0.12);
}

.day-card-image {
  width: 100%;
  object-fit: contain;
}

.day-card-content {
  padding: 1.5rem;
}

.day-card-date {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--clr-brown);
  margin-bottom: 0.5rem;
}

.time-badge {
  display: inline-block;
  padding: 0.3em 1em;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.artist-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.artist-list li {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-brown);
  padding-left: 1em;
  position: relative;
}

.artist-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--clr-orange);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ========================================
   8. LOCATIE SECTION
   ======================================== */
.locatie {
  background: linear-gradient(135deg, var(--clr-orange) 0%, var(--clr-orange-dark) 100%);
  color: var(--clr-white);
}

.locatie .section-title {
  color: var(--clr-white);
}

.locatie .section-title::after {
  background: var(--clr-cream);
}

.locatie-grid {
  display: grid;
  gap: 2rem;
}

.locatie-map {
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  height: 350px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -85%);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
  animation: pinDrop 0.6s 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes pinDrop {
  0% { opacity: 0; transform: translate(-50%, -200%) scale(0.5); }
  70% { transform: translate(-50%, -80%) scale(1.05); }
  100% { opacity: 1; transform: translate(-50%, -85%) scale(1); }
}

.locatie-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.locatie-info {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.locatie-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--clr-cream);
}

.locatie-info p {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

/* ========================================
   9. PRAKTISCHE INFO SECTION
   ======================================== */
.info {
  background: var(--clr-cream-light);
}

.info-grid {
  display: grid;
  gap: 1.5rem;
}

.info-card {
  background: var(--clr-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(74, 37, 17, 0.08);
  transition: transform 0.2s;
}

.info-card:hover {
  transform: translateY(-3px);
}

.info-card-icon {
  width: 50px;
  height: 50px;
  background: var(--clr-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--clr-white);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--clr-brown);
}

.info-card p, .info-card ul {
  color: var(--clr-brown-light);
  font-size: 0.95rem;
}

.info-card li {
  padding: 0.2em 0;
}

/* ========================================
   10. IPHONE MOCKUP & PROGRAMMA LAYOUT
   ======================================== */
.programma-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.programma-content {
  flex: 1;
  min-width: 0;
}

.programma-phone {
  text-align: center;
  perspective: 800px;
}

.phone-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--clr-brown);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.phone-sublabel {
  color: var(--clr-brown-light);
  font-size: 0.95rem;
  margin-top: 1rem;
  opacity: 0.7;
}

.iphone-mockup {
  width: 240px;
  margin: 0 auto;
  position: relative;
  border-radius: 48px;
  overflow: hidden;
  transform: rotateY(-2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s ease;
}

.iphone-mockup:hover {
  transform: rotateY(0deg) scale(1.03);
}

/* The phone frame as an outline around the screen */
.iphone-frame {
  position: relative;
  border-radius: 48px;
  background: #1c1c1e;
  padding: 10px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1.5px #3a3a3a,
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Side button right (power) */
.iphone-frame::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 90px;
  width: 3px;
  height: 32px;
  background: #2a2a2a;
  border-radius: 0 3px 3px 0;
}

/* Side buttons left (mute + volume) */
.iphone-frame::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 75px;
  width: 3px;
  height: 20px;
  background: #2a2a2a;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 28px 0 #2a2a2a, 0 50px 0 #2a2a2a;
}

.iphone-screen {
  border-radius: 38px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #000;
  position: relative;
}

/* Dynamic Island overlay on the screen */
.iphone-dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 22px;
  background: #000;
  border-radius: 20px;
  z-index: 5;
}

/* Home indicator */
.iphone-screen::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  z-index: 6;
}

.iphone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.iphone-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(232, 97, 26, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, opacity 0.4s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
              0 0 30px rgba(232, 97, 26, 0.3);
  animation: playPulse 2.5s ease-in-out infinite;
}

.iphone-play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

.iphone-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: rgba(232, 97, 26, 1);
}

.iphone-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(232, 97, 26, 0.25); }
  50% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 50px rgba(232, 97, 26, 0.45); }
}


/* ========================================
   11. SPONSORS SECTION
   ======================================== */
.sponsors {
  background: var(--clr-brown);
  text-align: center;
  overflow: hidden;
}

.sponsors .section-title {
  color: var(--clr-white);
}

.sponsors .section-title::after {
  background: var(--clr-orange);
}

.sponsor-image-wrap {
  max-width: 700px;
  margin: 1rem auto 0;
  overflow: hidden;
  border-radius: 16px;
  height: 200px;
}

.sponsor-image {
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center 75%;
  transition: transform 0.4s ease;
}

.sponsor-image:hover {
  transform: scale(1.03);
}

/* ========================================
   11. FOOTER
   ======================================== */
.footer {
  background: var(--clr-brown);
  color: var(--clr-cream);
  text-align: center;
  padding: 3rem 1.5rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--clr-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.footer-socials a:hover {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: var(--clr-cream);
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ========================================
   12. DECORATIONS
   ======================================== */
.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 157, 55, 0.25) 0%, rgba(245, 222, 179, 0.1) 100%);
  opacity: 0.5;
  pointer-events: none;
  filter: blur(1px);
}

.decoration-sparkle {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  opacity: 0.7;
}

.decoration-sparkle::before,
.decoration-sparkle::after {
  content: '';
  position: absolute;
  background: var(--clr-white);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.decoration-sparkle::before {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.decoration-sparkle::after {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

/* ========================================
   13. SCROLL ANIMATIONS
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.anim-slide-left {
  transform: translateX(-60px);
}

.anim-slide-left.visible {
  transform: translateX(0);
}

.anim-slide-right {
  transform: translateX(60px);
}

.anim-slide-right.visible {
  transform: translateX(0);
}

.anim-zoom {
  transform: scale(0.85);
}

.anim-zoom.visible {
  transform: scale(1);
}

/* Stagger children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* Parallax zoom on hero video */
.hero-video {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Day card image zoom on hover */
.day-card-image {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.day-card:hover .day-card-image {
  transform: scale(1.05);
}

/* Info card lift */
.info-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(74, 37, 17, 0.15);
}

/* Map container hover */
.locatie-map {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.locatie-map:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Decoration entrance (one-time, not infinite) */
@keyframes decorFadeIn {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 0.5; transform: scale(1); }
}

.decoration-circle {
  animation: decorFadeIn 1.5s 0.5s ease-out both;
}

.decoration-circle:nth-child(2) { animation-delay: 0.8s; }
.decoration-circle:nth-child(3) { animation-delay: 1.1s; }

@keyframes sparkleFadeIn {
  0% { opacity: 0; transform: scale(0) rotate(0deg); }
  100% { opacity: 0.7; transform: scale(1) rotate(45deg); }
}

.decoration-sparkle {
  animation: sparkleFadeIn 0.8s 1s ease-out both;
}

.decoration-sparkle:nth-child(5) { animation-delay: 1.2s; }
.decoration-sparkle:nth-child(6) { animation-delay: 1.4s; }

/* Tab switch animation */
.tab-panel.active {
  animation: tabSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes tabSlideIn {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .anim-slide-left,
  .anim-slide-right,
  .anim-zoom {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .decoration-circle,
  .decoration-sparkle {
    animation: none;
  }

  .hero-logo,
  .hero-location,
  .hero-dates,
  .btn-cta,
  .countdown {
    animation: none;
    opacity: 1;
  }

  .decoration-circle,
  .decoration-sparkle {
    opacity: 0.3;
  }

  @keyframes fadeIn {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
  }

  html {
    scroll-behavior: auto;
  }
}

/* ========================================
   14. RESPONSIVE - TABLET (768px+)
   ======================================== */
@media (min-width: 768px) {
  .section {
    padding: 5rem 2rem;
  }

  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    width: auto;
    height: auto;
    background: none;
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .programma-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .programma-content {
    flex: 1;
  }

  .programma-phone {
    flex: 0 0 260px;
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
  }

  .day-card-content {
    padding: 1.5rem;
  }

  .locatie-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .locatie-map {
    height: 100%;
    min-height: 380px;
  }

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

  .wave-divider svg {
    height: 100px;
  }
}

/* ========================================
   15. RESPONSIVE - DESKTOP (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  .section {
    padding: 6rem 2rem;
  }

  .main-nav {
    padding: 0 3rem;
  }

  .nav-links {
    gap: 2rem;
  }

  .hero-logo {
    width: 450px;
  }

  .programma-layout {
    gap: 3rem;
  }

  .programma-phone {
    flex: 0 0 280px;
  }

  .iphone-mockup {
    width: 245px;
  }

  .day-card {
    display: flex;
    flex-direction: row;
  }

  .day-card-image {
    width: 45%;
    object-fit: cover;
    object-position: top;
    min-height: 280px;
  }

  .day-card-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .artist-list li {
    font-size: 1.1rem;
  }

  .wave-divider svg {
    height: 120px;
  }
}
