* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f8f9f6;
  color: #2e2e2e;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

.container:hover .imageoverlay {
  opacity: 1;
}



.imageoverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
}


/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(248,249,246,0.95);
  display: flex;
  justify-content: space-between;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #556b2f;
}
.btn {
  background: #556b2f;
  color: white;
  padding: 0.6rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* HERO SLIDER */

/* HERO SLIDER – BASE */
.hero-slider {
  position: relative;
  width: 100%;
  height: 140vh;              /* default for desktops */
  min-height: 520px;          /* prevents too small hero */
  background: #000;
}

/* SLIDES */
.slides {
  position: absolute;
  inset: 0;
  display: none;
}

/* IMAGE */
.slides img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* NO zoom / NO crop */
  background: #000;
}

/* ========================= */
/* 📱 MOBILE (phones) */
/* ========================= */
@media (max-width: 600px) {
  .hero-slider {
    height: 54vh;             /* shorter for mobile */
    min-height: 380px;
  }

  .slides img {
    object-fit: contain;
  }
}

/* ========================= */
/* 📱 TABLETS (iPad) */
/* ========================= */
@media (min-width: 601px) and (max-width: 1024px) {
  .hero-slider {
    height: 106vh;
    min-height: 500px;
  }
}

/* ========================= */
/* 💻 LAPTOPS */
/* ========================= */
@media (min-width: 1025px) and (max-width: 1440px) {
  .hero-slider {
    height: 140vh;
  }
}

/* ========================= */
/* 🖥 LARGE SCREENS */
/* ========================= */
@media (min-width: 1441px) {
  .hero-slider {
    height: 135vh;            /* premium tall look */
    max-height: 1200px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 1rem;
}

.hero-overlay h1 {
  font-size: 3rem;
}

.fade {
  animation: fadeEffect 1.2s ease-in-out;
}

@keyframes fadeEffect {
  from {opacity: .4}
  to {opacity: 1}
}

/* SECTIONS */
.section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

h2 {
  margin-bottom: 2rem;
  color: #556b2f;
}

/* PRODUCT CAROUSEL */
.product-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.product-card {
  min-width: 260px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  scroll-snap-align: start;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f8f9f6;
  border-radius: 18px 18px 0 0;
}

.product-card h4 {
  padding: 1rem;
  color: #556b2f;
}

/* FOOTER */
.footer {
  padding: 2rem;
  text-align: center;
  background: #e6eadf;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 9999;
}

/* IMAGE HOVER SWAP */
.img-hover {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: #f8f9f6;
}

.img-hover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

/* Default image visible */
.img-hover .img-default {
    opacity: 1;
}

/* Hover image hidden initially */
.img-hover .img-hovered {
    opacity: 0;
}

/* On hover: swap images */
.product-card:hover .img-default {
    opacity: 0;
}

.product-card:hover .img-hovered {
    opacity: 1;
}

/* PRODUCT CARD */
.product-card {
  min-width: 260px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  scroll-snap-align: start;
}

/* IMAGE SWAP CONTAINER */
.img-swap {
  position: relative;
  width: 100%;
  height: 220px;
  background: #f8f9f6;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

.img-swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Visible image */
.img-swap img.active {
  opacity: 1;
}

/* Title */
.product-card h4 {
  padding: 1rem;
  text-align: center;
  color: #556b2f;
  font-weight: 600;
}




/* MOBILE */
@media(max-width:768px) {
  .hero-overlay h1 {
    font-size: 2.3rem;
  }
}



/* ABOUT & CONTACT */
.section {
  padding: 80px 20px;
}

.about {
  background: #f7f9f4;
}

.contact {
  background: #ffffff;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2,
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.about-text p,
.contact-info p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}

.tagline {
  font-weight: 600;
  color: #5a6b3b;
}

.about-highlight ul {
  list-style: none;
  padding: 0;
}

.about-highlight li {
  background: #fff;
  padding: 12px 18px;
  margin-bottom: 12px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.social-links .icons a {
  font-size: 28px;
  margin-right: 15px;
  text-decoration: none;
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.reveal.active .fade-left,
.reveal.active .fade-right {
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* INSTA */

.fa {
  padding: 25px;
  width: 10px;
  text-decoration: none;
}

.fa-instagram {
  color: black;
  width: 40px
}
