/* Reset & base */
* {
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fffef9;
  color: #444;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

/* Logo with image and text */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.logo img {
  height: 40px; /* Adjust as needed */
  width: auto;
  display: block;
}

.logo span {
  font-weight: 800;
  font-size: 1.6rem;
  color: #bb7722;
  letter-spacing: 2px;
}

.logo span a {
  color: #bb7722;
  transition: color 0.3s ease;
  letter-spacing: 2px;
}

/* Navigation */
header nav {
  display: flex;
  gap: 20px;
}

header nav a {
  margin: 0 5px;
  font-weight: 600;
  color: #555;
}
header nav a:hover,
header nav a:focus {
  color: #bb7722;
  outline: none;
}

/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  box-sizing: content-box;
  z-index: 1001;
}

.hamburger:focus {
  outline: 2px solid #bb7722;
  outline-offset: 2px;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: #bb7722;
  border-radius: 10px;
  transition: all 0.3s ease;
  transform-origin: 1px;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg);
}

/* Nav styling for mobile */
@media (max-width: 900px) {
  header nav {
    position: fixed;
    top: 70px; /* height of the header */
    right: 0;
    background: #fffef9;
    height: calc(100vh - 70px);
    width: 250px;
    padding-top: 2rem;
    flex-direction: column;
    gap: 20px;
    box-shadow: -5px 0 15px rgba(187, 119, 34, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  header nav.open {
    transform: translateX(0);
  }
  header nav a {
    font-size: 1.2rem;
    margin: 0 1.5rem;
    padding: 0.7rem 1rem;
  }
  .hamburger {
    display: flex;
  }
}

/* Hero Section */
.hero {
  background: url('images/herobg.png') center/cover no-repeat fixed;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(43, 32, 12, 0.55);
  z-index: 0;
}
.hero-content {
  position: relative;
  max-width: 700px;
  z-index: 1;
  padding: 0 1rem;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 5px #3e2f00;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-shadow: 1px 1px 4px #3e2f00;
}

/* Buttons */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn {
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
  transition: all 0.3s ease;
  text-align: center;
}
.btn.primary {
  background: #bb7722;
  color: white;
  border: 2px solid #bb7722;
}
.btn.primary:hover,
.btn.primary:focus {
  background: #a46a1c;
  border-color: #a46a1c;
  outline: none;
}
.btn.secondary {
  background: #fffef9;
  color: #bb7722;
  border: 2px solid #bb7722;
}
.btn.secondary:hover,
.btn.secondary:focus {
  background: #bb7722;
  color: white;
  outline: none;
}

/* Section Heading */
h2 {
  text-align: center;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #bb7722;
  letter-spacing: 1.2px;
}

/* Introduction paragraph */
.intro {
  text-align: center;
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 3rem auto;
  color: #5a4a05;
}

/* About Section */
.about-container {
  display: flex;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.about-text {
  flex: 1 1 420px;
  font-size: 1rem;
  color: #4c4520;
  line-height: 1.6;
  padding-top: 10px;
}

.founders {
  flex: 1 1 420px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.founder-card {
  background: #fff9e6;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  flex: 1 1 180px;
  box-shadow: 2px 2px 15px rgb(187 119 34 / 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.founder-card:hover,
.founder-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgb(187 119 34 / 0.5);
}
.founder-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 3px solid #bb7722;
}
.founder-card h4 {
  color: #8a6611;
  font-weight: 700;
  margin: 0 0 0.2rem 0;
}
.founder-card span {
  font-size: 0.9rem;
  color: #6b5d1e;
  font-weight: 600;
}
.founder-card p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #514a1a;
  line-height: 1.3;
}

/* Products Section */
.products {
  background: #fffef9;
  padding-bottom: 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}
.product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 2px 2px 18px rgb(187 119 34 / 0.15);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgb(187 119 34 / 0.4);
}
.product-card h4 {
  font-weight: 700;
  color: #a67310;
  margin: 12px 0 6px 0;
}
.product-card p {
  color: #6b5d1e;
  font-size: 1rem;
  min-height: 48px;
}
.product-card button {
  margin-top: 12px;
  background-color: #bb7722;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.product-card button a {
  color: white;
  text-decoration: none;
}

.product-card button:hover,
.product-card button:focus {
  background-color: #a46a1c;
  outline: none;
}

/* Gallery Section */
.gallery {
  padding: 3rem 5%;
  max-width: 900px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.gallery h2 {
  color: #bb7722;
  margin-bottom: 2rem;
  font-weight: 800;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(187, 119, 34, 0.3);
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Image styling */
.mySlides img {
  width: 100%;
  border-radius: 12px;
  vertical-align: middle;
}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px;
  margin-top: -22px;
  color: #bb7722;
  font-weight: bold;
  font-size: 24px;
  border-radius: 50%;
  user-select: none;
  background: rgba(255, 255, 255, 0.8);
  transition: background-color 0.3s;
}
.prev:hover, .next:hover,
.prev:focus, .next:focus {
  background: #bb7722;
  color: white;
  outline: none;
}
.prev {
  left: 15px;
}
.next {
  right: 15px;
}

/* Dot indicators */
.dots {
  margin-top: 15px;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}
.dot.active, .dot:hover, .dot:focus {
  background-color: #bb7722;
  outline: none;
}

/* Responsive */
@media (max-width: 600px) {
  .prev, .next {
    font-size: 20px;
    padding: 10px;
  }
  .dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
  }
}

/* Quality Section */
.quality {
  padding: 3rem 5%;
  max-width: 1100px;
  margin: 0 auto 4rem auto;
  color: #4c4520;
}

.quality h2 {
  text-align: center;
  font-weight: 800;
  font-size: 2.75rem;
  color: #bb7722;
  letter-spacing: 1.4px;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(187, 119, 34, 0.7);
}

.quality-grid {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.quality-item {
  background: #fff9e6;
  border-radius: 14px;
  padding: 30px 25px 25px;
  flex: 1 1 230px;
  max-width: 270px;
  box-shadow: 0 8px 24px rgba(187, 119, 34, 0.25);
  text-align: center;
  cursor: default;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  user-select: none;
  outline-offset: 3px;
}

.quality-item:focus,
.quality-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 40px rgba(187, 119, 34, 0.45);
  outline: none;
}

.icon-wrapper {
  font-size: 3.25rem;
  margin-bottom: 15px;
  color: #bb7722;
  transition: transform 0.3s ease;
}

.quality-item h3 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
  color: #a67310;
  letter-spacing: 0.5px;
}

.quality-item p {
  font-size: 1rem;
  line-height: 1.5;
  color: #5a4a05;
}

/* Responsive for smaller screens */
@media (max-width: 650px) {
  .quality-grid {
    flex-direction: column;
    align-items: center;
  }
  .quality-item {
    max-width: 90vw;
    margin-bottom: 20px;
  }
}

/* FAQ Section */
.faq {
  background: #fffef9;
  padding: 3rem 5%;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  border-radius: 12px;
  box-shadow: 1px 1px 18px rgb(187 119 34 / 0.2);
}
.faq h2 {
  margin-bottom: 2rem;
  color: #bb7722;
}
.faq-item {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid #dcc87c;
}
.faq-question {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: #8b6715;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  position: relative;
  user-select: none;
  transition: color 0.3s ease;
}
.faq-question::after {
  content: '+';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}
.faq-question.active::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
  color: #bb7722;
  font-size: 1.6rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-weight: 400;
  color: #5a5217;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: max-height 0.35s ease;
  padding-left: 1rem;
  margin-bottom: .5rem;
}

