html{
    scroll-behavior:smooth;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:black;
  color:white;
  font-family:Arial, sans-serif;
  overflow-x:hidden;
}

/* GLASSMORPHISM NAVBAR */

nav{
  position:fixed;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  width:92%;
  padding:18px 40px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  z-index:99999;

  background:rgba(255,255,255,0.05);

  backdrop-filter:blur(20px);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:20px;

  box-shadow:
  0 10px 40px rgba(0,0,0,0.35),
  0 0 30px rgba(212,175,55,0.05);

  transition:0.5s ease;
}
/* NAVBAR SCROLL EFFECT */

nav.scrolled{

  background:rgba(0,0,0,0.75);

  border:1px solid rgba(212,175,55,0.12);

  box-shadow:
  0 15px 50px rgba(0,0,0,0.5),
  0 0 40px rgba(212,175,55,0.08);

}

.logo img{
  height:80px;
}

.nav-links{
  display:flex;
  gap:35px;
}

.nav-links a{
  color:white;
  text-decoration:none;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  transition:0.4s;
}

.nav-links a:hover{
  color:#D4AF37;
}

/* HERO */

.hero{
  position:relative;
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  overflow:hidden;
}

.hero video{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(35%);
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.4);
}

.hero-content{
  position:relative;
  z-index:2;
  margin-top:180px;
}

.hero h1{
  font-size:90px;
  color:#D4AF37;
  letter-spacing:6px;
  margin-bottom:25px;
  line-height:1.1;
}

.hero p{
  font-size:24px;
  color:#ddd;
  margin-bottom:40px;
}

button{
  padding:18px 40px;
  border:none;
  background:#D4AF37;
  color:black;
  border-radius:50px;
  font-size:16px;
  cursor:pointer;
  transition:0.4s;
  box-shadow:0 10px 30px rgba(212,175,55,0.25);
}

button:hover{
  transform:scale(1.05);
  box-shadow:0 20px 50px rgba(212,175,55,0.4);
}

/* COLLECTIONS */

.collections{
  padding:120px 40px;
  background:#050505;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title p{
  color:#D4AF37;
  letter-spacing:5px;
  text-transform:uppercase;
  margin-bottom:15px;
  font-size:13px;
}

.section-title h2{
  font-size:70px;
}

.collection-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card{
  position:relative;
  height:500px;
  border-radius:25px;
  overflow:hidden;
  border:1px solid rgba(212,175,55,0.08);
  transition:0.5s;
}

.card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(212,175,55,0.15);
}

.card-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding:35px;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.05)
  );
}

.card h3{
  font-size:32px;
  margin-bottom:10px;
}

.card span{
  color:#D4AF37;
  letter-spacing:2px;
  font-size:11px;
  text-transform:uppercase;
}

/* BRAND STORY */

.brand-story{
  padding:140px 80px;
  background:#0a0a0a;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.small-title{
  color:#D4AF37;
  letter-spacing:5px;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:20px;
}

.brand-left h2{
  font-size:90px;
  line-height:1;
}

.brand-right p{
  color:#bdbdbd;
  line-height:2;
  font-size:20px;
  margin-bottom:30px;
}

/* INVESTOR SECTION */

.investor-section{
  padding:140px 80px;
  background:#050505;
  text-align:center;
}

.investor-small{
  color:#D4AF37;
  letter-spacing:5px;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:20px;
}

.investor-section h2{
  font-size:75px;
  margin-bottom:40px;
}

.investor-text{
  max-width:900px;
  margin:auto;
  color:#bdbdbd;
  line-height:2;
  font-size:20px;
}

.investor-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
  margin-top:80px;
}

.investor-card{
  background:#0f0f0f;
  padding:50px;
  border-radius:25px;
  border:1px solid rgba(212,175,55,0.1);
}

.investor-card h3{
  font-size:35px;
  margin-bottom:20px;
}

