/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}


/* Existing logo style */
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Smaller logo on small screens */
@media (max-width: 768px) {
  .logo-img {
    height: 30px; /* slightly smaller */
  }
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  color: #A61919;
}

.navbar ul li a {
  text-decoration: none;
  color: #A61919;
  font-weight: 700;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #FF6600;
}/* Navbar links default alignment (large screens) */
.navbar .navbar-collapse {
  justify-content: flex-end; /* right corner on large screens */
}

/* Center navbar links on small screens */
@media (max-width: 768px) {
  .navbar .navbar-collapse {
    justify-content: center; /* center menu on small screens */
  }
  .navbar-nav {
    text-align: center;
    flex-direction: column; /* stack vertically */
    gap: 1rem;
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
}


/* Mobile menu */
.mobile-menu {
  display: none;
  cursor: pointer;
}
.mobile-menu div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.hero {
  position: relative;
  width: 100%;
  height: auto;       /* auto height preserves aspect ratio */
  overflow: hidden;
  margin-top: 80px;   /* space below fixed navbar */
}

.hero video {
  width: 100%;    /* full width on all devices */
  height: auto;   /* maintain aspect ratio */
  display: block; /* remove extra bottom space */
  z-index: -1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 0 20px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.hero-content a {
  padding: 0.8rem 2rem;
  background-color: #FF6600;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-content a:hover {
  background-color: #e65c00;
}

/* Optional overlay for contrast */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
  z-index: 0;
}

/* Responsive text */
@media (max-width: 1200px) { 
  .hero-content h1 { font-size: 2.5rem; } 
  .hero-content p { font-size: 1rem; }
}

@media (max-width: 992px) { 
  .hero-content h1 { font-size: 2rem; } 
  .hero-content p { font-size: 0.95rem; }
}

@media (max-width: 768px) { 
  .hero-content h1 { font-size: 1.6rem; } 
  .hero-content p { font-size: 0.9rem; }
}

@media (max-width: 576px) { 
  .hero-content h1 { font-size: 1.4rem; } 
  .hero-content p { font-size: 0.85rem; }
}

/* Slogan Section */
.slogan-section {
  background: linear-gradient(90deg, #8B4513, #5C2D0C);
  overflow: hidden;
  padding: 10px 0;
}
.marquee {
  display: flex;
  width: 100%;
}
.marquee-content {
  display: flex;
  animation: marquee 15s linear infinite;
}
.marquee-content span {
  color: #ffffff  ;
  font-weight: 600;
  font-size: 1.2rem;
  white-space: nowrap;
  margin-right: 2rem;
}
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* About Section */
/* Gradient Heading for About Us */
.about-heading {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #8B4513, #5C2D0C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

/* Paragraphs styling */
.about-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5C2D0C; /* darker brown for text */
  margin-bottom: 15px;
  font-weight: 500;
}

/* Images adjustments for responsiveness */
.about-section .about-img {
  width: 80%;
  max-width: 350px;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.about-section .about-img:hover {
  transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .about-heading {
    font-size: 2rem;
    text-align: center;
  }
  .about-section p {
    text-align: center;
  }
  .about-section .about-img {
    width: 70%;
    margin: 0 auto 15px;
  }
}

/* Parallax Overlay Section */
.about-parallax-section {
  background-image: url('/assets/bg.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.about-parallax-section .overlay {
  background-color: rgba(0, 0, 0, 0.7);
  width: 80%;
  max-width: 900px;
  padding: 50px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.about-parallax-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-parallax-section p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-parallax-section h2 {
    font-size: 2rem;
  }
  .about-parallax-section p {
    font-size: 1rem;
  }
  .about-parallax-section .overlay {
    width: 90%;
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .about-parallax-section h2 {
    font-size: 1.7rem;
  }
  .about-parallax-section p {
    font-size: 0.95rem;
  }
  .about-parallax-section .overlay {
    width: 95%;
    padding: 30px 15px;
  }
}

/* Why Us Section */
.why-us-section {
  background-color: white;
  padding: 80px 20px;
  text-align: center;
}
.why-us-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
.why-us-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}
.why-us-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.why-us-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 180px;
}
.why-us-item h4 {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #333;
}
.why-us-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

/* Recipes Section */
.recipes-section {
  background-color: #fdfdfd;
}
.recipes-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}
.recipes-section .recipe-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.recipes-section .recipe-product {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 80px;
  height: 80px;
}
.recipes-section .recipe-product .product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  background-color: #fff;
}
.recipes-section .recipe-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}
.recipes-section .recipe-desc {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}
.recipes-section .recipe-buttons a {
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.recipes-section .recipe-buttons .btn-primary {
  background-color: #FF6600;
  border: none;
}
.recipes-section .recipe-buttons .btn-primary:hover {
  background-color: #e65c00;
}
.recipes-section .recipe-buttons .btn-outline-primary {
  border: 2px solid #FF6600;
  color: #FF6600;
}
.recipes-section .recipe-buttons .btn-outline-primary:hover {
  background-color: #FF6600;
  color: #fff;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { font-size: 1rem; }
  .about-parallax-section .overlay { width: 80%; }
}

@media (max-width: 992px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 0.95rem; }
  .about-section .about-img { width: 70%; }
  .why-us-item { width: 150px; }
}

@media (max-width: 768px) {
 

  .hero-content h1 { font-size: 1.6rem; }
  .hero-content p { font-size: 0.9rem; }
  .about-section .about-img { width: 80%; margin: 0 auto; align-self: center; }
  .recipes-section .recipe-product { bottom: -10px; left: 50%; transform: translateX(-50%); }
  .recipes-section .recipe-buttons a { margin-bottom: 10px; }
}

@media (max-width: 576px) {
  .hero-content h1 { font-size: 1.4rem; }
  .hero-content p { font-size: 0.85rem; }
  .why-us-row { gap: 20px; }
  .why-us-item { width: 100%; }
  .about-parallax-section .overlay { padding: 40px 15px; }
}
/* Contact Page Hero Section */
.products-container {
  position: relative;
  margin-top: 80px;
  width: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;       /* full width */
  height: auto;      /* scale proportionally */
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}


/* Gradient Text (used in headings) */
.text-gradient {
  background: linear-gradient(90deg, #5C2D0C,#A61919 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Contact Section */
.contact-section h2 {
  font-size: 2rem;
}

.contact-section p {
  font-size: 1.05rem;
  color: #555;
}

/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}
.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: calc(200%); /* duplicated items for infinite scroll */
  animation: scroll 30s linear infinite;
}

.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px; /* adjust width of each item */
  margin-right: 40px;
}

.carousel-item img {
  height: 120px;
  object-fit: contain;
}

.carousel-item p {
  margin-top: 8px;
  font-weight: bold;
  color: #A61919;
  font-size: 1rem;
  text-align: center;
}

/* Scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media(max-width:768px){
  .carousel-item {
    min-width: 100px;
    margin-right: 20px;
  }
  .carousel-item img {
    height: 80px;
  }
  .carousel-item p {
    font-size: 0.8rem;
  }
}