*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#FFF9F5;
  color:#2B2B2B;
}

a{
  text-decoration:none;
}

/* NAVBAR */

.navbar{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:20px 8%;

  position:fixed;
  top:0;
  z-index:1000;

  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(10px);
}

.logo{
  font-size:32px;
  font-weight:700;
  color:#D4A373;

  font-family:'Playfair Display',serif;
}

nav ul{
  display:flex;
  gap:25px;
  list-style:none;
}

nav ul li a{
  color:#2B2B2B;
  font-weight:500;
  transition:0.3s;
}

nav ul li a:hover{
  color:#D4A373;
}

.btn{
  background:#D4A373;
  color:white;

  padding:12px 25px;

  border-radius:30px;

  display:inline-block;

  transition:0.3s;
}

.btn:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.btn-outline{
  border:2px solid #D4A373;

  color:#D4A373;

  padding:12px 25px;

  border-radius:30px;

  margin-left:15px;
}

/* HERO */

.hero{
  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:130px 8%;

  gap:60px;
}

.hero-text{
  flex:1;
}

.hero-text h1{
  font-size:68px;

  line-height:1.2;

  margin-bottom:20px;

  font-family:'Playfair Display',serif;
}

.hero-text p{
  line-height:1.8;

  font-size:18px;

  margin-bottom:30px;
}

.hero-image{
  flex:1;
}

.hero-image img{
  width:100%;
  border-radius:30px;

  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* SECTION */

.section{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:45px;
  color:#D4A373;

  margin-bottom:10px;

  font-family:'Playfair Display',serif;
}

.section-title p{
  color:#666;
}

/* ABOUT */

.about-container{
  display:grid;
  grid-template-columns:1fr 1fr;

  gap:50px;
  align-items:center;
}

.about-image img{
  width:100%;
  border-radius:25px;
}

.about-text h3{
  font-size:35px;
  margin-bottom:20px;
}

.about-text p{
  line-height:1.8;
}

.about-cards{
  display:flex;
  gap:20px;

  margin-top:30px;
}

.card{
  background:white;

  padding:25px;

  border-radius:20px;

  box-shadow:0 10px 25px rgba(0,0,0,0.08);

  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px);
}

/* SERVICES */

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:30px;
}

.service-card{
  background:white;

  padding:40px;

  border-radius:25px;

  text-align:center;

  box-shadow:0 10px 25px rgba(0,0,0,0.08);

  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card h3{
  color:#D4A373;
  margin-bottom:15px;
}

/* PRODUCTS */

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:30px;
}

.product-card{
  background:white;

  border-radius:25px;

  overflow:hidden;

  box-shadow:0 10px 25px rgba(0,0,0,0.08);

  transition:0.3s;
}

.product-card:hover{
  transform:translateY(-10px);
}

.product-card img{
  width:100%;
  height:300px;

  object-fit:cover;
}

.product-card h3{
  padding:20px 20px 10px;
  color:#D4A373;
}

.product-card p{
  padding:0 20px 25px;
}

/* PROMO */

.promo-container{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:30px;
}

.promo-card{
  background:white;

  padding:40px;

  border-radius:25px;

  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.promo-card h3{
  color:#D4A373;
  margin-bottom:15px;
}

.promo-card p{
  margin-bottom:20px;
  line-height:1.8;
}

/* GALLERY */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:20px;
}

.gallery-grid img{
  width:100%;
  height:400px;

  object-fit:cover;

  border-radius:25px;

  transition:0.3s;
}

.gallery-grid img:hover{
  transform:scale(1.03);
}

/* WHY */

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:30px;
}

.why-card{
  background:white;

  padding:35px;

  border-radius:25px;

  text-align:center;

  box-shadow:0 10px 25px rgba(0,0,0,0.08);

  transition:0.3s;
}

.why-card:hover{
  transform:translateY(-10px);
}

.why-card h3{
  color:#D4A373;
  margin-bottom:15px;
}

/* TESTIMONIAL */

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:30px;
}

.testimonial-card{
  background:white;

  padding:40px;

  border-radius:25px;

  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-card p{
  line-height:1.8;
  margin-bottom:20px;
}

/* CONTACT */

.contact-container{
  display:grid;
  grid-template-columns:1fr 1fr;

  gap:50px;
}

.order-form{
  background:white;

  padding:40px;

  border-radius:25px;

  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.order-form h3{
  font-size:32px;

  margin-bottom:25px;

  color:#D4A373;

  font-family:'Playfair Display',serif;
}

form{
  display:flex;
  flex-direction:column;
}

form input,
form textarea{
  margin-bottom:20px;

  padding:15px;

  border:none;

  border-radius:15px;

  background:#f5f5f5;

  font-family:'Poppins',sans-serif;
}

.contact-info{
  background:white;

  padding:40px;

  border-radius:25px;

  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-info h3{
  font-size:35px;

  color:#D4A373;

  margin-bottom:20px;

  font-family:'Playfair Display',serif;
}

.contact-info p{
  line-height:1.8;
}

.contact-info a{
  color:#2B2B2B;
}

.info-box{
  margin-top:25px;

  padding-bottom:15px;

  border-bottom:1px solid rgba(0,0,0,0.08);
}

.info-box h4{
  color:#D4A373;
  margin-bottom:8px;
}

/* FOOTER */

footer{
  background:#2B2B2B;

  color:white;

  text-align:center;

  padding:60px 20px;
}

footer h2{
  color:#D4A373;

  font-size:35px;

  margin-bottom:20px;

  font-family:'Playfair Display',serif;
}

footer p{
  margin:10px 0;
}

footer a{
  color:#D4A373;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
  position:fixed;

  right:30px;
  bottom:30px;

  background:#25D366;
  color:white;

  padding:15px 22px;

  border-radius:50px;

  font-weight:600;

  z-index:999;

  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */

@media(max-width:992px){

  nav{
    display:none;
  }

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-text h1{
    font-size:45px;
  }

  .about-container,
  .service-grid,
  .product-grid,
  .promo-container,
  .gallery-grid,
  .why-grid,
  .testimonial-grid,
  .contact-container{
    grid-template-columns:1fr;
  }

  .about-cards{
    flex-direction:column;
  }

}