
:root{
  --color-black:#000;
  --color-dark:#111;
  --color-gold:#d4af37;
  --color-white:#fff;
  --color-gray:#cfcfcf;
  --font-heading:'Cormorant Garamond',serif;
  --font-body:'Montserrat',sans-serif;
  --transition:all .3s ease;
  --container-width:1200px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  line-height:1.7;
  padding-top:80px;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
.container{width:min(var(--container-width), calc(100% - 40px));margin:auto}
.section{padding:90px 0}
.section-title{
  text-align:center;
  font-family:var(--font-heading);
  font-size:clamp(2.2rem,4vw,3.5rem);
  color:var(--color-gold);
  margin-bottom:40px;
}
.btn{
  display:inline-block;
  background:var(--color-gold);
  color:#000;
  padding:14px 32px;
  border-radius:6px;
  font-weight:700;
}
.navbar{
  position:fixed;top:0;left:0;width:100%;
  color: white;
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(212,175,55,.15);
  z-index:1000;
}
.nav-container{display:flex;justify-content:space-between;align-items:center;padding:18px 0}
.logo{font-family:var(--font-heading);font-size:1.3rem;color:var(--color-gold); box-shadow: #d4af37  5px 3px 0px; font-weight: 800;}
.nav-links{display:flex;gap:24px}
.nav-links a:hover{color:var(--color-gold)}
.menu-toggle{display:none;background:none;border:none;flex-direction:column;gap:5px}
.menu-toggle span{width:28px;height:3px;background:var(--color-gold)}

.hero{ 
  min-height:100vh;
  display:flex;align-items:center;justify-content:center;
  position:relative;
  background:url('../images/uu.jpg') center/cover no-repeat; background-size:contain;}
.hero-overlay{position:absolute;inset:0;background:1rgba(0,0,0,.65)}
.hero-content{position:relative;text-align:center;max-width:850px;margin-top: 0px;}
.hero h1{
  font-family:var(--font-heading);
  color:var(--color-gold);
  line-height:1.1;
  margin-top: 20px;
}
.hero p{color:var(--color-gray);margin-bottom:30px}

.slider{max-width:900px;margin:auto;overflow:hidden;border-radius:12px}
.slide{display:none}
.slide.active{display:block}
.slide img{width:100%;height:500px;object-fit:cover}

.filter-buttons{
  display:flex;justify-content:center;flex-wrap:wrap;gap:10px;margin-bottom:30px
}
.filter-btn{
  background:transparent;border:1px solid var(--color-gold);
  padding:8px 16px;cursor:pointer;border-radius:30px
}
.filter-btn.active,.filter-btn:hover{background:var(--color-gold);color:#000}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
}
.product-card{
  background: white;border:1px solid rgba(212,175,55,.15);
  border-radius:10px;overflow:hidden;display:flex;flex-direction:column;
}
.product-card img{aspect-ratio:1/1;}
.product-card h3{
  font-size:.9rem;padding:10px 8px;color:var(--color-gold);
  font-family:var(--font-heading);line-height:1.3;text-align:center;
}
.order-btn{
  margin:0 8px 10px;
  background:var(--color-gold);color:#000;text-align:center;
  padding:8px 6px;border-radius:5px;font-size:.75rem;font-weight:700;
}

.about-content,.contact-content{max-width:800px;margin:auto;text-align:center}
.about-content p,.contact-content p{color: black}

.testimonials-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px
}
.testimonial-card{
  background: white;padding:25px;border-radius:10px;border:1px solid rgba(212,175,55,.1)
}
.testimonial-card h4{color:var(--color-gold);margin-top:12px}

.social-links{
  margin-top:25px;display:flex;justify-content:center;gap:15px
}
.social-links a{
  width:50px;height:50px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:#111;color:var(--color-gold);border:1px solid rgba(212,175,55,.2)
}
.footer{padding:30px 0;border-top:1px solid rgba(212,175,55,.1);text-align:center;color:#aaa}

.floating-whatsapp{
  position:fixed;right:20px;bottom:20px;
  display:flex;align-items:center;gap:8px;
  background:#25D366;color:#fff;padding:14px 20px;border-radius:50px;
  font-weight:700;z-index:1000;
}

@media (max-width:768px){
  .menu-toggle{display:flex}
  .nav-links{
    position:absolute;top:100%;left:0;width:100%;background:#000;
    flex-direction:column;align-items:center;padding:25px 0;
    display:none;
  }
  .nav-links.active{display:flex}
  .hero h1{font-size:2.6rem}
  .slide img{height:300px}
  .floating-whatsapp span{display:none}
  .floating-whatsapp{width:60px;height:60px;justify-content:center;padding:0;border-radius:50%}
}

/* Keep 3 columns even on mobile */
@media (max-width:480px){
  .product-grid{grid-template-columns:repeat(3,1fr);gap:10px}
  .product-card h3{font-size:.72rem}
  .order-btn{font-size:.65rem;padding:6px 4px}
}


/* =========================
   HAMBURGER TO X
========================= */
.menu-toggle span {
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  line-height: 1;
  color: var(--color-gold);
  cursor: pointer;
}

.product-card img {
  cursor: pointer;
}

.img-logo{
  width: 60px;
  border-radius: 100%;
}

.btnnn{
  display:inline-block;
  background:var(--color-gold);
  color:#000;
  padding:14px 32px;
  border-radius:6px;
  font-weight:700;
  margin-top: 250px;
}


/* =========================
   BSD COLLECTION & DESIGN
========================= */

.about-section{
  background:#0f0f0f;
  padding:80px 20px;
  color:#fff;
}

.container{
  max-width:1200px;
  margin:auto;
}

.section-tag{
  color:#d4af37;
  letter-spacing:2px;
  font-size:.85rem;
  font-weight:600;
}

.profile-wrapper{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:40px;
}

.profile-image{
  text-align:center;
}

.profile-image img{
  object-fit:cover;
  border-radius:10%;
  box-shadow:0 10px 35px rgba(212,175,55,.25);
}

.profile-content{
  width:100%;
}

.profile-content h2{
  font-size:2.3rem;
  margin:15px 0 10px;
}

.profile-content h3{
  color:#d4af37;
  margin-bottom:20px;
  font-weight:500;
}

.profile-content p{
  color:#cfcfcf;
  line-height:1.8;
}

.info-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:15px;
  margin-top:30px;
}

.info-card{
  background:#181818;
  padding:20px;
  border-radius:20px;
  border:1px solid rgba(212,175,55,.15);
  transition:.3s;
}

.info-card:hover{
  transform:translateY(-5px);
}

.info-card h4{
  color:#d4af37;
  margin-bottom:10px;
}

/* WHY CHOOSE US */


.section-title h2{
  font-size:2rem;
  margin-bottom:10px;
}

.section-title p{
  color:#bdbdbd;
  
  margin:auto;
}

.why-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}

.why-card{
  background:#181818;
  padding:25px;
  border-radius:20px;
  border:1px solid rgba(212,175,55,.15);
  transition:.3s;
}

.why-card:hover{
  transform:translateY(-6px);
}

.why-card h3{
  color:#d4af37;
  margin-bottom:12px;
}

.why-card p{
  color:#cfcfcf;
  line-height:1.7;
}


/* TABLET */

@media (min-width:768px){

  .info-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .certificate-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

/* DESKTOP */

@media (min-width:1024px){

  .profile-wrapper{
    flex-direction:row;
    align-items:center;
    gap:70px;
  }

  .profile-image img{
    width:320px;
    height:320px;
  }

  .profile-content h2{
    font-size:3rem;
  }

  .why-grid{
    grid-template-columns:repeat(4,1fr);
  }
}



.contact-section {
    padding: 80px 20px;
    background: #f8f5f0;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all .35s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #111;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-info h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #111;
}

.contact-info a {
    text-decoration: none;
    color: #555;
    line-height: 1.8;
    transition: .3s;
}

.contact-info a:hover {
    color: #d4af37;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
    }
}