
@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');

:root {
  --primary: #D4AF37;  
  --secondary: #000000; 
  --white: #ffffff;
  --dark: #222222;
  --light: #f5f5f5;

  
  --nav-bg: #b5b3b3;
    
  --body-bg: #111111;  
  --card-bg: #1a1a1a;   
  --text-light: #f0f0f0;
  --text-muted: #bbbbbb;
}


body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--body-bg); 
  color: var(--text-light);
}
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
}
* {
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}


.main-nav {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  background: var(--nav-bg); 
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: fixed;
  top: 0;
  z-index: 1000;
}
.nav-logo {
  height: 85px;
  object-fit: contain;
  display: block;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
}
.nav-links a {
  text-decoration: none;
  color: #000;  
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffd103;
  letter-spacing: 0.5px;
  
}
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    right: 20px;
    background: rgba(255,255,255,0.97);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links li a {
    font-size: 16px;
    padding: 8px 0;
  }
}


.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
              url('j1.jpg') center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  text-align: center;
}
.hero-text {
  max-width: 600px;
}
.hero-title {
  font-family: "Parisienne", cursive;
  font-size: 85px;
  font-weight: 400;
  color: var(--primary); 
  letter-spacing: 2px;
  line-height: 1.1;
  text-shadow: 0px 6px 28px rgba(0,0,0,0.75);
}
.icon {
  display: inline-block;
  font-size: 55px;
  margin-right: 2px;
  opacity: 0;
  transition: 0.3s ease;
}

.line1 {
  display: inline-block;
  animation: fadeIn 1.2s ease forwards;
}

.icon {
  font-size: 60px;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}


.line2 {
  display: block;
  margin-top: 5px;
  margin-left: 100px;
  color: #eaffdd;
  animation: fadeIn 1.8s ease forwards;
}
@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
.hero-text p {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.4px;
  color: var(--text-light); 
  text-shadow: 0px 3px 14px rgba(0,0,0,0.7);
}
.btn {
  display: inline-block;
  padding: 12px 34px;
  border: none;                
  background: var(--primary);  
  color: var(--secondary);     
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1.2px;
  transition: 0.3s ease;
}
.btn:hover {
  background: #c19b2e;
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 120px 20px;
  }
  .hero-title {
    font-size: 45px;
  }
  .hero-text p {
    font-size: 16px;
  }
}


.albums {
  padding: 80px 0; 
  text-align: center;
  background: var(--body-bg); 
  overflow: hidden;
}

.albums h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--primary); 
  font-family: "Playfair Display", serif;
}

/* SLIDER */
.album-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: center;
  align-items: center; 
}
.album-slider::-webkit-scrollbar {
  display: none;
}
.album-track {
  display: flex;
  gap: 15px;
  scroll-snap-align: start;
}


.album-card {
  flex: 0 0 70vw;
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
  background: var(--card-bg); 
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.album-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; 
  filter: brightness(0.97);
  transition: 0.3s ease;
}

.album-card:hover {
 box-shadow: 0 8px 20px rgba(0,0,0,0.15);
 transform: translateY(-3px);
}
.album-title {
  font-size: 16px;
  color: var(--text-light); 
  padding: 10px;
  margin: 0;
  text-align: center;
  font-weight: 500;
}

.album-card:hover img {
  filter: brightness(1);
}


.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.dot {
  width: 10px;
  height: 10px;
  background: var(--text-muted); 
  border-radius: 50%;
  transition: 0.3s;
}
.dot.active {
  background: var(--primary); 
  transform: scale(1.2);
}


.album-view-more {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 42px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.12);
  color: var(--text-light);
  font-size: 18px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
}
.album-view-more:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}


@media (max-width: 768px) {
  .albums {
    padding: 40px 0 60px;
  }

  .album-card {
    flex: 0 0 95vw;
    border-radius: 14px;
  }

  .album-view-more {
    font-size: 16px;
    padding: 10px 30px;
  }
}