.investor-card p{
  color:#bdbdbd;
  line-height:1.8;
}

/* FOOTER */

footer{
  padding:100px 40px 50px;
  background:black;
  text-align:center;
  border-top:1px solid rgba(212,175,55,0.1);
}

.footer-logo img{
  height:120px;
  margin-bottom:20px;
}

.footer-text{
  color:#aaa;
  margin-bottom:30px;
  line-height:1.8;
}

.social-icons{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:40px;
}

.social-icons a{
  width:50px;
  height:50px;
  border-radius:50%;
  background:#111;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#D4AF37;
  text-decoration:none;
  font-size:20px;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  margin-bottom:30px;
}

.footer-links a{
  color:#aaa;
  text-decoration:none;
}

copyright{
  color:#666;
}

/* WHATSAPP */

.whatsapp-btn{
  position:fixed;
  right:30px;
  bottom:30px;
  width:75px;
  height:75px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:white;
  font-size:40px;
  text-decoration:none;
  z-index:999;
  box-shadow:0 0 25px rgba(37,211,102,0.5);
}

/* LOADER */

.loader{
  position:fixed;
  inset:0;
  background:black;
  z-index:99999;
  display:flex;
  justify-content:center;
  align-items:center;
}

.loader-logo{
  color:#D4AF37;
  font-size:60px;
  letter-spacing:12px;
  font-weight:bold;
}

/* MOBILE */

@media(max-width:992px){
  
  .product-card{
  min-width:280px;
  height:420px;
}
  nav{
    padding:15px 25px;
    flex-direction:column;
    gap:15px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
  }

  .hero h1{
    font-size:50px;
  }

  .hero p{
    font-size:18px;
  }

  .collection-grid{
    grid-template-columns:1fr;
  }

  .brand-story{
    grid-template-columns:1fr;
    padding:100px 25px;
  }

  .brand-left h2{
    font-size:55px;
  }

  .investor-grid{
    grid-template-columns:1fr;
  }

  .investor-section{
    padding:100px 25px;
  }

}
/* PREMIUM CURSOR */

.cursor{
  width:22px;
  height:22px;
  border:2px solid #D4AF37;
  border-radius:50%;
  position:fixed;
  transform:translate(-50%,-50%);
  pointer-events:none;
  z-index:999999;
  transition:
  transform 0.08s linear,
  width 0.3s ease,
  height 0.3s ease,
  background 0.3s ease;

  box-shadow:
  0 0 15px rgba(212,175,55,0.6),
  0 0 40px rgba(212,175,55,0.4);

  backdrop-filter:blur(2px);
}

/* HOVER EFFECT */

.cursor.active{
  width:55px;
  height:55px;
  background:rgba(212,175,55,0.15);
}
/* SCROLL PROGRESS BAR */

.progress-bar{
  position:fixed;
  top:0;
  left:0;
  width:0%;
  height:4px;
  background:#D4AF37;
  z-index:9999999;

  box-shadow:
  0 0 10px rgba(212,175,55,0.7),
  0 0 20px rgba(212,175,55,0.5),
  0 0 40px rgba(212,175,55,0.4);
}
/* CINEMATIC SECTION TRANSITIONS */

.collections,
.brand-story,
.investor-section,
footer{

  opacity:0;
  transform:translateY(120px);

}
/* PRODUCT SHOWCASE SLIDER */

.product-slider-section{
  padding:140px 40px;
  background:#080808;
  overflow:hidden;
}

.slider-container{
  width:100%;
  overflow:hidden;
  margin-top:60px;
}

.slider-track{
  display:flex;
  gap:30px;
  animation:sliderMove 25s linear infinite;
}

.product-card{
  min-width:350px;
  height:520px;
  border-radius:25px;
  overflow:hidden;
  position:relative;
  flex-shrink:0;
  border:1px solid rgba(212,175,55,0.08);
}

.product-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.product-info{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:35px;

  background:linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0)
  );
}

