:root {
  --bg: #f7f3ee;
  --surface: #ffffff;
  --text: #222222;
  --muted: #6d4c41;
  --accent: rgba(0,179,9);
  --accent-dark: #6d4c41;
  --gold: rgba(0,179,9);
  --border: rgba(34, 34, 34, 0.08);
  --shadow: 0 18px 45px rgba(34, 34, 34, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, #fdf8f3 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-tag,
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  font-size: 0.8rem;
  color: black;
}

h1,
h2,
h3 {
  line-height: 1.1;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
}

.navbar {
  width: min(1160px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(34, 34, 34, 0.08);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(34, 34, 34, 0.08);
  box-shadow: 0 10px 30px rgba(34, 34, 34, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 20%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-links a,
.dropdown-toggle {
  position: relative;
  padding: 0.2rem 0;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: none;
}

.nav-links a::after,
.dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.dropdown-toggle:hover::after,
.dropdown-toggle[aria-expanded='true']::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  min-width: 180px;
  padding: 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(34, 34, 34, 0.06);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  padding: 0.35rem 0.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(34, 34, 34, 0.16);
}

.btn-sm {
  padding: 0.7rem 1.1rem;
}

.nav-toggle {
  display: none;
}

.btn-primary {
  background: linear-gradient(135deg, rgb(0, 153, 255), rgb(0, 179, 0));
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-color: rgba(255, 255, 255, 0.25);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 7rem 1.2rem 4rem;
  background:url('../img/logo.png') center/cover no-repeat;
  color: white;
  isolation: isolate;
  background-size: 80%;
  background-color: #fdf8f3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 34, 34, 0.75), rgba(34, 34, 34, 0.35));
  z-index: -1;
}

.hero-content {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 660px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
}

.scroll-indicator span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: white;
  animation: scrollPulse 1.8s infinite;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.shape-one {
  width: 180px;
  height: 180px;
  top: 12%;
  right: 8%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
}

.shape-two {
  width: 220px;
  height: 220px;
  bottom: 8%;
  left: 2%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}

.intro-grid,
.location-grid,
.venue-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.intro-copy p,
.location-copy p,
.faq-copy p,
.cta-card p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.intro-media img,
.location-map img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.districts-strip {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(34, 34, 34, 0.06);
}

.district-copy h2 {
  margin-bottom: 1.2rem;
}

.district-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.district-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(138, 90, 68, 0.08);
  color: var(--accent-dark);
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.stat-card,
.zone-card,
.product-card,
.traffic-card,
.timeline-card,
.cta-card,
.testimonial {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 2rem 1.4rem;
  text-align: center;
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--accent-dark);
}

.zones-grid,
.products-grid,
.traffic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.zone-card,
.product-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zone-card:hover,
.product-card:hover,
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(34, 34, 34, 0.16);
}

.zone-card img,
.product-card img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zone-card:hover img,
.product-card:hover img,
.gallery-item:hover img {
  transform: scale(1.04);
}

.zone-content,
.product-content {
  padding: 1.2rem;
}

.badge {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.18);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.filter-btn {
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.4s ease;
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(34, 34, 34, 0.8));
  color: white;
  font-weight: 600;
}

.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--gold), var(--accent));
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.4rem;
}

.timeline-dot {
  position: absolute;
  left: 8px;
  top: 1rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(138, 90, 68, 0.16);
}

.timeline-card {
  padding: 1.2rem 1.4rem;
}

.traffic-card,
.schedule-card,
.theme-card {
  padding: 1.5rem;
}

.schedule-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.traffic-icon {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.schedule-grid,
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.venue-map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.venue-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.venue-item {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
}

.faq-list details {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.testimonial-slider {
  max-width: 720px;
  margin: 0 auto;
}

.testimonial {
  padding: 2rem;
  text-align: center;
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial img {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
}

.cta-card {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(138, 90, 68, 0.95), rgba(109, 76, 65, 0.95));
  color: white;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  background: #1f1a17;
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 1.6rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.site-footer h3 {
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
  z-index: 1100;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(34, 34, 34, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 2200;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: min(940px, 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lightbox-content img {
  max-height: 80vh;
  object-fit: contain;
  background: white;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
}

.loading-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #fff, var(--bg));
  display: grid;
  place-items: center;
  z-index: 2000;
  transition: opacity 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-ring {
  width: 64px;
  height: 64px;
  border: 4px solid rgba(138, 90, 68, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.container5555{
  width: 100%;
  padding: 50px 20px;
}

.event-box{
  width: 100%;
  text-align: center;     
  margin-bottom: 80px;  
}

.event-box h2{
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.event-box h2::after{
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #00c853;
  margin: 15px auto 0;   
}

.event-box p{
  font-size: 22px;
  color: #444;
}
.container333{
  width:95%;
  max-width:1200px;
  margin:auto;
  padding:20px;
}

.top-images{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-bottom:20px;
}

.top-images img{
  width:100%;
  height:auto;
  display:block;
}

/* bawah */
.bottom-content{
  display:flex;
  gap:20px;
  align-items:flex-start;
}

.main-image{
  flex:3;
}

.main-image img{
  width:100%;
  height:auto;
  display:block;
}

.legend{
  flex:1;
  background:white;
  padding:20px;
}

.legend h4{
  margin-bottom:20px;
  text-align:center;
}

.item{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:15px;
}

.box{
  width:30px;
  height:30px;
  border:1px solid black;
}

.indoor{
  background:white;
  border:4px solid black;
}

.merah{
  background:red;
}

.kuning{
  background:yellow;
}

.putih{
  background:#eee;
}

.ungu{
  background:violet;
}


@media (max-width:768px){

  .top-images{
      grid-template-columns:1fr;
  }

  .bottom-content{
      flex-direction:column;
  }

  .legend{
      width:100%;
  }
}
.stage{
  grid-column: span 2; 
} 