/* ═══════════════════════════════════════════════
   RESET & VARIABLES
═══════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green     : #3EE09A;
  --pink      : #F985C5;
  --yellow    : #FFE500;
  --lightblue : #ADD8E6;
  --purple    : #6B2FD9;
  --dark      : #1A1040;
  --sky       : #A8E6FF;
  --nav-h     : 72px;
  --max-w     : 1200px;
  --ease      : cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm : 0 4px 14px rgba(0,0,0,0.12);
  --shadow-md : 0 8px 28px rgba(0,0,0,0.18);
  --shadow-lg : 0 20px 50px rgba(0,0,0,0.28);
  --radius    : 16px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-height: 100%;
  background: #05000F;
}

/* Mencegah navbar fixed menutupi bagian atas section saat auto-scroll (link anchor) */
[id] {
  scroll-margin-top: calc(var(--nav-h) + 20px);
}

body {
  font-family: 'Nunito', sans-serif;
  background: transparent;
  color: var(--dark);
  -webkit-tap-highlight-color: transparent;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; }

/* ═══════════════════════════════════════════════
   BACKGROUND IMAGE SYSTEM
   bg-wrap crops black letterbox bars via overflow:hidden
   sec-bg extends beyond wrapper so bars are clipped
═══════════════════════════════════════════════ */
.bg-wrap {
  position: absolute; inset: 0;
  overflow: hidden; z-index: 0;
}
.sec-bg {
  position: absolute;
  top: -8%; left: 0;
  width: 100%; height: 116%;
  object-fit: cover; object-position: center 50%;
  pointer-events: none; user-select: none;
}
/* Flip background vertically for Line Up section */
.sec-bg.flipped { transform: scaleY(-1); }

/* bg-wrap tidak dipakai */
.bg-wrap { display: none; }

/* ═══════════════════════════════════════════════
   SINGLE FIXED BACKGROUND — SYNTHWAVE RETRO
   Pure CSS gradient, no image needed.
   Works perfectly on all screen sizes.
═══════════════════════════════════════════════ */
#site-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 0;
  background: linear-gradient(180deg,
    #05000F 0%,
    #120030 20%,
    #2D006B 45%,
    #6B2FD9 55%,
    #2D006B 70%,
    #120030 85%,
    #05000F 100%
  );
  pointer-events: none;
}

#site-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,47,217,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,133,197,0.10) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Semi-transparent overlays (kept for optional use) */
.sec-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.overlay-dark  { background: rgba(14, 10, 42, 0.45); }
.overlay-light { background: rgba(168, 230, 255, 0.30); }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--green);
  height: var(--nav-h);
  box-shadow: 0 3px 20px rgba(0,0,0,0.18);
  transition: box-shadow 0.3s;
}

.navbar-inner {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 40px;
  height: 100%;
  display: flex; align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; cursor: pointer; }
.nav-logo:hover { opacity: 0.82; }
.nav-logo img { height: 50px; object-fit: contain; }

/* Desktop links */
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }

.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--dark);
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px;
  padding: 8px 18px; border-radius: 8px;
  transition: background 0.2s;
}
.nav-link:hover { background: rgba(0,0,0,0.10); }

.chevron { font-size: 11px; transition: transform 0.25s var(--ease); display: inline-block; }

/* Dropdown */
.has-dropdown { position: relative; }

/* Bridge: transparent area antara link dan dropdown agar hover tidak putus */
.has-dropdown::before {
  content: '';
  position: absolute; bottom: -12px; left: 0; right: 0;
  height: 12px; z-index: 501;
  display: none;
}
.has-dropdown:hover::before { display: block; }

.dropdown {
  list-style: none;
  position: absolute; top: calc(100% + 8px); left: 50%;
  background: white; border-radius: 14px;
  min-width: 175px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
  z-index: 500;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  /* overflow:visible agar arrow tidak terpotong */
  overflow: visible;
}

/* Dropdown arrow */
.dropdown::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 6px;
  background: white;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.has-dropdown:hover .dropdown,
.has-dropdown.open  .dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover .chevron,
.has-dropdown.open  .chevron  { transform: rotate(180deg); }

.dropdown li { border-bottom: 1px solid rgba(0,0,0,0.05); }
.dropdown li:first-child a { border-radius: 14px 14px 0 0; }
.dropdown li:last-child     { border-bottom: none; }
.dropdown li:last-child a   { border-radius: 0 0 14px 14px; }

