/* Band Baja Barat - Static Site Styles */
@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&family=Prata&display=swap");
@import url('https://fonts.googleapis.com/css2?family=ADLaM+Display&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Great+Vibes&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rozha+One&family=Wallpoet&display=swap');

:root {
  --logo-color: #674034;
  --brown-color: #640909;
  --cream-color: #f2e5d9;
  --mukta-font: "Mukta", sans-serif;
  --prata-font: "Prata", serif;
  --great-vibes: "Great Vibes", cursive;
  --brown-color-10: #6409091a;
}

* {
  font-family: var(--mukta-font);
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body, html {
  padding: 0;
  margin: 0;
}

.great-vibes-font { font-family: var(--great-vibes); }
.margin-top { margin-top: 72px; }

/* Header */
.header-wrapper {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 0 5px 1px rgba(0,0,0,0.1);
}
.header-contain {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-col { display: flex; align-items: center; justify-content: flex-end; height: 100%; }
.header-link-logo { height: 70%; }
.header-logo { height: 100%; aspect-ratio: 1; display: block; }
.header-link {
  display: none;
  margin-left: 1.5rem;
  position: relative;
  transition: all 0.5s;
  font-weight: 400;
  letter-spacing: 0.25px;
  color: var(--logo-color);
  text-decoration: none;
}
.header-link::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--logo-color);
  transition: all 0.5s;
}
.header-link:hover::after {
  left: 0;
  width: 100%;
}
.header-hamburger, .header-contact-btn {
  display: inline-block;
  margin-left: 0.75rem;
  color: var(--logo-color);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  padding: 4px;
}
@media (min-width: 1024px) {
  .header-link { display: inline-block; }
  .header-hamburger { display: none; }
}

/* Splash / Carousel */
.splash-section { overflow: hidden; }
.splash-div { width: 100vw; }
.splash-image { width: 100vw; max-width: 100%; display: block; object-fit: cover; }
.splash-track { display: flex; transition: transform 0.5s ease; }
.splash-slide { flex: 0 0 100%; min-width: 100%; }

/* About section */
.about-wrapper {
  width: 100%;
  padding: 1.5rem 0;
  background: var(--brown-color-10);
}
@media (min-width: 1024px) { .about-wrapper { padding: 3rem 0; } }
@media (min-width: 1280px) { .about-wrapper { padding: 4rem 0; } }
.about-inner { width: 95%; max-width: 1200px; margin: 0 auto; }
.about-flexbox { width: 100%; }
@media (min-width: 1024px) { .about-flexbox { display: flex; } }
.about-col1 { width: 100%; display: flex; align-items: center; padding: 1.5rem; }
@media (min-width: 1024px) { .about-col1 { padding: 2.25rem; } }
.about-col2 { width: 100%; padding: 1.5rem; }
.about-small-title {
  display: inline-block;
  padding-top: 0.5rem;
  border-top: 2px solid var(--brown-color);
  text-transform: uppercase;
  color: #6b7280;
  font-size: 0.875rem;
}
.about-title {
  font-family: var(--great-vibes);
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--brown-color);
}
@media (min-width: 1024px) { .about-title { font-size: 2.25rem; font-weight: 600; } }
.about-subtitle {
  font-family: var(--prata-font);
  margin-top: 0.5rem;
  font-size: 1.125rem;
  color: #374151;
}
@media (min-width: 1024px) { .about-subtitle { font-size: 1.25rem; } }
.about-desc-wrap { margin: 1.5rem 0; }
.about-desc { margin: 0.75rem 0; color: #6b7280; text-align: justify; }
.about-image { width: 500px; max-width: 100%; margin: 0 auto; display: block; }

/* Exhibitions */
.exhibitions-wrapper { width: 100%; }
.exhibitions-inner { width: 100%; }
.exhibitions-row { display: flex; flex-wrap: wrap; }
.exhibitions-col1 {
  padding: 1.5rem;
  background: #fff;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) { .exhibitions-col1 { width: 50%; flex: 0 0 50%; } }
.exhibitions-col1-inner { width: 100%; max-width: 500px; margin: 0 auto; }
.exhibitions-small-title {
  display: inline-block;
  padding-top: 0.5rem;
  border-top: 2px solid var(--brown-color);
  text-transform: uppercase;
  color: #6b7280;
  font-size: 0.875rem;
}
.exhibitions-title {
  font-family: var(--great-vibes);
  margin-top: 1.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--brown-color);
}
@media (min-width: 1024px) { .exhibitions-title { font-size: 3rem; font-weight: 600; } }
.exhibitions-tabs { padding: 1.5rem 0; position: sticky; top: 15%; }
.exhibitions-tab {
  margin: 1rem 0;
  text-align: justify;
  color: var(--brown-color);
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--brown-color);
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.7s;
}
.exhibitions-tab span { font-family: var(--prata-font); }
.exhibitions-tab:hover, .exhibitions-tab.active {
  background: var(--logo-color);
  color: #fff;
}
.exhibitions-carousel-wrap { position: relative; display: block; }
@media (min-width: 1024px) { .exhibitions-carousel-wrap { width: 50%; flex: 0 0 50%; } }
.exhibitions-image { width: 100%; display: block; object-fit: cover; }