/* Contact Section */
.contact {
  padding: 3rem 5%;
  max-width: 1100px;
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact h2 {
  color: #bb7722;
  margin-bottom: 1.5rem;
}
.contact form {
  max-width: 500px;
  margin-bottom: 2rem;
}
.contact form input,
.contact form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1.8px solid #d7c98a;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.25s ease;
}
.contact form input:focus,
.contact form textarea:focus {
  border-color: #bb7722;
  outline: none;
}
.contact form button {
  background-color: #bb7722;
  padding: 14px 25px;
  border: none;
  color: white;
  font-weight: 700;
  border-radius: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact form button:hover,
.contact form button:focus {
  background-color: #a46a1c;
  outline: none;
}

.map iframe {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  box-shadow: 0 8px 26px rgb(187 119 34 / 0.3);
  border: none;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  font-size: 32px;
  border-radius: 50%;
  padding: 12px 15px 10px 15px;
  text-align: center;
  box-shadow: 0 5px 12px rgba(37, 211, 102, 0.7);
  user-select: none;
  z-index: 9999;
  line-height: 1;
  transition: background-color 0.3s ease;
}
.whatsapp-btn:hover,
.whatsapp-btn:focus {
  background-color: #1ebe57;
  outline: none;
}

/* Footer */
footer {
  background: #fff4d1;
  /* color: #e6ddb5; */
  margin-top: 0;
  font-size: 1rem;
  letter-spacing: .1px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 40px 5% 16px 5%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-links, .footer-info {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-links h3,
.footer-info h3 {
  color: #a46a1c;
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-weight: 700;
}

.footer-links ul,
.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li,
.footer-info ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer-links ul li a {
  color: #bb7722;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links ul li a:hover,
.footer-links ul li a:focus {
  color: #704b01;
  text-decoration: underline;
}

.footer-info ul li strong {
  color: #bb7722;
  font-weight: 600;
}

.footer-info a {
  color: #704b01;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-info a:hover,
.footer-info a:focus {
  color: #6b5d1e;
  text-decoration: underline;
}

.footer-social {
  margin-top: 12px;
  display: flex;
  gap: 30px;
}

.footer-social a {
  color: #a46a1c;
  font-size: 2rem;
  display: inline-block;
  transition: color 0.2s, transform 0.2s;
}
.footer-social a svg {
  vertical-align: middle;
  /* font-size: 55rem; */
  transition: transform 0.2s;
}
.footer-social a:hover svg,
.footer-social a:focus svg {
  transform: scale(1.2);
  filter: drop-shadow(0 2px 8px #ffcf87);
}

.footer-bar {
  text-align: center;
  background: #2e1f00;
  color: #e6ddb5;
  padding: 12px 0;
  font-size: .95rem;
  margin-top: 20px;
  letter-spacing: .5px;
}

.footer-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Mobile footer order: info, links, copyright */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    padding: 30px 5% 6px 5%;
  }
  .footer-info { order: 1; }
  .footer-links { order: 2; }
  .footer-bar { order: 3; }
}

/* Responsive */
@media only screen and (max-width: 900px) {
  .about-container {
    flex-direction: column;
    padding: 0 1rem;
  }
  .founders {
    justify-content: center;
  }
  .product-grid {
    padding: 0 1rem;
  }
  .quality-grid {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }
}
