/* ========================= */
/* style.css */
/* ========================= */

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

html{
  scroll-behavior:smooth;
}

body{
  background:#03160f;
  color:white;
  font-family:'Montserrat', sans-serif;
  overflow-x:hidden;
}

h1,h2,h3{
  font-family:'Cormorant Garamond', serif;
}

.navbar{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  padding:25px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  backdrop-filter:blur(10px);
  background:rgba(0,0,0,0.2);
}

.logo img{
height:40px;
}
.logo1 img{
height:55px;
}

nav a{
  color:white;
  margin-left:30px;
  text-decoration:none;
  transition:0.3s;
}

nav a:hover{
  color:#d4af37;
}

.hero{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
  background:
  radial-gradient(circle at top,#0f4f3b,#03160f);
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(to bottom,rgba(0,0,0,0.2),rgba(0,0,0,0.7));
}

.hero-content{
  position:relative;
  z-index:10;
  max-width:900px;
  padding:20px;
}

.hero h1{
  font-size:90px;
  line-height:0.9;
  color:#f5e7b2;
}

.hero p{
  margin-top:30px;
  font-size:20px;
  color:#ddd;
  line-height:1.8;
}

.hero-buttons{
  margin-top:40px;
}

.btn{
  padding:16px 34px;
  border-radius:50px;
  text-decoration:none;
  display:inline-block;
  margin:10px;
  transition:0.4s;
}

.gold-btn{
  background:#d4af37;
  color:black;
  font-weight:600;
}

.gold-btn:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(212,175,55,0.4);
}

.outline-btn{
  border:1px solid #d4af37;
  color:#d4af37;
}

.outline-btn:hover{
  background:#d4af37;
  color:black;
}

.floating{
  position:absolute;
  animation:float 6s ease-in-out infinite;
}

.floating img{
  width:220px;
}

.floating-1{
  top:12%;
  left:5%;
}

.floating-2{
  bottom:10%;
  right:8%;
}

.floating-3{
  top:20%;
  right:15%;
}

@keyframes float{
  0%{transform:translateY(0px);}
  50%{transform:translateY(-20px);}
  100%{transform:translateY(0px);}
}

.trust-bar{
  padding:25px;
  background:black;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:25px;
}

.trust-item{
  color:#d4af37;
  font-size:14px;
  letter-spacing:1px;
}

.section{
  padding:120px 8%;
}

.section-title{
  text-align:center;
  font-size:70px;
  color:#f5e7b2;
  margin-bottom:70px;
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.product-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(20px);
  border-radius:25px;
  padding:30px;
  text-align:center;
  transition:0.4s;
}

.product-card:hover{
  transform:translateY(-10px);
  box-shadow:0 10px 40px rgba(212,175,55,0.2);
}

.product-card img{
  width:100%;
  max-width:220px;
}

.product-card h3{
  margin-top:20px;
  font-size:32px;
  color:#f5e7b2;
}

.signature-section{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:120px 8%;
  gap:50px;
}

.signature-left{
  flex:1;
}

.signature-left h2{
  font-size:80px;
  color:#f5e7b2;
}

.signature-left p{
  margin-top:20px;
  line-height:1.8;
  color:#ccc;
}

.badges{
  margin-top:30px;
}

.badges span{
  border:1px solid #d4af37;
  padding:10px 18px;
  border-radius:40px;
  margin-right:10px;
  color:#d4af37;
}

.signature-right{
  flex:1;
  text-align:center;
}

.signature-right img{
  width:100%;
  max-width:420px;
}

.wholesale-grid,
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.glass-card,
.why-card{
  background:rgba(255,255,255,0.05);
  border-radius:25px;
  padding:40px;
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.08);
}

.glass-card h3,
.why-card h3{
  color:#f5e7b2;
  font-size:36px;
  margin-bottom:15px;
}

.glass-card p{
  color:#ccc;
  line-height:1.7;
}

.sample-form{
  max-width:700px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.sample-form input,
.sample-form textarea,
.sample-form select{
  padding:18px;
  border:none;
  border-radius:15px;
  background:rgba(255,255,255,0.08);
  color:white;
}

.sample-form textarea{
  height:160px;
}

.sample-form button{
  padding:18px;
  border:none;
  border-radius:50px;
  background:#d4af37;
  color:black;
  font-weight:bold;
  cursor:pointer;
}

.cta{
  padding:140px 8%;
  text-align:center;
  background:black;
}

.cta h2{
  font-size:80px;
  color:#f5e7b2;
}

.cta p{
  margin:30px auto;
  max-width:700px;
  color:#ccc;
  line-height:1.8;
}

footer{
  padding:80px 8%;
  text-align:center;
}

footer h2{
  font-size:60px;
  color:#d4af37;
}

footer p{
  margin-top:20px;
  color:#ccc;
}

.footer-links{
  margin-top:40px;
}

.footer-links a{
  color:#d4af37;
  text-decoration:none;
  margin:0 20px;
}

@media(max-width:768px){

.hero h1{
  font-size:55px;
}

.section-title{
  font-size:50px;
}

.signature-section{
  flex-direction:column;
}

.signature-left h2,
.cta h2{
  font-size:55px;
}

nav{
  display:none;
}

.floating img{
  width:120px;
}

}