.product-info h3{
  font-size:34px;
  margin-bottom:10px;
}

.product-info span{
  color:#D4AF37;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:11px;
}

@keyframes sliderMove{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}
/* CONTACT SECTION */

.contact-section{
  padding:140px 40px;
  background:#050505;
}

.contact-container{
  margin-top:70px;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;

  align-items:center;
}

/* LEFT SIDE */

.contact-info h3{
  font-size:50px;
  margin-bottom:25px;
  line-height:1.1;
}

.contact-info p{
  color:#bdbdbd;
  line-height:2;
  margin-bottom:40px;
  font-size:18px;
}

.info-box{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:25px;

  color:white;
  font-size:17px;
}

.info-box i{
  width:55px;
  height:55px;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  background:#111;

  color:#D4AF37;

  font-size:20px;
}

/* RIGHT SIDE */

.contact-form{
  background:#0f0f0f;

  padding:50px;

  border-radius:30px;

  border:1px solid rgba(212,175,55,0.08);
}

.contact-form input,
.contact-form textarea{

  width:100%;

  padding:18px 20px;

  margin-bottom:20px;

  background:#050505;

  border:1px solid rgba(255,255,255,0.08);

  border-radius:15px;

  color:white;

  font-size:15px;

  outline:none;
}

.contact-form textarea{
  height:160px;
  resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{

  border-color:#D4AF37;

}

.contact-form button {
    display: block !important;
    width: 100% !important;
    height: 60px !important;
    margin-top: 20px !important;
    background: gold !important;
    color: black !important;
    font-size: 18px !important;
    border: none !important;
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* MOBILE */

@media(max-width:992px){

  .contact-container{
    grid-template-columns:1fr;
  }

  .contact-info h3{
    font-size:38px;
  }

}
/* CONTACT SECTION */

.contact-section{
    background:#050505;
    padding:120px 60px;
    text-align:center;
}

.contact-section h2{
    font-size:52px;
    color:#d4af37;
    margin-bottom:20px;
    letter-spacing:3px;
}

.contact-section p{
    color:#bdbdbd;
    max-width:800px;
    margin:0 auto 40px;
    line-height:1.8;
}

.contact-section form{
    max-width:700px;
    margin:auto;
}

.contact-section input,
.contact-section textarea{
    width:100%;
    background:#111;
    border:1px solid rgba(212,175,55,.25);
    color:#fff;
    padding:18px;
    margin-bottom:20px;
    border-radius:10px;
    font-size:16px;
}

.contact-section input:focus,
.contact-section textarea:focus{
    outline:none;
    border-color:#d4af37;
    box-shadow:0 0 20px rgba(212,175,55,.2);
}

.contact-section button{
    background:#d4af37;
    color:#000;
    border:none;
    padding:18px 45px;
    border-radius:50px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.contact-section button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(212,175,55,.3);
}

.contact-details{
    margin-top:40px;
}

.contact-details p{
    color:#d4af37;
    margin:10px 0;
}
.contact-section button{
    display:block !important;
    margin:30px auto !important;
    visibility:visible !important;
    opacity:1 !important;
}
.contact-form button,
button[type="submit"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 99999 !important;

    width: 100% !important;
    height: 70px !important;

    background: #D4AF37 !important;
    color: #000 !important;

    border: none !important;
    border-radius: 50px !important;

    font-size: 20px !important;
    font-weight: bold !important;

    margin-top: 20px !important;
}
.hero-buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#d4af37;
    color:#000;
    padding:14px 32px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    letter-spacing:1px;
    transition:all .3s ease;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 0 20px rgba(212,175,55,0.5);
}

.btn-secondary{
    border:2px solid #d4af37;
    color:#d4af37;
    padding:14px 32px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    letter-spacing:1px;
    transition:all .3s ease;
}

.btn-secondary:hover{
    background:#d4af37;
    color:#000;
}