/* Import new luxury fonts */
@import url('https://fonts.googleapis.com/css?family=Poppins:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Inter:400,500,700&display=swap');

:root {
  --black: #181818;
  --gold: #D4AF37;
  --offwhite: #F5F5F5;
  --gray: #888;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--black);
  color: var(--offwhite);
  font-size: 1.08em;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5em;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 2.5em;
  letter-spacing: 2px;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.4em;
}

section, .cover, .cover-slider, .cover-slide {
  background: var(--black);
}

.cover h1, .cover-title {
  color: var(--gold);
  font-size: 2.2em;
  text-shadow: 0 2px 12px #000a;
}

p, li, .faq-answer, .testimonial-content, .contact-info, .privacy-content {
  color: var(--offwhite);
  font-size: 1.08em;
}

.btn-book {
  background: var(--gold);
  color: var(--black);
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  padding: 0.7em 2em;
  font-size: 1.08em;
  transition: background 0.2s;
}
.btn-book:hover {
  background: #C28811;
  color: var(--offwhite);
}

header {
    background: rgba(0,0,0,0.92);
    padding: 1em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Oswald', Arial, sans-serif;
    letter-spacing: 1.5px;
    position: relative;
}

.logo {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.logo img {
    height: 48px;
    max-width: 120px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
}

.hamburger {
    margin-right: 1em;
}

nav#main-nav {
    flex: 2 1 auto;
    display: flex;
    gap: 1.5em;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1.18em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    justify-content: flex-start;
}

nav#main-nav a {
    color: #fff;
    text-decoration: none;
    position: relative;
    padding: 0.2em 0.5em;
    transition: color 0.2s;
    display: inline-block;
    text-align: left;
}
nav#main-nav a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: var(--gold);
    border-radius: 1px;
    transition: width 0.3s;
    margin: 0 auto;
}
nav#main-nav a:hover, nav#main-nav a:focus {
    color: var(--gold);
}
nav#main-nav a:hover::after, nav#main-nav a:focus::after {
    width: 100%;
}

.about, .portfolio, .testimonials {
    text-align: center;
}

.about p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 1em auto 2em auto;
}

.artists {
    text-align: center;
    padding: 1em 0.5em;
    background: #181818;
}

/* Grid default (desktop/tablet) */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive untuk mobile */
@media (max-width: 600px) {
  .artist-grid {
    grid-template-columns: 1fr;
    gap: 0.7em;
  }
}

.artist-card {
    background: #181818;
    border: 1.5px solid #222;
    box-shadow: 0 2px 12px #0007;
    padding: 1.5em 1em 1em 1em;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.artist-card:hover {
    border: 2px solid var(--gold-hover);
    box-shadow: 0 4px 16px #000a;
}
.artist-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f8a531;
    margin-bottom: 1em;
    background: #111;
    max-width: 100%;
    height: auto;
    display: block;
}
.artist-card h3 {
    color: #f8a531;
    margin: 0;
    font-size: 1.1em;
    letter-spacing: 1px;
    font-family: 'Oswald', Arial, sans-serif;
    text-transform: uppercase;
}

.portfolio .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5em;
    justify-items: center;
    margin-top: 2em;
}

.portfolio img {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 2px 12px #0007;
    border: 1.5px solid #222;
    background: #181818;
    transition: border 0.2s, box-shadow 0.2s;
}

.portfolio img:hover {
    border: 2px solid var(--gold-hover);
    box-shadow: 0 4px 16px #000a;
}

.swiper {
    width: 100%;
    padding-top: 20px;
}

.swiper-slide {
    background: #222;
    padding: 2em;
    border-radius: 10px;
    font-size: 1.1em;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    background: #f8a531;
}

footer {
    text-align: center;
    padding: 2em;
    background: #000;
    color: #aaa;
    font-size: 1em;
}