/* About team / Founder */
.about-team-wrapper {
  width: 100%;
  padding: 1.5rem 0;
  background: var(--brown-color-10);
}
@media (min-width: 1024px) { .about-team-wrapper { padding: 3rem 0; } }
@media (min-width: 1280px) { .about-team-wrapper { padding: 4rem 0; } }
.about-team-inner { width: 95%; max-width: 1200px; margin: 0 auto; }
.about-team-flexbox { width: 100%; }
@media (min-width: 1024px) { .about-team-flexbox { display: flex; } }
.about-team-col1 { width: 100%; display: flex; align-items: center; padding: 1.5rem; }
.about-team-col2 { width: 100%; padding: 1.5rem; }
.about-team-image { width: 400px; max-width: 95%; margin: 0 auto; display: block; }
.about-team-mobile-head { display: block; margin-bottom: 2.5rem; }
.about-team-desktop-head { display: none; }
@media (min-width: 1080px) {
  .about-team-mobile-head { display: none; }
  .about-team-desktop-head { display: block; }
}
.about-team-small-title {
  display: inline-block;
  padding-top: 0.5rem;
  border-top: 2px solid var(--brown-color);
  text-transform: uppercase;
  color: #6b7280;
  font-size: 0.875rem;
}
.about-team-title {
  font-family: var(--great-vibes);
  margin-top: 1.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--brown-color);
}
@media (min-width: 1024px) { .about-team-title { font-size: 3rem; font-weight: 600; } }

