/* RESET & BASE */
:root {
  --soil-brown: #311f1a;
  --clay-orange: #d2691e;
  --beige: #f3efe0;
  --accent-yellow: #db981c;
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --brown: #b97926;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--brown);
  color: #2e2e2e;
  box-sizing: border-box;
}

/* NAVBAR */

/* HERO SECTION */
.hero-static {
  position: relative;
  height: 50vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-heading {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: var(--overlay-dark);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.hero-heading h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}

/* INTRO SECTION */
.product-intro {
  background-color: #f3efe0;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.product-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 1200px;
  margin: 1rem auto;
  color: #795548;
}

/* PRODUCT GALLERY */
.product-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 4rem 2rem;
  gap: 2rem;
  background-color: var(--beige);
  max-width: 2000px;
  margin: 0 auto;
}

.product-card {
  background-color: white;
  border: 3px solid #b46d10;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  max-width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.product-card img {
  transform: scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
}



.product-card h3 {
  font-size: 1.4rem;
  margin: 1rem 0 0.5rem;
  color: var(--clay-orange);
}

.product-card .btn {
  display: inline-block;
  margin: 1rem 0 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-yellow);
  color: #311f1a;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.product-card .btn:hover {
  background-color: #f7c43d;
  color: #000;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* FOOTER */
.footer {
  background-color: var(--soil-brown);
  color: white;
  padding: 3rem 2rem 1.5rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.footer-column p,
.footer-column ul {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li a {
  color: #e0e0e0;
  text-decoration: none;
}

.footer-column li a:hover {
  color: var(--accent-yellow);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
}

.footer-bottom img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-bottom p {
  font-style: italic;
  color: #e0e0e0;
}

/* ANIMATIONS */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate.show {
  opacity: 1;
  transform: translateY(0px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .product-gallery {
    flex-direction: column;
    align-items: center;
  }

  .hero-heading h1 {
    font-size: 2.4rem;
  }

  .product-intro p {
    font-size: 1.1rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    text-align: center;
  }

  .product-card {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    padding: 1rem;
  }

  .hero-heading h1 {
    font-size: 2rem;
  }

  .product-intro p {
    font-size: 1rem;
  }
}