footer p {
  font-size: 0.75em;
}
footer p span {
  font-size: 0.75em !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 32px;
  height: 32px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #f8a531;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 900px) {
  header {
    flex-direction: row;
    align-items: center;
    padding: 1em 1em;
    position: relative;
  }
  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    justify-content: center;
    flex: none;
    z-index: 1050;
  }
  .logo img {
    height: 38px;
    max-width: 90px;
  }
  .nav-wrapper {
    order: 1;
    flex: 0 0 auto;
  }
  .hamburger {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1101;
    margin: 0;
    display: flex;
  }
  nav#main-nav {
    position: absolute;
    top: 48px;
    left: 24px;
    background: #181818;
    flex-direction: column;
    align-items: flex-start;
    width: calc(180px - 24px);
    box-shadow: 0 4px 16px #0008;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s, opacity 0.3s;
    z-index: 1200;
    padding: 0.7em 0;
  }
  nav#main-nav.open {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
    z-index: 1200;
  }
  nav#main-nav a {
    width: 100%;
    text-align: left;
    padding: 1.2em 2em;
    border-bottom: 1px solid #222;
    font-size: 1.08em;
    box-sizing: border-box;
  }
  .btn-book {
    order: 3;
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  nav#main-nav {
    left: 16px;
    width: calc(100vw - 32px);
    min-width: 0;
    max-width: 320px;
  }
  nav#main-nav a {
    padding: 1em 1.5em;
    font-size: 1.08em;
  }
}
@media (max-width: 600px) {
  .whatsapp-left, .back-to-top {
    width: 44px;
    height: 44px;
    font-size: 1.3em;
    right: 16px;
    left: 16px;
    bottom: 16px;
  }
  .whatsapp-left {
    left: 16px;
    right: auto;
  }
  .back-to-top {
    right: 16px;
    left: auto;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  background: #25d366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px #0005;
  transition: background 0.2s, transform 0.2s;
}
.whatsapp-float:hover {
  background: #1ebe57;
  transform: scale(1.08);
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-left {
  left: 24px;
  right: auto;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #181818;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px #0005;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.back-to-top:hover {
  background: var(--gold);
  color: #181818;
  transform: scale(1.08);
}
@media (max-width: 600px) {
  .whatsapp-left, .back-to-top {
    width: 44px;
    height: 44px;
    font-size: 1.3em;
    right: 16px;
    left: 16px;
    bottom: 16px;
  }
  .whatsapp-left {
    left: 16px;
    right: auto;
  }
  .back-to-top {
    right: 16px;
    left: auto;
  }
}
@media (max-width: 500px) {
  header {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5em 0.5em;
    min-height: unset;
  }
  .logo {
    position: static;
    transform: none;
    margin: 0 auto 10px auto;
    justify-content: center;
    flex: none;
    z-index: 1050;
    order: 1;
  }
  .logo img {
    height: 32px;
    max-width: 80px;
  }
  .btn-book {
    width: 100%;
    margin: 0 auto 8px auto;
    display: block;
    order: 3;
  }
  .nav-wrapper, .hamburger {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    order: 2;
  }
}
.location-section {
  background: #181818;
  padding: 3em 1em 2em 1em;
  text-align: center;
}
.location-section h2 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 1em;
  letter-spacing: 2px;
}
.location-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.map-contact {
  background: #181818;
  border-radius: 16px;
  box-shadow: 0 2px 16px #0007;
  padding: 2em 2em 1.5em 2em;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.map-contact iframe {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.2em;
}
.contact-info {
  text-align: left;
  margin-bottom: 1.2em;
}
.contact-info p {
  margin: 0.3em 0;
  font-size: 1.08em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.contact-info i {
  color: var(--gold);
  min-width: 22px;
  text-align: center;
  font-size: 1.1em;
}
.contact-info a {
  color: #fff;
  text-decoration: none;
  word-break: break-all;
}
.contact-info a:hover {
  color: #f5f5f5;
  text-decoration: underline;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.2em;
  margin-top: 0.7em;
}
.social-links a {
  font-size: 2em;
  transition: color 0.2s, transform 0.2s;
}
.social-links a[title="Facebook"] i {
  color: #1877F3;
}
.social-links a[title="Instagram"] i {
  color: #E4405F;
}
.social-links a[title="TikTok"] i {
  color: #000;
  background: linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%);
  border-radius: 5px;
  padding: 0;
  font-size: 1em;
  line-height: 1;
  vertical-align: middle;
  margin-top: 2px;
}
.social-links a i {
  line-height: 1;
  vertical-align: middle;
}
.social-links a[title="YouTube"] i {
  color: #FF0000;
}
.social-links a:hover {
  color: var(--gold);
  transform: scale(1.15);
}
@media (max-width: 700px) {
  .map-contact {
    padding: 1.2em 0.5em 1em 0.5em;
    max-width: 100%;
  }
  .location-section {
    padding: 2em 0.5em 1.2em 0.5em;
  }
}

/* VFX & Animasi */
.fade-in {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.8s cubic-bezier(.4,2,.3,1), transform 0.8s cubic-bezier(.4,2,.3,1);
}
section, .portfolio .gallery a, .artist-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,2,.3,1), transform 0.8s cubic-bezier(.4,2,.3,1);
}