/* Reviews (Exhibitors testimonial) */
.reviews-wrapper {
  width: 100%;
  padding: 2rem 0;
  background: #fff;
}
@media (min-width: 1024px) { .reviews-wrapper { padding: 3rem 0; } }
.reviews-inner { width: 95%; max-width: 1200px; margin: 0 auto; }
.reviews-flexbox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 1024px) {
  .reviews-flexbox { flex-wrap: nowrap; gap: 2rem; }
  .reviews-col1 { width: 50%; flex: 0 0 50%; padding: 1.5rem 1.5rem 1.5rem 0; }
  .reviews-col2 { width: 50%; flex: 0 0 50%; padding: 1.5rem 0 1.5rem 1.5rem; display: flex; justify-content: center; align-items: center; }
}
.reviews-col1 { width: 100%; padding: 1.5rem; }
.reviews-col2 { width: 100%; padding: 1.5rem; display: flex; justify-content: center; }
.reviews-video-wrap {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
/* Rounded frame for video only */
.reviews-video-frame {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* Clickable carousel: one video at a time with prev/next arrows */
.reviews-video-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.reviews-video-carousel .review-videos {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.reviews-video-carousel .review-videos.hidden { display: none; }
.reviews-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0 0;
  width: 100%;
}
.reviews-carousel-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid #9ca3af;
  background: #fff;
  color: #374151;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.reviews-carousel-btn:hover {
  background: #f3f4f6;
  border-color: #6b7280;
  color: #111;
}
.reviews-video-wrap .review-videos { border-radius: 0; }
.review-videos {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

/* Visitor reviews (Visitors testimonial) */
.visitor-reviews-wrapper {
  width: 100%;
  padding: 2rem 0;
  background: #fff;
}
@media (min-width: 1024px) { .visitor-reviews-wrapper { padding: 3rem 0; } }
.visitor-reviews-inner { width: 95%; max-width: 1200px; margin: 0 auto; }
.visitor-reviews-flexbox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 1024px) {
  .visitor-reviews-flexbox { flex-wrap: nowrap; gap: 2rem; }
  .visitor-reviews-col1 { width: 50%; flex: 0 0 50%; padding: 1.5rem 0 1.5rem 1.5rem; order: 2; }
  .visitor-reviews-col2 { width: 50%; flex: 0 0 50%; padding: 1.5rem 1.5rem 1.5rem 0; order: 1; display: flex; justify-content: center; align-items: center; }
}
.visitor-reviews-col1 { width: 100%; padding: 1.5rem; }
.visitor-reviews-col2 { width: 100%; padding: 1.5rem; display: flex; justify-content: center; }
.visitor-reviews-col2 .reviews-video-wrap { max-width: 320px; }

/* Gallery */
.gallery-wrapper {
  width: 100%;
  padding: 1.5rem 0;
  background: var(--brown-color-10);
  position: relative;
  overflow: hidden;
}
.gallery-inner { width: 95%; max-width: 1200px; margin: 0 auto; }
.gallery-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .gallery-header { margin-bottom: 3rem; } }
.gallery-small-title {
  display: inline-block;
  padding-top: 0.5rem;
  border-top: 2px solid var(--brown-color);
  text-transform: uppercase;
  color: #6b7280;
  font-size: 0.875rem;
}
.gallery-title {
  font-family: var(--great-vibes);
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--brown-color);
}
@media (min-width: 1024px) { .gallery-title { font-size: 2.25rem; font-weight: 600; } }
.gallery-desc-wrap { margin: 1.5rem auto; max-width: 48rem; }
.gallery-desc { margin: 0.75rem 0; color: #6b7280; text-align: justify; }
@media (min-width: 1024px) { .gallery-desc { text-align: center; } }
.gallery-grid {
  padding: 1rem;
  column-count: 1;
  column-gap: 1rem;
}
@media (min-width: 640px) { .gallery-grid { column-count: 2; column-gap: 1.25rem; } }
@media (min-width: 768px) { .gallery-grid { column-count: 3; column-gap: 1.5rem; } }
@media (min-width: 1024px) { .gallery-grid { column-count: 4; column-gap: 1.5rem; } }
@media (min-width: 1280px) { .gallery-grid { column-count: 5; column-gap: 2rem; } }
.gallery-item {
  cursor: pointer;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  background: var(--cream-color);
  transition: all 0.4s;
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 1rem;
}
.gallery-item:last-child { margin-bottom: 0; }
.gallery-item:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.gallery-item img { width: 100%; height: auto; display: block; vertical-align: top; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
/* Gallery modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.gallery-modal[aria-hidden="false"] { display: flex; }
.gallery-modal-content { position: relative; max-width: 80rem; max-height: 90vh; }
.gallery-modal-close {
  position: absolute;
  top: -4rem;
  right: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.gallery-modal-prev, .gallery-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal-prev { left: -5rem; }
.gallery-modal-next { right: -5rem; }
@media (max-width: 768px) { .gallery-modal-prev { left: -1rem; } .gallery-modal-next { right: -1rem; } }
.gallery-modal img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 0.5rem; }
.gallery-modal-counter {
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: inline-block;
  width: auto;
  margin: 0 auto;
  font-family: var(--prata-font);
}

/* Join */
.join-wrapper { width: 100vw; padding: 3rem 0; }
.join-flexbox { width: 95%; max-width: 1200px; margin: 0 auto; }
@media (min-width: 1024px) { .join-flexbox { display: flex; align-items: center; } }
.join-col1, .join-col2 { width: 100%; padding: 1.5rem; }
.join-col2 { display: flex; align-items: center; }
.join-title {
  font-family: var(--great-vibes);
  margin-top: 1.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--brown-color);
}
@media (min-width: 1024px) { .join-title { font-size: 3rem; font-weight: 600; } }
.join-benefits { padding: 1rem 0; }
.join-benefit { margin: 0.5rem 0; font-size: 1.125rem; color: #4b5563; }
.join-benefit::before { content: "✓ "; color: var(--brown-color); margin-right: 0.5rem; }
.join-btn-wrap { padding: 0.75rem 0; }
.join-btn {
  padding: 0.25rem 1.25rem;
  border: 1px solid transparent;
  background: var(--brown-color);
  color: #fff;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.7s;
}
.join-btn:hover {
  background: transparent;
  border-color: var(--logo-color);
  color: var(--brown-color);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.join-col1 img { max-width: 100%; height: auto; display: block; }

/* Contact splash */
.contact-splash-wrapper { width: 100%; position: relative; }
.contact-splash-map { width: 100%; height: 300px; position: relative; overflow: hidden; }
@media (min-width: 1024px) { .contact-splash-map { height: 350px; } }
.contact-splash-map::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  background: linear-gradient(to bottom, transparent, var(--brown-color-10));
  pointer-events: none;
}
.contact-splash-map iframe { width: 100%; height: 100%; border: 0; }
.contact-splash-content { width: 100%; padding: 1rem 0; background: var(--brown-color-10); }
@media (min-width: 1024px) { .contact-splash-content { padding: 2rem 0; } }
.contact-splash-inner { width: 95%; max-width: 1200px; margin: 0 auto; }
.contact-splash-title {
  font-family: var(--great-vibes);
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--brown-color);
  text-align: center;
  margin-bottom: 1.25rem;
}
@media (min-width: 1024px) { .contact-splash-title { font-size: 1.875rem; font-weight: 600; } }
@media (min-width: 1280px) { .contact-splash-title { font-size: 2.25rem; } }
.contact-splash-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .contact-splash-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.contact-splash-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
  border-top: 3px solid var(--brown-color);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-top-width 0.35s ease;
}
.contact-splash-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(139, 90, 60, 0.2), 0 12px 24px -8px rgba(139, 90, 60, 0.12);
  border-top-width: 4px;
}
.contact-splash-card-title {
  font-family: var(--prata-font);
  font-size: 1rem;
  color: #374151;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.contact-splash-card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--brown-color);
  transition: width 0.4s ease;
}
.contact-splash-card:hover .contact-splash-card-title::after {
  width: 100%;
}
.contact-splash-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #6b7280;
  text-decoration: none;
  padding: 0.5rem 0.625rem;
  border-radius: 0.5rem;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.contact-splash-item:hover {
  color: var(--brown-color);
  background: var(--brown-color-10);
  transform: translateX(6px);
}
.contact-splash-item:hover .contact-splash-icon {
  transform: scale(1.08);
  background: rgba(139, 90, 60, 0.18);
}
.contact-splash-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brown-color-10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brown-color);
  transition: transform 0.25s ease, background 0.25s ease;
}
.contact-splash-icon-svg svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}
.contact-splash-socials { display: flex; flex-direction: column; gap: 0.625rem; }
.contact-splash-social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6b7280;
  text-decoration: none;
  padding: 0.5rem 0.625rem;
  border-radius: 0.5rem;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.contact-splash-social-link:hover {
  color: var(--brown-color);
  background: var(--brown-color-10);
  transform: translateX(6px);
}
.contact-splash-social-link:hover .contact-splash-icon {
  transform: scale(1.08);
  background: rgba(139, 90, 60, 0.18);
}
.contact-splash-copyright {
  text-align: center;
  color: #9ca3af;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.875rem;
  font-family: var(--prata-font);
}

