/* ===================== HERO SECTION ===================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Hero Image */
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Centered Content */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* Text */
.hero-overlay h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: clamp(0.9rem, 2vw, 2.1rem);
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* our product range styling */
/* Spices Content Styling */
.spices-content {
  max-width: 1100px;
  margin: 60px auto 30px;
  padding: 0 20px;
  text-align: center;
}

.spices-content h1 {
  font-size: 53px;
  color: #642B03;
  margin-bottom: 20px;
}

.spices-content p {
  font-size: 25px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}
/* spices content Responsive */
@media (max-width: 768px) {
  .spices-content h1 {
    font-size: 28px;
  }

  .spices-content p {
    font-size: 16px;
  }
}
/* ================= PRODUCTS CONTENT ================= */
.products-content {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.products-content h1 {
  font-size: 53px;
  color: #642B03;
  margin-bottom: 20px;
}

.products-content p {
  font-size: 25px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}
/* ================= PRODUCTS CARDS SECTION ================= */
.products-section {
  padding: 80px 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Card */
.product-card {
  text-align: center;
}

/* Image wrapper */
.product-img {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

/* Image */
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

/* Overlay */
.product-img .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-align: center;
  padding: 10px;
}

/* Underline text */
.product-img .overlay span {
  position: relative;
  padding-bottom: 8px;
}

.product-img .overlay span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* Hover effects */
.product-img:hover img {
  opacity: 0.35;
}

.product-img:hover .overlay {
  opacity: 1;
  transform: translateX(0);
}

/* Card title */
.product-card h3 {
  margin-top: 14px;
  font-size: 18px;
  color: #642B03;
  font-weight: 600;
}
.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .products-content h1 {
    font-size: 28px;
  }

  .products-content p {
    font-size: 16px;
  }

  .product-img {
    height: 220px;
  }

  .product-img .overlay {
    font-size: 18px;
  }
}

/* ============================ FOOTER ============================ */
.footer {
  position: relative;
  overflow: hidden;
  padding: 90px 50px;
  text-align: center;

  min-height: 300px; /* ✅ forces background area on desktop */
}


/* Background */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/39511/purple-grapes-vineyard-napa-valley-napa-vineyard-39511.jpeg') center / cover no-repeat;
  filter: brightness(45%);
  z-index: 0;
    display: block;
}

.footer > * {
  position: relative;
  z-index: 1;
}

/* ============================ HEADING ============================ */
.footer-heading .sub-title {
  font-size: 26px; /* BIG */
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
  color: #fff;
}

.connection-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 50px;
}

.connection-container .line-image {
  width: 300px;
  filter: invert(1) brightness(2);
}

.connection-container .main-title {
  font-size: 64px; /* VERY BIG */
  font-weight: 400;
  letter-spacing: 3px;
  padding: 0 10px;
  color: #fff;
}

/* ============================ CONTENT ============================ */
.footer-content {
  margin-top: 70px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: center;
  text-align: left;
}

.footer-column {
  max-width: 360px;
}

/* Column Heading */
.footer-column h4 {
  font-size: 24px; /* BIG */
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}

/* Text & Links */
.footer-column p,
.footer-column a {
  font-size: 17px; /* CLEARLY VISIBLE */
  line-height: 1.9;
  color: #fff;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-column ul li {
  list-style: none;
}

/* Icons */
.footer-column a i {
  font-size: 18px;
}

/* Hover underline */
.footer-column a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #dac7bf;
  transition: width 0.3s ease;
}

/* ============================ FOOTER BOTTOM ============================ */
.footer-bottom {
  margin-top: 70px;
  padding: 30px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 16px; /* BIG */
  color: #fff;
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 768px) {
  .footer {
    padding: 60px 25px;
  }

  .connection-container .main-title {
    font-size: 42px;
  }

  .connection-container .line-image {
    width: 140px;
  }

  .footer-column h4 {
    font-size: 20px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 15px;
  }

  .footer-bottom {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
  }

  .footer::before {
    background-image: url('https://images.pexels.com/photos/4451867/pexels-photo-4451867.jpeg');
  }

  .footer {
    padding: 30px 20px;
  }

  .footer-columns {
    gap: 30px;
    text-align: center;
    left: 0 !important;
  }

  

  .footer-column {
    flex: 1 1 100%;
    max-width: 100%;
  }

    .connection-container {
        margin: 10px 0 20px;
    }

    .connection-container .main-title {
        font-size: 32px;
    }

    .connection-container .line-image.left {
        width: 100px;
        margin-right: -14px;
    }

    .connection-container .line-image.right {
        width: 100px;
        margin-left: -17px;
    }

  .footer-bottom {
    font-size: 10px;
    padding: 15px 10px;
    flex-direction: column;
  }


}