/* =================================
   GLOBAL STYLES
   ================================= */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #faf7f2;
  color: #3b2f2f;
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

section {
  padding: 40px 80px;
  max-width: 1100px;
  margin: auto;
}

/* =================================
   HERO SECTION
   ================================= */

.hero {
  background-color: #7b1e1e;
  color: #ffffff;
  text-align: center;
  padding: 150px 80px;
  position: relative;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-block;
  background-color: #f4c430;
  color: #3b2f2f;
  text-decoration: none;
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 4px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #ffffff;
  color: #7b1e1e;
}

/* =================================
   SCROLL DOWN INDICATOR
   ================================= */

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: #ffffff;
  opacity: 0.7;
  animation: bounce 2s infinite;
  text-decoration: none;
}

.scroll-down:hover {
  opacity: 1;
}

/* Bounce animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(8px);
  }
  60% {
    transform: translateX(-50%) translateY(4px);
  }
}

/* =================================
   SECTION HEADINGS
   ================================= */

h2 {
  font-size: 36px;
  color: #7b1e1e;
  margin-bottom: 28px;
}

/* =================================
   PRODUCTS SECTION
   ================================= */

.products {
  background-color: #faf7f2;
}

/* .product-card {
  width: 30%;
  display: inline-block;
  vertical-align: top;
  margin-right: 5%;
  margin-bottom: 40px;
  background-color: #ffffff;
  padding: 35px;
  border-radius: 10px;
} */
.products-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.product-card {
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  padding: 35px;
  border-radius: 10px;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.product-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
}

/* =================================
   CERTIFICATIONS
   ================================= */

.certifications {
  display: flex;
  gap: 40px;
  margin-top: 25px;
}

.cert-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  width: 260px;
}

.cert-card img {
  height: 70px;
  margin-bottom: 15px;
}

.cert-card p {
  margin: 6px 0;
  font-size: 14px;
}

/* =================================
   CONTACT
   ================================= */

.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #25d366;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 4px;
  font-weight: 500;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

/* =================================
   FOOTER
   ================================= */

footer {
  text-align: center;
  padding: 20px;
  background-color: #7b1e1e;
  color: #ffffff;
  font-size: 14px;
}

/* =================================
   MOBILE RESPONSIVE
   ================================= */

@media (max-width: 768px) {
  section {
    padding: 45px 20px;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .product-card {
    width: 100%;
    margin-right: 0;
  }

  .certifications {
    flex-direction: column;
    align-items: center;
  }
}