.dropdown li a {
  display: block; padding: 13px 22px;
  color: var(--dark);
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px;
  transition: background 0.15s;
}
.dropdown li a:hover { background: var(--green); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none;
  padding: 8px; border-radius: 8px; cursor: pointer;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(0,0,0,0.1); }
.hamburger span {
  display: block; width: 24px; height: 3px;
  background: var(--dark); border-radius: 2px;
  transition: transform 0.32s var(--ease), opacity 0.32s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   MARQUEE / RUNNING TEXT
═══════════════════════════════════════════════ */
.marquee-bar {
  overflow: hidden; height: var(--nav-h);
  display: flex; align-items: center;
  position: relative; z-index: 2;
}
.bar-pink   { background: var(--pink);   }
.bar-green  { background: var(--green);  }
.bar-yellow { background: var(--yellow); }
.bar-purple { background: var(--purple); }
.bar-orange { background: #FF8C00; }
.bar-cyan   { background: #00D4AA; }

.marquee-track {
  display: flex; align-items: center;
  white-space: nowrap; flex-shrink: 0;
  animation: mq-scroll 22s linear infinite;
  will-change: transform;
}
.track-rev { animation-direction: reverse; }
.marquee-bar:hover .marquee-track { animation-play-state: paused; }
@keyframes mq-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.mq {
  font-family: 'Luckiest Guy', cursive;
  font-size: 20px; letter-spacing: 4px;
  padding: 0 28px; flex-shrink: 0;
}
.text-lightblue { color: var(--lightblue); -webkit-text-stroke: 1.5px var(--purple); }
.text-yellow    { color: var(--yellow); }
.text-green     { color: var(--green); }
.text-purple    { color: var(--purple); }
.stroke-black   { -webkit-text-stroke: 1.5px #111; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden; z-index: 1;
  min-height: 78vh; padding-top: var(--nav-h);
  display: flex; flex-direction: column; justify-content: flex-start;
  background-color: #87CEEB;
  background-image: url('../assets/background_section_hero_update.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 16px 40px 60px;
  display: flex; align-items: flex-start;
  justify-content: center; gap: 140px;
}

.hero-left  { flex: 1; display: flex; justify-content: flex-end; align-items: flex-start; }
.hero-right { flex: 1; display: flex; flex-direction: column; align-items: flex-start; }

.hero-gif {
  width: auto; max-width: 100%;
  height: 500px; object-fit: contain; object-position: top left;
  filter: drop-shadow(0 0 40px rgba(62,224,154,0.35)) drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  animation: float-y 3.6s ease-in-out infinite;
}

.hero-tagline {
  width: auto; max-width: 100%;
  height: 500px; object-fit: contain; object-position: top right;
}

/* Event info below tagline */
.hero-event-info {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px; margin-top: 28px;
}

.event-badge {
  background: var(--yellow); color: var(--dark);
  padding: 9px 28px; border-radius: 50px;
  border: 2.5px solid var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
}
.event-date {
  font-family: 'Luckiest Guy', cursive;
  font-size: 19px; letter-spacing: 2px;
}

.event-place {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--dark);
  background: rgba(255,255,255,0.92);
  padding: 9px 22px; border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.event-place svg { flex-shrink: 0; stroke: var(--purple); fill: none; }

.btn-hero {
  display: inline-block;
  background: var(--pink); color: var(--dark);
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 17px;
  padding: 14px 44px; border-radius: 50px;
  border: 2.5px solid var(--dark);
  box-shadow: 5px 5px 0 var(--dark);
  transition: transform 0.15s, box-shadow 0.15s;
  margin-top: 4px;
}
.btn-hero:hover  { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--dark); }
.btn-hero:active { transform: translate(1px, 1px);  box-shadow: 2px 2px 0 var(--dark); }


@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

/* ═══════════════════════════════════════════════
   JENIS TIKET
═══════════════════════════════════════════════ */
.section-tickets,
.section-lineup,
.section-performance,
.section-gallery,
.section-sponsor,
.section-mediapartner,
.footer {
  position: relative;
  background-color: #87CEEB;
  background-image: url('../assets/background_section_jenis_tiket.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.tickets-body {
  position: relative; overflow: hidden;
  min-height: 520px;
  display: flex; align-items: center;
}

.tickets-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 68px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}

.tickets-label {
  font-family: 'Luckiest Guy', cursive;
  font-size: 28px; letter-spacing: 3px;
  color: white;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}

.tickets-row {
  display: flex; justify-content: center;
  align-items: flex-end; gap: 24px; flex-wrap: nowrap;
}

.ticket-card {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}

.ticket-img {
  width: 100%; max-width: 280px;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.32));
  transition: transform 0.32s var(--ease), filter 0.32s;
  cursor: pointer;
}
.ticket-img:hover {
  transform: translateY(-14px) scale(1.06);
  filter: drop-shadow(0 28px 48px rgba(0,0,0,0.42));
}

.ticket-cta {
  background: var(--yellow); color: var(--dark);
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px;
  padding: 10px 32px; border-radius: 50px;
  border: 2px solid var(--dark);
  box-shadow: 3px 3px 0 var(--dark);
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-block;
}
.ticket-cta:hover  { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--dark); }
.ticket-cta:active { transform: translate(1px, 1px);  box-shadow: 1px 1px 0 var(--dark); }