/* Footer */
.footer-wrapper { padding: 3rem 0; background: #d9957899; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.footer-flexbox { padding: 1rem; }
@media (min-width: 1024px) { .footer-flexbox { display: flex; } }
.footer-col1 { padding: 1rem; }
@media (min-width: 1024px) { .footer-col1 { width: 40%; } }
.footer-col2, .footer-col3 { padding: 1rem; }
@media (min-width: 1024px) { .footer-col2, .footer-col3 { width: 30%; } }
.footer-follow {
  font-family: var(--prata-font);
  font-size: 1.875rem;
  color: var(--logo-color);
  margin-bottom: 1rem;
}
.footer-upcoming { padding: 0.75rem 0; }
.footer-exhibition-title {
  font-family: var(--prata-font);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--logo-color);
  margin-bottom: 0.75rem;
}
.footer-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--logo-color);
  margin-bottom: 0.5rem;
}
.footer-detail-icon { font-size: 1.125rem; margin-top: 0.125rem; flex-shrink: 0; }
.footer-exhibition-desc { font-size: 0.875rem; color: #374151; margin-top: 0.75rem; line-height: 1.625; }
.footer-explore {
  font-family: var(--prata-font);
  font-size: 1.25rem;
  color: var(--logo-color);
  margin-bottom: 0.75rem;
}
.footer-links a {
  display: block;
  color: var(--logo-color);
  text-decoration: none;
  margin: 0.125rem 0;
  transition: all 0.7s;
}
.footer-links a:hover { color: #000; }
.footer-social-wrap { display: flex; align-items: center; padding: 0.75rem 0; }
.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--logo-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.7s;
}
.footer-social-link:hover { background: #fff; color: var(--logo-color); }

/* Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 350px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  padding: 1.5rem;
  overflow-y: auto;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.drawer-panel.open { transform: translateX(0); }
.drawer-close {
  width: 32px;
  aspect-ratio: 1;
  border: 1px solid var(--brown-color);
  background: #fff;
  color: var(--brown-color);
  border-radius: 0.375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: all 0.7s;
}
.drawer-close:hover { background: var(--brown-color); color: #fff; border-color: transparent; }
.drawer-title {
  font-family: var(--great-vibes);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brown-color);
  margin-bottom: 1rem;
}
.drawer-divider { height: 1px; width: 100%; background: #e5e7eb; margin: 1.5rem 0; }
.drawer-banner { margin: 0.75rem 0; }
.drawer-banner img { width: 100%; height: auto; display: block; }
.drawer-desc { font-size: 1rem; color: #374151; margin-bottom: 0.5rem; }
.drawer-register-btn {
  min-width: 200px;
  max-width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  background: var(--brown-color);
  color: #fff;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.7s;
  display: block;
  margin: 1.25rem auto;
  text-align: center;
}
.drawer-register-btn:hover {
  background: transparent;
  border-color: var(--brown-color);
  color: var(--brown-color);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.drawer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #374151;
  text-decoration: none;
}
.drawer-contact-item .icon { margin-right: 0.5rem; color: var(--brown-color); font-size: 1.25rem; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
.drawer-contact-item .icon-svg svg { display: block; width: 1.25rem; height: 1.25rem; fill: currentColor; }
.drawer-register-choice {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.drawer-register-choice a {
  padding: 0.25rem 0.75rem;
  background: var(--brown-color);
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
}

/* Form pages (visitor, register, download-pass) */
.form-page-wrapper { width: 95%; max-width: 1000px; margin: 0 auto; padding: 3rem 0; }
.form-page-title { font-family: var(--prata-font); text-align: center; font-size: 3rem; color: var(--logo-color); }
.form-page-subtitle { font-family: var(--prata-font); text-align: center; font-size: 1.5rem; margin-top: 0.75rem; margin-bottom: 1.5rem; color: #374151; }
.form-box {
  width: 95%;
  max-width: 600px;
  padding: 1.5rem 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  border-radius: 0.5rem;
  margin: 0 auto;
  border: 1px solid #e5e7eb;
  background: #fff;
}
.form-title { font-family: var(--prata-font); text-align: center; font-size: 1.5rem; margin-bottom: 1rem; }
.form-wrapper { padding: 1.5rem 0; }
.form-group { margin-bottom: 1rem; }
.form-label { font-family: var(--prata-font); font-size: 1.125rem; font-weight: 300; display: block; margin-bottom: 0.25rem; }
.form-input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  font-size: 1rem;
}
.form-input:focus { outline: none; border-color: var(--logo-color); }
.form-row { display: flex; flex-wrap: wrap; margin: 0 -0.5rem; }
.form-row .form-group { flex: 1 1 calc(50% - 1rem); min-width: 200px; margin: 0 0.5rem 1rem; }
.form-submit {
  padding: 0.25rem 1.25rem;
  border: 1px solid transparent;
  background: var(--brown-color);
  color: #fff;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.7s;
}
.form-submit:hover {
  background: transparent;
  border-color: var(--logo-color);
  color: var(--brown-color);
}
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-message { padding: 0.75rem; border-radius: 0.375rem; margin: 1rem 0; }
.form-message.success { background: #f6ffed; border: 1px solid #b7eb8f; color: #52c41a; }
.form-message.error { background: #fff2f0; border: 1px solid #ffccc7; color: #cf1322; }

/* View pass page */
.view-pass-wrapper { padding: 2rem; }
.view-pass-wrapper h1 { text-align: center; margin-bottom: 2rem; font-family: var(--prata-font); }
.view-pass-wrapper img { max-width: 100%; height: auto; display: block; margin: 0 auto; border-radius: 0.5rem; }

/* Home wrapper */
.home-wrapper { width: 100vw; }
