/* styles.css */
:root {
   --deep-maroon: #4B1E1E;
   --golden: #D4AF37;
   --cream: #F8E9C9;
   --light-gold: #E8C872;
}

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

body {
   font-family: 'Battambang', serif;
   background-color: var(--cream);
   color: var(--deep-maroon);
   overflow-x: hidden;
   scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Noto Serif Khmer', serif;
   font-weight: 600;
}

/* Navbar */
.navbar {
   background-color: rgba(75, 30, 30, 0.8);
   backdrop-filter: blur(10px);
   transition: all 0.3s ease;
   padding: 15px 0;
}

.navbar-brand {
   color: var(--golden) !important;
   font-family: 'Noto Serif Khmer', serif;
   font-size: 1.5rem;
}

.nav-link {
   color: var(--cream) !important;
   margin: 0 10px;
   transition: all 0.3s ease;
   font-size: 1.1rem;
}

   .nav-link:hover {
      color: var(--golden) !important;
      text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
   }



.pattern-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZD0iTTI1LDI1IEEyNSwyNSwwLDEsMSw3NSwyNSBBMjUsMjUsMCwxLDEsMjUsMjUgeiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRDRBRjM3IiBzdHJva2Utd2lkdGg9IjEiLz48cGF0aCBkPSJNMzUsMzUgQTM1LDM1LDAsMSwxLDY1LDM1IEEzNSwzNSwwLDEsMSwzNSwzNSB6IiBmaWxsPSJub25lIiBzdHJva2U9IiNEOEFGQzciIHN0cm9rZS13aWR0aD0iMC41Ii8+PC9zdmc+') repeat;
   opacity: 0.1;
   animation: movePattern 30s linear infinite;
   z-index: -1;
}


.hero-content {
   z-index: 2;
   max-width: 800px;
   padding: 0 20px;
}

.hero-title {
   font-size: 3.5rem;
   margin-bottom: 20px;
   color: var(--golden);
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
   font-size: 1.5rem;
   margin-bottom: 30px;
   color: var(--cream);
}

.btn-explore {
   background-color: var(--golden);
   color: var(--deep-maroon);
   border: none;
   padding: 12px 30px;
   font-size: 1.1rem;
   border-radius: 30px;
   transition: all 0.3s ease;
   font-weight: bold;
}

   .btn-explore:hover {
      background-color: var(--light-gold);
      box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
      transform: translateY(-3px);
   }

/* About Section */
.about-section {
   background-color: #5E2929;
   color: var(--cream);
   padding: 100px 0;
}

/* Event Section */
.event-section {
   background-color: #5E2929;
   color: var(--cream);
   padding: 100px 0;
}

/* Artist Section */
.artist-section {
   background-color: #5E2929;
   color: var(--cream);
   padding: 100px 0;
}

.section-title {
   font-size: 2.5rem;
   margin-bottom: 40px;
   color: var(--golden);
   text-align: center;
}

.about-text {
   font-size: 1.2rem;
   line-height: 1.8;
   text-align: center;
   max-width: 800px;
   margin: 0 auto;
}

/* Gallery Section */
.gallery-section {
   padding: 100px 0;
   color: #5E2929;
   background-color: var(--cream);
}

.gallery-item {
   animation: float 6s ease-in-out infinite;
   margin-bottom: 30px;
   overflow: hidden;
   border-radius: 10px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
}

   .gallery-item > label {
      margin-top: 20px;
      font-size: 1.2rem;
      margin-bottom: 20px;
   }

   .gallery-item:hover {
      transform: scale(1.03);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
   }

.gallery-img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   transition: all 0.5s ease;
}

.gallery-item:hover .gallery-img {
   transform: scale(1.1);
}

/* Contact Section */
.contact-section {
   padding: 100px 0;
   background-color: var(--deep-maroon);
   color: var(--cream);
}

.contact-form {
   max-width: 600px;
   margin: 0 auto;
}

.form-control {
   background-color: rgba(248, 233, 201, 0.1);
   border: 1px solid var(--golden);
   color: var(--cream);
   padding: 12px 15px;
   margin-bottom: 20px;
   border-radius: 5px;
}

   .form-control::placeholder {
      color: rgba(248, 233, 201, 0.7);
   }

   .form-control:focus {
      background-color: rgba(248, 233, 201, 0.2);
      border-color: var(--light-gold);
      box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
      color: var(--cream);
   }

.btn-send {
   background-color: var(--golden);
   color: var(--deep-maroon);
   border: none;
   padding: 12px 30px;
   font-size: 1.1rem;
   border-radius: 30px;
   transition: all 0.3s ease;
   font-weight: bold;
   width: 100%;
}

   .btn-send:hover {
      background-color: var(--light-gold);
      box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
   }

/* Footer */
.footer {
   background-color: #3A1616;
   color: var(--golden);
   padding: 30px 0;
   text-align: center;
}