/* ═══════════════════════════════════════════════
   LINE UP
═══════════════════════════════════════════════ */
.section-lineup {
  position: relative; overflow: hidden;
  min-height: 700px;
  display: flex; align-items: center;
}

.deco-star {
  position: absolute; z-index: 3; pointer-events: none;
  animation: float-y 5s ease-in-out infinite;
}
.star-tl { top: 36px;    left: 36px;   width: 100px; }
.star-br { bottom: 36px; right: 36px;  width: 90px; animation-delay: -2.5s; }

.lineup-inner {
  position: relative; z-index: 4;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 72px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}

.section-title-img {
  max-width: 460px; width: 78%;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.2));
}

/* Carousel */
.carousel-wrap { width: 100%; display: flex; align-items: center; gap: 16px; }
.carousel-viewport { flex: 1; overflow: hidden; }
.carousel-track {
  display: flex; gap: 20px;
  transition: transform 0.48s var(--ease);
  will-change: transform;
}
.car-slide { flex: 0 0 calc(33.333% - 14px); min-width: 0; }

.artist-card {
  aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 16px;
  border: 3px solid var(--yellow);
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.artist-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 20px 48px rgba(0,0,0,0.5); }
.artist-card span { display: none; }

.car-btn {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  background: var(--yellow); color: var(--dark);
  border: 2.5px solid var(--dark); font-size: 30px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 4px 4px 0 var(--dark);
  transition: transform 0.15s, box-shadow 0.15s; cursor: pointer;
}
.car-btn:hover  { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--dark); }
.car-btn:active { transform: translate(1px, 1px);  box-shadow: 2px 2px 0 var(--dark); }

.carousel-dots { display: flex; gap: 10px; justify-content: center; }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer; padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.dot.active { background: var(--yellow); transform: scale(1.5); }

/* ═══════════════════════════════════════════════
   PERFORMANCE
═══════════════════════════════════════════════ */
.perf-body {
  position: relative; overflow: hidden;
  min-height: 580px;
  padding: 72px 0;
}

.perf-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 40px;
  display: flex; flex-direction: column; align-items: center; gap: 44px;
}

.perf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px; width: 100%;
}

.perf-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); cursor: pointer;
  transition: transform 0.32s var(--ease), box-shadow 0.32s;
}
.perf-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }

.perf-thumb { width: 100%; aspect-ratio: 4/3; }
.perf-cap {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--dark); padding: 12px 16px 14px; text-align: center;
}