.about-section {
  padding: 80px 40px;
  background: var(--body-bg); 
  backdrop-filter: blur(8px);
}
.about-container {
  max-width: 1050px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 60px;
  border-radius: 18px;
  background: var(--card-bg); 
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
}
.about-image {
  width: 90%;
  max-width: 300px;
  aspect-ratio: 3/4;
  background: url('about.jpg') center/contain no-repeat;
  background-color: #eeeeee;
  border-radius: 22px;
  margin: auto;
}
.about-content {
  flex: 1;
}
.about-content h2 {
  font-size: 42px;
  margin-bottom: 18px;
  color: var(--primary); 
  font-family: "Cinzel", serif;
  font-weight: 700;
}
.about-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted); 
  margin-bottom: 28px;
  max-width: 550px;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  letter-spacing: 0.3px;
}
.about-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--primary); 
  border: none;
  color: var(--secondary);
  text-decoration: none;
  font-size: 17px;
  border-radius: 35px;
  transition: 0.3s ease;
}
.about-btn:hover {
  background: #c19b2e;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .about-section {
    padding: 50px 20px;
  }
  .about-container {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
  .about-image {
    width: 100%;
    height: 340px;
    border-radius: 18px;
  }
  .about-content h2,
  .about-content p {
    text-align: center;
  }
}





.contact-section {
  padding: 80px 40px;
  text-align: center;
  background: var(--body-bg); 
}
.contact-title {
  font-size: 38px;
  margin-bottom: 10px;
  color: var(--primary);
}
.contact-subtitle {
  font-size: 17px;
  color: var(--text-muted); 
  margin-bottom: 40px;
}
.contact-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  background: var(--card-bg); 
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(212,175,55,0.12);
}
.contact-info {
  flex: 1;
  text-align: left;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 17px;
}
.info-item .icon {
  font-size: 28px;
  margin-right: 12px;
}
.contact-buttons {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.contact-btn {
  display: block;
  width: 80%;
  padding: 14px 0;
  text-align: center;
  border-radius: 30px;
  font-size: 18px;
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: 0.3s;
}
.whatsapp {
  background: #76e39e;
}
.whatsapp:hover {
  background: #1da855;
}
.instagram {
  background: #dd5894;
}
.instagram:hover {
  background: #ad1f62;
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 50px 20px;
  }
  .contact-info {
    text-align: center;
  }
  .contact-btn {
    width: 100%;
  }
}


.footer {
  width: 100%;
  text-align: center;
  padding: 18px 0;
  background: var(--nav-bg); 
  border-top: 1px solid rgba(255,255,255,0.35);
  font-size: 15px;
  color: white;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .footer {
    font-size: 13px;
    padding: 15px 0;
  }
}


.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 5000;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
}
.lightbox .close-btn {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10;
}
.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transition: 0.3s;
}
.lightbox .prev:hover,
.lightbox .next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox .prev {
  left: 30px;
}
.lightbox .next {
  right: 30px;
}
@media (max-width: 768px) {
  .lightbox img {
    width: 95%;
    height: auto;
  }
  .lightbox .prev,
  .lightbox .next {
    font-size: 30px;
    padding: 5px 15px;
  }
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.6s ease forwards;
}

.popup-content {
  background: var(--card-bg); 
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  text-align: center;
  transform: scale(0.8);
  opacity: 0;
  animation: popUp 0.7s ease forwards;
  max-width: 400px;
}

.popup-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--primary); 
  margin-bottom: 10px;
}
.popup-content img{
  
 
  width: 48px;
  height: 48px;
  object-fit: contain;



}
.popup-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.popup-btn {
  display: inline-block;
  padding: 12px 40px;
  background: var(--primary); 
  border: none;
  border-radius: 35px;
  color: var(--secondary);
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(108, 109, 107, 0.4);
}
.popup-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(110, 203, 99, 0.5);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 32px;
  color: #333;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popUp {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
