*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#f8f8f8;
  color:#222;
  line-height:1.6;
}

.site-header{
  background:#111;
  color:white;
  padding:18px 7%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  position:sticky;
  top:0;
  z-index:10;
}

.logo{
  font-size:28px;
  font-weight:bold;
  letter-spacing:1px;
  color:#d4af37;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.nav a{
  color:white;
  text-decoration:none;
  font-weight:bold;
  font-size:15px;
}

.nav a:hover{
  color:#d4af37;
}

.hero{
  min-height:75vh;
  background:linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.68)),
  url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1600&q=80');
  background-size:cover;
  background-position:center;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:60px 20px;
}

.hero-content{
  max-width:850px;
}

.eyebrow{
  color:#d4af37;
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:bold;
}

.hero h1{
  font-size:56px;
  margin:15px 0;
  line-height:1.1;
}

.hero p{
  font-size:20px;
}

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

.btn{
  display:inline-block;
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
  margin:8px;
  font-weight:bold;
}

.primary, .btn.small{
  background:#d4af37;
  color:#111;
}

.secondary{
  border:2px solid white;
  color:white;
}

.section{
  padding:70px 7%;
  text-align:center;
}

.section h2{
  font-size:36px;
  margin-bottom:35px;
}

.grid, .product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:24px;
}

.card, .product{
  background:white;
  padding:28px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card span{
  font-size:42px;
}

.card a{
  color:#b08d21;
  font-weight:bold;
  text-decoration:none;
}

.dark{
  background:#111;
  color:white;
}

.features{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  gap:15px;
  max-width:900px;
  margin:auto;
}

.features p{
  background:#1f1f1f;
  padding:18px;
  border-radius:12px;
}

.product-img{
  background:#111;
  color:#d4af37;
  height:160px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  margin-bottom:18px;
}

.price{
  font-weight:bold;
  color:#b08d21;
  font-size:20px;
}

.btn.small{
  padding:10px 22px;
  font-size:14px;
}

.newsletter{
  background:#d4af37;
  color:#111;
  text-align:center;
  padding:60px 7%;
}

.newsletter input{
  padding:15px;
  width:min(350px, 90%);
  border:none;
  border-radius:30px;
  margin:8px;
}

.newsletter button{
  padding:15px 26px;
  border:none;
  border-radius:30px;
  background:#111;
  color:white;
  font-weight:bold;
}

footer{
  background:#111;
  color:white;
  text-align:center;
  padding:30px 7%;
}

@media(max-width:700px){
  .site-header{
    justify-content:center;
    text-align:center;
  }

  .nav{
    justify-content:center;
    margin-top:12px;
  }

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

  .hero p{
    font-size:17px;
  }
}
/* Reviews */

.reviews{
padding:80px 10%;
background:#ffffff;
text-align:center;
}

.review-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-top:40px;
}

.review-card{
background:white;
padding:30px;
width:300px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.review-card p{
margin:20px 0;
color:#555;
}

.review-card h4{
color:#d4af37;
}

/* Newsletter */

.newsletter{
background:#111;
color:white;
padding:80px 10%;
text-align:center;
}

.newsletter h2{
font-size:40px;
margin-bottom:20px;
}

.newsletter p{
margin-bottom:30px;
color:#ddd;
}

.newsletter input{
padding:15px;
width:320px;
max-width:90%;
border:none;
border-radius:30px;
margin-bottom:20px;
}

.newsletter button{
padding:15px 35px;
background:#d4af37;
border:none;
border-radius:30px;
font-weight:bold;
cursor:pointer;
}
/* ===== FOOTER ===== */

.footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:60px 20px;
    margin-top:80px;
}

.footer h2{
    color:#d4af37;
    font-size:36px;
    margin-bottom:10px;
}

.footer p{
    color:#ccc;
    margin:10px 0;
}

.footer-links{
    margin:30px 0;
}

.footer-links h3{
    color:#d4af37;
    margin-bottom:15px;
}

.footer-links a{
    display:block;
    color:white;
    text-decoration:none;
    margin:8px 0;
    transition:.3s;
} 

.footer-links a{
    display:block;
    color:#ffffff !important;
    text-decoration:none;
    margin:8px 0;
    transition:0.3s;
    font-weight:500;
}

.footer-links a:hover{
    color:#d4af37 !important;
}