/* ═══════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
.gallery-body {
  position: relative; overflow: hidden;
  min-height: 720px;
  padding: 72px 0;
}

.gallery-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 40px;
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}

.gallery-header {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%; gap: 20px; flex-wrap: wrap;
}
.gal-title-img { max-width: 300px; width: 38%; }
.brothers-img  { max-width: 280px; width: 38%; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; width: 100%;
}

.gal-item {
  aspect-ratio: 1; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.gal-item:hover { transform: scale(1.06); box-shadow: var(--shadow-lg); }

.gallery-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn-green {
  background: var(--green); color: var(--dark);
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 16px;
  padding: 14px 40px; border-radius: 50px;
  border: 2.5px solid var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-green:hover  { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--dark); }
.btn-green:active { transform: translate(1px, 1px);  box-shadow: 2px 2px 0 var(--dark); }

/* Load More – Performance */
.btn-load-more {
  display: block; margin: 28px auto 0;
  padding: 13px 40px;
  background: transparent;
  border: 2px solid var(--purple);
  border-radius: 30px;
  color: var(--purple);
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px;
  cursor: pointer; letter-spacing: .5px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-load-more:hover  { background: var(--purple); color: #fff; transform: translateY(-2px); }
.btn-load-more:active { transform: translateY(0); }

.btn-outline {
  background: transparent; color: var(--green);
  border-color: var(--green); box-shadow: 4px 4px 0 var(--green);
}
.btn-outline:hover  { box-shadow: 6px 6px 0 var(--green); }
.btn-outline:active { box-shadow: 2px 2px 0 var(--green); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer-body {
  position: relative; overflow: hidden;
  min-height: 260px;
  display: flex; align-items: center;
}

.footer-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
}

.footer-social { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.soc-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: white; color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.soc-btn svg { width: 24px; height: 24px; fill: currentColor; }
.soc-btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Brand colors */
.soc-btn[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 40%, #d6249f 60%, #285AEB 90%);
  color: white;
}
.soc-btn[aria-label="YouTube"] { background: #FF0000; color: white; }
.soc-btn[aria-label="Spotify"]  { background: #1DB954; color: white; }
.soc-btn[aria-label="TikTok"]   { background: #111111; color: white; }

.footer-center { display: flex; justify-content: center; }
.footer-bms-img {
  max-width: 200px; width: 100%;
  mix-blend-mode: screen;
}

.footer-right { text-align: right; }
.footer-copy {
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 600;
  color: rgb(0, 0, 0); line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   SPONSOR
═══════════════════════════════════════════════ */
.sponsor-body  { padding: 60px 0 70px; }
.sponsor-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}

.section-title-text {
  font-family: 'Luckiest Guy', cursive;
  font-size: 42px; letter-spacing: 3px; text-align: center;
  color: var(--purple);
  text-shadow: 3px 3px 0 rgba(235, 212, 12, 0.18);
}
.section-sponsor .section-title-text {
  color: var(--yellow);
  -webkit-text-stroke: 2px #111;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

.sponsor-tier  { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 16px; }

.tier-label {
  font-family: 'Luckiest Guy', cursive;
  font-size: 18px; letter-spacing: 4px;
  padding: 4px 24px; border-radius: 30px;
}
.tier-gold   { color: #B8860B; background: rgba(255,215,0,0.18); border: 1.5px solid #FFD700; }
.tier-silver { color: #808080; background: rgba(192,192,192,0.18); border: 1.5px solid #C0C0C0; }
.tier-bronze { color: #8B4513; background: rgba(205,127,50,0.18); border: 1.5px solid #CD7F32; }

.sponsor-logos {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center; gap: 24px;
}

.sponsor-logo {
  display: block; object-fit: contain;
  transition: transform 0.2s;
}
.sponsor-logo:hover { transform: translateY(-4px); }

.logo-gold   { max-height: 90px;  max-width: 220px; }
.logo-silver { max-height: 65px;  max-width: 160px; }
.logo-bronze { max-height: 45px;  max-width: 120px; }

.sponsor-empty {
  color: rgba(255,255,255,0.4); font-size: 13px;
  font-style: italic; text-align: center; padding: 12px 0;
}

/* ═══════════════════════════════════════════════
   MEDIA PARTNER
═══════════════════════════════════════════════ */
.mp-body  { padding: 60px 0 70px; }
.mp-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}

.mp-logos {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center; gap: 24px;
}

.mp-logo {
  display: block; object-fit: contain;
  max-height: 60px; max-width: 160px;
  transition: transform 0.2s;
}
.mp-logo:hover { transform: translateY(-4px); }

/* ═══════════════════════════════════════════════
   PLACEHOLDER GRADIENTS
═══════════════════════════════════════════════ */
.ph-1 { background: linear-gradient(135deg, #F985C5 0%, #6B2FD9 100%); }
.ph-2 { background: linear-gradient(135deg, #FFE500 0%, #3EE09A 100%); }
.ph-3 { background: linear-gradient(135deg, #3EE09A 0%, #87CEEB 100%); }
.ph-4 { background: linear-gradient(135deg, #6B2FD9 0%, #F985C5 100%); }
.ph-5 { background: linear-gradient(135deg, #87CEEB 0%, #FFE500 100%); }
.ph-6 { background: linear-gradient(135deg, #FF6B9D 0%, #6B2FD9 100%); }

/* ═══════════════════════════════════════════════
   ZOOM MODAL
═══════════════════════════════════════════════ */
.modal {
  display: none; position: fixed; inset: 0;
  z-index: 9999; align-items: center; justify-content: center;
}
.modal.open { display: flex; }

.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.82); backdrop-filter: blur(6px);
}
.modal-box {
  position: relative; z-index: 1;
  background: white; border-radius: 20px;
  padding: 28px; max-width: 680px; width: 92%;
  box-shadow: 0 32px 72px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  animation: modal-pop 0.28s var(--ease);
}
@keyframes modal-pop {
  from { transform: scale(0.84); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pink); color: white; border: none;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.2s, background 0.2s;
}
.modal-close:hover { background: #d42090; transform: scale(1.1) rotate(90deg); }
.modal-img-wrap { width: 100%; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; }
.modal-img-wrap > * { width: 100%; height: 100%; }
.modal-caption { font-family: 'Nunito'; font-weight: 700; font-size: 17px; color: var(--dark); }


/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 1024px
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { min-height: 70vh; }
  .hero-inner   { padding: 16px 32px 60px; gap: 80px; align-items: flex-start; }
  .hero-gif     { height: 400px; }
  .hero-tagline { height: 400px; }

  .car-slide    { flex: 0 0 calc(50% - 10px); }
  .perf-grid    { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .navbar-inner,
  .tickets-inner, .lineup-inner, .perf-inner,
  .gallery-inner, .footer-inner { padding-left: 28px; padding-right: 28px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 768px
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* ─ Page breathing room from screen edges ─ */
  body { padding: 0 10px; }
  /* Fixed elements stay full-width regardless of body padding */
  .navbar, .cloud-layer { margin: 0 -10px; width: calc(100% + 20px); }
  .marquee-bar { margin-left: -10px; margin-right: -10px; width: calc(100% + 20px); }

  /* ─ Navbar ─ */
  .navbar-inner { padding: 0 16px; }
  .hamburger { display: flex; }
  .nav-logo img { height: 42px; }

  .nav-menu {
    flex-direction: column; align-items: stretch;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--green);
    padding: 0; gap: 0; z-index: 999;
    max-height: 0; overflow: hidden;
    transition: max-height 0.38s var(--ease), box-shadow 0.38s;
  }
  .nav-menu.open { max-height: 600px; box-shadow: 0 12px 36px rgba(0,0,0,0.25); }

  .nav-link {
    padding: 16px 24px; border-radius: 0;
    font-size: 16px; border-bottom: 1px solid rgba(0,0,0,0.07);
  }

  /* Mobile dropdown via max-height */
  .dropdown {
    position: static !important;
    transform: none !important; opacity: 1 !important;
    pointer-events: all;
    box-shadow: none !important; border-radius: 0 !important;
    background: rgba(0,0,0,0.09); min-width: 100%;
    max-height: 0; overflow: hidden !important;
    transition: max-height 0.3s var(--ease) !important;
    display: block !important;
  }
  .dropdown::before { display: none !important; }
  .has-dropdown::before { display: none !important; }
  .has-dropdown .dropdown         { max-height: 0;     pointer-events: none; }
  .has-dropdown.open .dropdown    { max-height: 220px;  pointer-events: all; }
  .dropdown li a {
    padding: 13px 24px 13px 48px; font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    border-radius: 0 !important;
  }
  .dropdown li:last-child a { border-bottom: none; }

  /* ─ Hero — keep side-by-side, compact height ─ */
  .hero {
    min-height: auto;
    margin-left: -10px; margin-right: -10px;
    width: calc(100% + 20px);
  }
  .hero-inner {
    flex-direction: row; align-items: stretch;
    padding: 16px 20px 40px; gap: 24px;
  }
  .hero-left  { flex: 1; justify-content: flex-end; }
  .hero-right { flex: 1; align-items: flex-start; padding-right: 0; }
  .hero-gif     { height: 240px; }
  .hero-tagline { height: 240px; }
  .hero-event-info { align-items: flex-end; }

  /* ─ Marquee ─ */
  .marquee-bar { height: 52px; }
  .mq { font-size: 15px; letter-spacing: 2px; padding: 0 18px; }

  /* ─ Section backgrounds — full width, no gap ─ */
  .section-tickets,
  .section-lineup,
  .section-performance,
  .section-gallery,
  .section-sponsor,
  .section-mediapartner,
  .footer {
    background-size: 100% 100%;
    background-position: center top;
    margin-left: -10px; margin-right: -10px;
    width: calc(100% + 20px);
  }

  /* ─ Tickets — one row all screen sizes ─ */
  .tickets-inner { padding: 40px 20px; gap: 24px; }
  .tickets-row   { gap: 8px; flex-wrap: nowrap; justify-content: center; }
  .ticket-card   { flex: 1; min-width: 0; max-width: none; }
  .ticket-img    { width: 100%; max-width: none; }
  .ticket-cta    { font-size: 10px; padding: 7px 8px; white-space: nowrap; }

  /* ─ Lineup — 3 kolom grid di mobile ─ */
  .lineup-inner  { padding: 44px 16px; gap: 24px; }
  .carousel-wrap { gap: 0; }
  .carousel-viewport { flex: 0 0 100%; overflow: visible; }
  .carousel-track { flex-wrap: wrap; gap: 8px; transform: none !important; transition: none !important; }
  .car-slide     { flex: 0 0 calc(33.333% - 6px); }
  .car-btn       { display: none; }
  .carousel-dots { display: none; }
  .star-tl { width: 60px; top: 12px; left: 12px; }
  .star-br { width: 54px; bottom: 12px; right: 12px; }
  .section-title-img { max-width: 72%; }

  /* ─ Performance ─ */
  .perf-body  { padding: 44px 0; }
  .perf-inner { padding: 0 16px; gap: 28px; }
  .perf-grid  { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .perf-cap   { display: none; }

  /* ─ Gallery ─ */
  .gallery-body  { padding: 44px 0; }
  .gallery-inner { padding: 0 16px; gap: 24px; }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .gallery-header { justify-content: center; gap: 10px; flex-wrap: wrap; }
  .gal-title-img { width: 55%; max-width: 180px; }
  .brothers-img  { width: 55%; max-width: 180px; }
  .gallery-actions { gap: 12px; }
  .btn-green { font-size: 14px; padding: 12px 28px; }

  /* ─ Footer ─ */
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 24px; padding: 40px 16px;
  }
  .footer-right { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-copy {
    background: rgba(255,255,255,0.72);
    color: var(--dark); text-shadow: none;
    padding: 10px 20px; border-radius: 14px;
  }

  /* ─ Touch targets ─ */
  .ticket-cta, .btn-green, .btn-hero { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
  .soc-btn { width: 56px; height: 56px; }
  .dot     { width: 12px; height: 12px; }

  /* ─ Performance cards ─ */
  .perf-card { border-radius: 10px; }

  /* ─ Gallery ─ */
  .gal-item { border-radius: 10px; }

}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE ≤ 480px
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --nav-h: 56px; }

  .hero-inner { padding: 12px 12px 32px; gap: 6px; }
  .hero-gif     { height: 180px; }
  .hero-tagline { height: 180px; }
  .btn-hero { font-size: 14px; padding: 11px 28px; }

  .tickets-inner { padding: 32px 12px; }
  .tickets-row   { gap: 6px; }
  .ticket-cta    { font-size: 9px; padding: 6px 6px; }

  .perf-grid  { gap: 6px; }
  .perf-inner { padding: 0 12px; }

  .gallery-inner { padding: 0 12px; }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .gal-title-img, .brothers-img { width: 70%; }

  .lineup-inner  { padding: 36px 12px; }
  .carousel-track { gap: 6px; }
  .car-slide { flex: 0 0 calc(33.333% - 4px); }

  .mq { font-size: 13px; letter-spacing: 1px; padding: 0 12px; }
  .marquee-bar { height: 46px; }

  .soc-btn { width: 46px; height: 46px; }
  .soc-btn svg { width: 20px; height: 20px; }

  .footer-inner { padding: 32px 12px; gap: 20px; }
  .modal-box { padding: 18px; width: 96%; }
}