.portfolio img, .btn-book, .artist-card {
  transition: box-shadow 0.3s, border-color 0.3s, filter 0.3s;
}
.portfolio img:hover, .btn-book:hover, .artist-card:hover {
  box-shadow: 0 0 32px 0 var(--gold), 0 2px 12px #0007;
  filter: brightness(1.08) drop-shadow(0 0 8px var(--gold));
  border-color: var(--gold);
}

.artist-card {
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(#222, #222), linear-gradient(120deg, #f8a531, #fff, #f8a531 80%);
  box-shadow: 0 2px 12px #0007;
  position: relative;
  z-index: 1;
}

#tsparticles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.cover {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/7; /* Area cover proporsional, bisa diubah sesuai selera */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  max-height: 600px;
}

.cover-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cover-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s;
  z-index: 1;
  background: #111; /* fallback jika gambar gagal load */
}

.cover-slide.active {
  opacity: 1;
  z-index: 2;
}

.cover h1, #tsparticles, .cover-bg {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
}

@media (max-width: 900px) {
  .cover {
    aspect-ratio: 16/10;
    min-height: 140px;
    max-height: 320px;
  }
}

@media (max-width: 600px) {
  .cover {
    aspect-ratio: 16/13;
    min-height: 100px;
    max-height: 200px;
  }
  .cover h1 {
    font-size: 1.2em;
    padding: 0 0.5em;
  }
}

/* Testimonial Carousel Centering & Avatar */
.testimonials .swiper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.testimonial-content {
  display: flex;
  align-items: center;
  gap: 1em;
  background: #222;
  border-radius: 16px;
  padding: 1.5em 1em;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d4af37;
  background: #fff;
}

.testimonial-content p {
  margin: 0 0 0.5em 0;
  color: #fff;
  font-size: 1em;
  text-align: left;
}

.testimonial-name {
  color: #d4af37;
  font-size: 0.95em;
  font-weight: bold;
}

.testimonials .swiper,
.swiper-wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.swiper-slide {
  width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-content {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 600px) {
  .testimonial-content {
    max-width: 400px;
  }
}

@media (max-width: 900px) {
  nav#main-nav {
    width: 240px; /* dari 180px */
    max-width: 90vw;
  }
  nav#main-nav a {
    padding: 1.2em 1em; /* dari 2em */
    white-space: normal;
    word-break: break-word;
  }
}
@media (max-width: 600px) {
  nav#main-nav {
    width: 90vw;
    max-width: 320px;
    max-height: 80vh;
    overflow-y: auto;
  }
  nav#main-nav.open {
    max-height: 80vh;
    overflow-y: auto;
  }
  nav#main-nav a {
    padding: 0.9em 0.8em;
    font-size: 0.98em;
  }
}

html {
  scroll-behavior: smooth;
}

