/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #fffaf0;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}



/* ===== NAVIGATION ===== */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 20px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  border-radius: 20px; /* or higher for more curvature */
  overflow: hidden;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1px;
  text-decoration: none;
}

.logo-img {
  height:max-content;
  max-height: 110px; /* was ~60px */
  width: auto;
  object-fit: contain;
}

/*.logo-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #d2691e;
}*/

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}




nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}

nav a:hover {
  color: #a88c04;
}

.cta-button {
  background-color: #c8b245;
  color: white !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #a88c04;
}



/* ===== HERO SECTION ===== */
.hero {
  background: url('../images/hero.png') center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;

}

.hero-text {
  background: rgba(255, 255, 255, 0.88);
  margin: auto;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 720px;
  width: 100%;
}

.hero h1 {
  font-family: 'Anton', sans-serif; /* or Heading Now ExtraBold if loaded */
  font-weight: 900;
  font-stretch: expanded;
  letter-spacing: 1px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: #333;
}

.tagline {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: bold;
  color: #a88c04;
  margin-bottom: 10px;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 10px auto 20px;
}


.btn {
  display: inline-block;
  background-color: #c8b245;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
}

.btn:hover {
  background-color: #a88c04;
}

.btn:active {
  transform: scale(0.98);
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

/* ===== SECTIONS ===== */
section {
  padding: 60px 20px;
  text-align: center;
  font-size: large;
  }

.story-text {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
}

.story-lead {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.bolder {
  font-family: 'Anton', sans-serif; /* or Heading Now ExtraBold if loaded */
  font-weight: 900;
  letter-spacing: 1px;
}

.makhanoo-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  font-size: 32px;  /* boost heading size */
  margin-top: 1rem;
  white-space: nowrap;
}

.makhanoo-img {
  height: 300px;       /* increased from 40–60 to 70px */
  max-width: none;
  object-fit: contain;
}


section h2 {
  font-size: 32px;
  color: #a88c04;
  margin-bottom: 30px;
}

/*.section-banner img.banner-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}*/

.testimonial-section {
  padding: 60px 20px;
  text-align: center;
  background: #fffef9;
}


.testimonial-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
  padding: 20px 0px;
  overflow: hidden;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  padding: 20px;
  max-width: 300px;
  margin: auto;
}

.testimonial-body .stars {
  color: gold;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.testimonial-footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}




.testimonial-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}



.founders {
  background: #fffef9;
  padding: 60px 20px;
  text-align: center;
}

.founder-grid {
  display: flex;
  gap: 100px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 30px auto 0;
}

.founder-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 260px;
  transition: transform 0.3s ease;
}

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

.founder-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.founder-info {
  padding: 15px;
}

.founder-info h3 {
  margin: 10px 0 5px;
  font-size: 20px;
  color: #333;
}

.founder-info p {
  font-size: 14px;
  color: #666;
}


.contact-form {
  max-width: 500px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.contact-form button {
  background-color: #c8b245;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #a88c04;
}

.form-spacer {
  height: 60px;
}


/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 0 40px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #333;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #cdbc64;
  color: #333;
  padding: 30px 20px 15px;
  padding-bottom: 0%;
  font-size: 14px;
  border-top: 1px solid #ccc;
  border-radius: 20px; /* or higher for more curvature */
  overflow: hidden;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 250px;
}

.footer-logo-circle {
  max-width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.social-btn {
  background-color: #bba742;
  color: white;
  font-size: 18px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.3s;
  text-decoration: none;
}

.social-btn:hover {
  transform: scale(1.15);
  background-color: #a88c04;
}

.footer-right p {
  margin: 5px 0;
  text-align: left;
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  border-top: 1px solid #ccc;
  padding-top: 15px;
  font-weight: 500;
}




/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: visible;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 20px; /* or higher for more curvature */
    overflow: hidden;
    z-index: 9999; /* Ensure it's above other elements */
  }

  .hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full screen height */
    padding: 0 20px;
    text-align: center;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    margin: 10px 0;
  }

  .logo-wrap {
    flex-grow: 1;
  }

  .logo-img {
    max-height: 110px;
    height: auto;
    width: auto;
  }

  .makhanoo-heading {
    font-size: 1.6rem;
    gap: 12px;
  }

  .makhanoo-img {
    height: 100px;
    max-height: max-content;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    padding: 10px 5px;
  }

  .footer-logo-circle {
    margin: 0 auto 1px;
    max-width: 140px; /* increase from ~90–100px */
  }

  .footer-socials {
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
  }

  .footer-right {
    font-size: 14px;
    line-height: 1.5;
    text-align: center
  }

  .footer-left {
    font-size: 14px;
    line-height: 1.5;
    text-align: center
  }

  .footer-bottom {
    margin-top: 5px;
    padding-top: 5px;
    font-size: 10px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1 1 1px;
  }

/*  .section-banner img.banner-img {
    display: block;
  }*/
}


@media (max-width: 480px) {
  .hero h1 {
    font-size: 50px;
  }

  .hero-text {
    margin-top: 30px;
  }

  .btn {
    width: 100%;
    display: block;
  }

  .social-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .makhanoo-heading {
    font-size: 1.8rem;
    gap: 7px;
  }

  .makhanoo-img {
    height: 100px;
  }


}