/* Animations */
@keyframes zoomBg {
   0% {
      transform: scale(1);
   }

   100% {
      transform: scale(1.1);
   }
}

@keyframes float {
   0% {
      transform: translateY(0px);
   }

   50% {
      transform: translateY(-20px);
   }

   100% {
      transform: translateY(0px);
   }
}

@keyframes movePattern {
   0% {
      background-position: 0 0;
   }

   100% {
      background-position: 100px 100px;
   }
}

/* Floating Particles */
.particles-container {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   z-index: 0;
}

.particle {
   position: absolute;
   background-color: var(--golden);
   border-radius: 50%;
   opacity: 0.3;
   animation: floatParticle linear infinite;
}

@keyframes floatParticle {
   0% {
      transform: translateY(100vh) rotate(0deg);
      opacity: 0;
   }

   10% {
      opacity: 0.3;
   }

   90% {
      opacity: 0.3;
   }

   100% {
      transform: translateY(-100px) rotate(360deg);
      opacity: 0;
   }
}

/* Music Toggle */
.music-toggle {
   animation: float 6s ease-in-out infinite;
   position: fixed;
   bottom: 20px;
   right: 20px;
   width: 50px;
   height: 50px;
   background-color: var(--golden);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   z-index: 1000;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
   transition: all 0.3s ease;
}

   .music-toggle:hover {
      transform: scale(1.1);
      box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
   }

   .music-toggle.active {
      box-shadow: 0 0 20px rgba(212, 175, 55, 0.9);
   }

/* Artist Cards */
.artist-card {
   background-color: var(--dark-maroon);
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
   transition: all 0.3s ease;
   border: 2px solid transparent;
   animation: float 6s ease-in-out infinite;
}

   .artist-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
      border-color: var(--gold);
   }

.artist-img {
   height: 500px;
   background: var(--gold);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--deep-maroon);
   font-size: 1.5rem;
}

.artist-info {
   padding: 20px;
}

/* Google Translate Styles */
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
   display: none !important;
}

.skiptranslate {
   display: none !important;
}

body {
   top: 0 !important;
}

#google_translate_element select {
   display: none;
}

.lang-btn {
   border: none;
   background: none;
   cursor: pointer;
   font-size: 20px;
   margin: 0 5px;
   transition: transform 0.2s ease;
}

   .lang-btn:hover {
      transform: scale(1.2);
   }

/* Button Social Media */
.social-icon {
   color: #D4AF37 !important;
}

   .social-icon:hover {
      color: #5E2929 !important;
      background-color: var(--cream);
      padding: 0px 10px;
      border-radius: 10px;
   }

/* Responsive Adjustments */
@media (max-width: 768px) {
   .hero-title {
      font-size: 2.5rem;
   }

   .hero-subtitle {
      font-size: 1.2rem;
   }

   .apsara-dancer {
      width: 150px;
      height: 300px;
      right: 5%;
   }

   .gallery-animation {
      display: none;
   }

   .section-title {
      font-size: 2rem;
   }
}

@media (max-width: 576px) {
   .hero-title {
      font-size: 2rem;
   }

   .hero-subtitle {
      font-size: 1rem;
   }

   .apsara-dancer {
      width: 150px;
      height: 200px;
      bottom: 5%;
   }

   .gallery-animation {
      display: none;
   }
}

.disabled {
   cursor: not-allowed;
}

/* --- Lightbox --- */
.overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0,0,0,0.9);
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 2000;
   visibility: hidden;
   opacity: 0;
   transition: opacity 0.3s ease, visibility 0.3s ease;
}

   .overlay.active {
      visibility: visible;
      opacity: 1;
   }

.overlay-content {
   max-width: 70%;
   max-height: 70%;
   text-align: center;
   position: relative;
   color: var(--cream);
   bottom: 5vh;
}

   .overlay-content img,
   .overlay-content video {
      width: 100%;
      height: 500px;
      border-radius: 10px;
      border: 3px solid var(--golden);
      box-shadow: 0 0 25px rgba(212,175,55,0.5);
   }

.overlay-caption {
   margin-top: 15px;
}

   .overlay-caption h4 {
      color: var(--golden);
      font-family: 'Noto Serif Khmer', serif;
   }

   .overlay-caption p {
      font-size: 1.1rem;
      opacity: 0.9;
   }

.close-btn {
   position: absolute;
   top: -50px;
   right: 0;
   background: var(--golden);
   color: var(--deep-maroon);
   border: none;
   border-radius: 50%;
   font-size: 24px;
   width: 40px;
   height: 40px;
   line-height: 35px;
   text-align: center;
   cursor: pointer;
   box-shadow: 0 0 10px rgba(0,0,0,0.3);
   transition: all 0.3s ease;
}

   .close-btn:hover {
      transform: rotate(90deg);
      background: var(--light-gold);
   }