/* FAQ Section Styling */
.faq-section {
  background: #181818;
  color: #fff;
  padding: 3em 1em;
  max-width: 800px;
  margin: 2em auto 2em auto;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.faq-section h2 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 1.5em;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.faq-item {
  border-radius: 8px;
  background: #222;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  margin-bottom: 0.5em;
  transition: box-shadow 0.2s;
}
.faq-item.active {
  box-shadow: 0 4px 16px #000a;
  border: 1.5px solid var(--gold);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.18em;
  font-family: 'Playfair Display', serif;
  text-align: left;
  padding: 1.1em 1.5em 1.1em 1.5em;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s;
  position: relative;
  font-weight: 700;
  letter-spacing: 1px;
}
.faq-question::after {
  content: '\25BC';
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s;
  font-size: 1em;
  color: var(--gold);
}
.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-question:hover {
  background: #292929;
  color: var(--gold-hover);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #222;
  color: var(--offwhite);
  font-family: 'Montserrat', sans-serif;
  padding: 0 1.5em;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  font-size: 1.08em;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 1em 1.5em;
  overflow: visible;
  display: block;
}

/* Privacy Policy Section Styling */
.privacy-section {
  background: #222;
  color: #fff;
  padding: 2.5em 1.5em;
  max-width: 800px;
  margin: 2em auto 2em auto;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.privacy-section h2 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 1.2em;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
}
.privacy-content {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08em;
  line-height: 1.7;
  color: var(--text-secondary);
}
.privacy-content ul {
  margin: 1em 0 1em 1.5em;
  padding: 0;
  list-style: disc inside;
}
.privacy-content li {
  margin-bottom: 0.7em;
}
.privacy-content a {
  color: var(--gold);
  text-decoration: underline;
}
.privacy-content a:hover {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 600px) {
  .faq-section, .privacy-section {
    padding: 1.2em 0.3em;
    border-radius: 10px;
  }
  .faq-question, .faq-answer {
    padding-left: 1em;
    padding-right: 1em;
  }
}

.leaflet-control-attribution {
  display: none !important;
}

.blog-list article {
  display: flex;
  align-items: flex-start;
  gap: 1.2em;
  background: #222;
  border-radius: 12px;
  margin-bottom: 1.5em;
  padding: 1em;
  box-shadow: 0 2px 8px #0005;
}

.blog-thumb {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #181818;
  box-shadow: 0 1px 4px #0003;
}

.blog-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-list article h3 {
  margin: 0 0 0.5em 0; /* Tambah jarak bawah judul */
  color: var(--gold);
  font-size: 1.15em;
}

.blog-list article p {
  margin: 0;
  color: #eee;
  font-size: 1em;
}

@media (max-width: 600px) {
  .blog-list article {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7em;
  }
  .blog-thumb {
    width: 100%;
    height: 140px;
  }
}

/* Adjust cover image sizes for better proportion */
.cover-slider img.cover-slide {
  max-width: 100vw;
  max-height: 60vh;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 32px #0008;
}

@media (max-width: 900px) {
  h1 { font-size: 2em; }
  h2 { font-size: 1.4em; }
  .cover-slider img.cover-slide { max-height: 32vh; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.3em; }
  h2 { font-size: 1.1em; }
  .cover-slider img.cover-slide { max-height: 22vh; }
}

.share-bar {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin: 1em 0 0.5em 0;
  font-size: 1.1em;
}
.share-bar span {
  color: var(--gold);
  font-weight: 700;
  margin-right: 0.5em;
}
.share-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2em;
  height: 2.2em;
  border-radius: 50%;
  background: #222;
  color: #fff;
  font-size: 1.2em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #0003;
  text-decoration: none;
}
.share-bar a.share-fb { color: #1877F3; }
.share-bar a.share-wa { color: #25D366; }
.share-bar a.share-tw { color: #1DA1F2; }
.share-bar a.share-copy { color: var(--gold); }
.share-bar a:hover { background: var(--gold); color: #181818; }

/* Popup Promo */
.promo-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,24,24,0.75);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.promo-popup-content {
  background: #181818;
  border: 2.5px solid var(--gold);
  border-radius: 18px;
  box-shadow: 0 8px 48px #000a;
  padding: 2.5em 2em 2em 2em;
  max-width: 350px;
  text-align: center;
  color: var(--offwhite);
  position: relative;
}
.promo-popup-content h2 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
.promo-popup-content p {
  color: var(--offwhite);
  font-size: 1.1em;
  margin-bottom: 1.2em;
}
.promo-popup-content .promo-close {
  position: absolute;
  top: 0.7em;
  right: 1em;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5em;
  cursor: pointer;
  transition: color 0.2s;
}
.promo-popup-content .promo-close:hover {
  color: #fff;
}
@media (max-width: 600px) {
  .promo-popup {
    align-items: flex-start;
    overflow-y: auto;
    padding: 2vh 0;
  }
  .promo-popup-content {
    max-width: 97vw;
    width: 100%;
    box-sizing: border-box;
    padding: 1.2em 0.5em 1em 0.5em;
    margin: 6vh auto;
    max-height: 92vh;
    overflow-y: auto;
  }
}

@media (max-width: 600px) {
  .btn-book {
    font-size: 1em;
    padding: 0.6em 1.2em;
    width: 100%;
    max-width: 220px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    display: block;
    white-space: normal;
  }
  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7em;
  }
  .artist-card img, .gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .portfolio .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolom di mobile */
    gap: 0.7em;
    margin-top: 1em;
    width: 100%;      /* Pastikan grid selebar viewport */
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
  }
  .portfolio .gallery a {
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: block;
  }
  .portfolio img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1/1;
    border-radius: 7px;
    object-fit: cover;
    margin: 0;
    box-shadow: 0 2px 8px #0003;
    border: 1px solid #222;
    background: #181818;
    display: block;
  }
}