/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2e2e2;
  /* Added overflow-x: hidden to prevent horizontal scrolling on mobile */
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Navbar Section */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f2e2e2;
  padding: 1rem 2rem;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo img {
  max-width: 180px;
  height: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0; /* Removed auto margin to avoid centering issues on smaller screens */
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: #101010;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px;
  transition: background-color 0.3s ease;
}

.nav-links a:hover {
  background-color: #ff3d00;
  color: #fff;
  border-radius: 5px;
}

.login-btn {
  background-color: #e63946;
  color: #fff;
  border-radius: 5px;
  padding: 8px 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: #d62828;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-icon {
  font-size: 1.2rem;
}

.phone-number {
  font-weight: bold;
  color: #333;
  font-size: 1rem;
  text-decoration: none;
}

/* Added a hamburger menu for mobile */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
  color: #333;
}

@media (max-width: 992px) {
  .nav-links,
  .contact-info {
    display: none;
  }

  .menu-toggle { /* Use .menu-toggle instead of .hamburger */
    display: block;
    margin-left: auto; /* Push it to the right */
    padding-right: 20px; /* Add some padding on the right side */
    cursor: pointer;
  }

  .navbar {
    /* Change justify-content to space-between and remove extra styles */
    justify-content: space-between;
    padding: 1rem 2rem;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #f2e2e2;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    align-items: center;
    gap: 1rem;
  }

  .nav-links li {
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    width: 100%;
  }

  .contact-info {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 60px;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  padding: 0 20px;
}

.hero h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  margin: 0;            /* REMOVE large negative margins */
  margin-top: 0;        /* Reset so text stays centered */
}

.hero p {
  font-size: clamp(1rem, 3vw, 1.5rem); /* Responsive font size */
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
    min-height: 400px;
  }
  .hero h2 {
  margin-top: 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

}

/* About Us Section */
.about-section {
  background-color: #f2e2e2;
  padding: 60px 20px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.about-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: bold;
  color: #e71022;
  margin-bottom: 10px;
  text-align: center;
}

.about-intro {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 500;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.about-text {
  font-size: clamp(1rem, 2vw, 1.6rem);
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlight {
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
  margin-top: 30px;
  text-align: center;
}

/* Product Section */
.featured-products-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f2e2e2;
  font-family: 'Roboto', sans-serif;
}

.featured-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}

/* Using Grid for a flexible layout */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding-right: 0;
}

.featured-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  width: auto;
}

.featured-card:hover {
  transform: translateY(-5px);
}

.featured-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
  height: 200px;
  object-fit: cover;
}

.featured-card h3 {
  margin: 10px 0 5px 0;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #222;
}

.featured-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.read-more-container {
  margin-top: 40px;
  text-align: center;
}

.read-more-btn {
  display: inline-block;
  background-color: #e63946;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #d62828;
}

/* Featured Product Slider */
.product-slider-section {
  padding: 50px 0;
  text-align: center;
  background: #f2e2e2;
}

.slider-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 30px;
}

.carousel {
  overflow: hidden;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-card {
  flex: 0 0 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.carousel-card img {
  width: 90%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.carousel-card h3 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.carousel-card.active {
  transform: scale(1.1);
  z-index: 2;
}

.carousel-card.inactive {
  opacity: 0.8;
}

/* Organic Products Section */
.organic-section {
  text-align: center;
  padding: 20px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 30px;
  font-weight: bold;
}

/* Using Flexbox for a responsive layout */
.product-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product-card h3 {
  margin: 10px 0 5px 0;
  font-size: 1.5rem;
}

.product-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Meet Our Team */
.team-section {
  padding: 60px 20px;
  background-color: #f2e2e2;
}

.team-section .section-title {
    text-align: center; 
    margin-bottom: 40px; /* Optional: adds some space below the heading */
}

.founder-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.founder-image {
  flex-shrink: 0;
}

.founder-image img {
  width: 250px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.founder-info {
  flex: 1;
  max-width: 600px;
}

@media (max-width: 768px) {
  .founder-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .founder-image img {
    width: 100%;
    max-width: 300px;
  }
  .founder-info {
    max-width: 100%;
  }
}

/* Happy Clients */
.clients-section {
  padding: 60px 20px;
  background: #f2e2e2;
  text-align: center;
}

.client-carousel {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 220px;
  padding: 40px 0;
}

.client-card {
  background: rgba(255, 255, 255, 0.85);
  background-image: url('assets/bg.png');
  background-size: cover;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
  text-align: center;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.client-card.active {
  opacity: 1;
  transform: scale(1);
}

.client-card h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 10px;
  color: #000;
}

.client-card p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #333;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .client-carousel {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .client-card {
    max-width: 90%;
  }
}

/* FAQ Section */
.faq-heading {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: #000;
  margin-top: 60px;
  margin-bottom: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-section {
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 30px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.faq-question {
  display: block;
  font-weight: bold;
  font-size: clamp(1rem, 2vw, 1.125rem);
  cursor: pointer;
  padding: 10px 0;
  color: #333;
  transition: color 0.3s ease;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 10px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-question:hover {
  color: #ff3d00;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 15px;
  color: #555;
  padding-left: 10px;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 200px;
  padding-top: 10px;
}

/* Footer */
.footer {
  background-color: #222;
  color: #eee;
  padding: 40px 20px 20px;
  font-family: 'Roboto', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3 {
  margin-bottom: 15px;
  color: #ff3d00;
  font-size: 18px;
}

.footer-column p,
.footer-column ul {
  font-size: 14px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff3d00;
}

.footer-social a {
  margin-right: 10px;
  display: inline-block;
}

.footer-social img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  border-top: 1px solid #444;
  padding-top: 15px;
  color: #aaa;
}

/* New CSS for mobile navigation */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
  transition: 0.4s;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 60px;
    right: 0;
    width: 250px;
    height: 100vh;
    flex-direction: column;
    background-color: #f2e2e2;
    transform: translateX(100%);
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    z-index: 999;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    padding: 10px 0;
  }
  
  .menu-toggle {
    display: flex;
  }
}



/* products page */
/* Chicken Products Section */
.chicken-products-section {
  text-align: center;
  padding: 20px;
}

.chicken-products-section .featured-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: bold;
  margin-top: 100px;
}

/* Grid Container */
.chicken-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Individual Card */
.chicken-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 350px; /* Reduced width to fit 3 cards per row */
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.chicken-card:hover {
  transform: translateY(-5px);
}

.chicken-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.chicken-card h3 {
  margin: 10px 0 5px 0;
  font-size: 1.5rem;
  color: #333;
}

.chicken-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .chicken-card {
    width: 100%;
  }

  .chicken-grid {
    gap: 30px;
  }
}
.order-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.order-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.order-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  text-align: center;
}

.order-form input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.order-form button {
  margin: 10px 5px;
  padding: 10px 20px;
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.order-form button[type="button"] {
  background-color: #ccc;
  color: #333;
}

html, body {
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
}
/* Navbar height fix so it doesn't overlap hero */
header {
  position: relative;
  z-index: 1000;
}

body {
  padding-top: 60px; /* match your navbar height */
}
