/* style.css - Updated */
body {
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.text-orange {
  color: #f97316;
}

.text-green {
  color: #10b981;
}

.hero-section {
  background-color: #fff7ed;
  padding-top: 80px; /* Add padding for fixed navbar */
  padding-bottom: 80px;
  overflow: hidden; /* Prevent overflow */
}

.btn-orange {
  background-color: #f97316;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-orange:hover {
  background-color: #ea580c;
}

/* Hero Section Image Container */
.rounded-square {
  width: 100%;
  max-width: 400px;
  height: 400px;
  background-color: #f17e2b;
  border-radius: 30px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Hero Section Image */
.hero-section img.position-absolute {
  z-index: 2;
  max-width: 350px;
  width: 90%;
  height: auto;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

/* Responsive adjustments for hero section */
@media (max-width: 1199px) {
  .rounded-square {
    max-width: 350px;
    height: 350px;
  }
  
  .hero-section img.position-absolute {
    max-width: 300px;
  }
}

@media (max-width: 991px) {
  .hero-section .row {
    flex-direction: column-reverse;
  }
  
  .hero-section .col-md-6 {
    width: 100%;
  }
  
  .rounded-square {
    width: 350px;
    height: 350px;
    margin: 30px auto;
  }
  
  .hero-section img.position-absolute {
    max-width: 300px;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .hero-section p {
    text-align: center;
  }
  
  .hero-section .btn-orange {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .rounded-square {
    width: 300px;
    height: 300px;
  }
  
  .hero-section img.position-absolute {
    max-width: 250px;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .rounded-square {
    width: 250px;
    height: 250px;
  }
  
  .hero-section img.position-absolute {
    max-width: 200px;
  }
  
  .hero-section h1 {
    font-size: 1.8rem;
  }
  
  .hero-section h1 span.bg-success {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* Features Section */
.features-section {
  background-color: #fff7ed;
  padding: 60px 0;
}

.features-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.features-section .card-body img {
  transition: transform 0.3s ease;
}

.features-section .card-body img:hover {
  transform: scale(1.1);
}

/* Responsive adjustments for features section */
@media (max-width: 767px) {
  .features-section .col-md-3 {
    margin-bottom: 20px;
  }
  
  .features-section .card {
    height: auto !important;
    margin-bottom: 15px;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: #fff7ed;
  padding: 80px 0;
}

.why-choose-us h2 {
  color: #f97316;
}

.why-choose-us img.img-fluid {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive adjustments for why choose us */
@media (max-width: 991px) {
  .why-choose-us .row {
    flex-direction: column;
  }
  
  .why-choose-us .col-md-6 {
    width: 100%;
  }
  
  .why-choose-us img.img-fluid {
    max-width: 500px;
    margin: 0 auto;
    display: block;
  }
}

/* Best Products Section */
.best-products {
  background-color: #fff7ed;
  padding: 80px 0;
}

.best-products h2 {
  color: #f97316;
}

.best-products .card {
  transition: transform 0.3s ease;
}

.best-products .card:hover {
  transform: translateY(-5px);
}

.best-products .card-img-top {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.best-products .btn-orange {
  background-color: #f97316;
  color: white;
  border: none;
  padding: 8px 20px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.best-products .btn-orange:hover {
  background-color: #ea580c;
}

/* Responsive adjustments for products */
@media (max-width: 767px) {
  .best-products .col-md-4 {
    margin-bottom: 20px;
  }
  
  .best-products .card-img-top {
    height: 200px;
  }
}

/* Customer Feedback Section */
.customer-feedback {
  background-color: #fff7ed;
  padding: 80px 0;
}

.chef-bg {
  width: 380px;
  height: 380px;
  background-color: #f97316;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.chef-img {
  z-index: 2;
  max-width: 350px;
  width: 100%;
  height: auto;
}

/* Responsive adjustments for feedback section */
@media (max-width: 991px) {
  .chef-bg {
    width: 300px;
    height: 300px;
  }
  
  .chef-img {
    max-width: 280px;
  }
  
  .customer-feedback .row {
    flex-direction: column;
  }
  
  .customer-feedback .col-md-6 {
    width: 100%;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .chef-bg {
    width: 250px;
    height: 250px;
  }
  
  .chef-img {
    max-width: 230px;
  }
}

/* Contact Form Section */
#contact-form {
  background-color: #fff7ed;
  padding: 80px 0;
}

#contact-form iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* Footer Section */
.footer-section {
  background-color: #1f2937;
  font-size: 15px;
  padding: 60px 0 30px;
}

.footer-section h5,
.footer-section h6 {
  color: #f97316;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

/* Navigation hover effects */
nav li:hover {
  transition: 0.5s;
  background-color: #f48f48;
  border-radius: 15px;
}

nav li {
  transition: 0.3s;
  padding: 5px 10px;
}

/* Button click animation */
.btn-orange.clicked {
  transform: scale(0.95);
  opacity: 0.8;
}

/* Toast notification */
.toast-notify {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #10b981;
  color: white;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(16,185,129,0.4);
}

.toast-notify.show {
  opacity: 1;
  transform: translateY(0);
}

.show-section {
  animation: fadeInUp 0.9s ease forwards;
}

.sticky-top {
  z-index: 1030;
}

.nav-link.active::after {
  width: 60%;
}

/* Responsive adjustments for navbar */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
}

/* General responsive adjustments */
.container {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col-md-6, .col-md-3, .col-md-4, .col-md-2 {
  padding-left: 15px;
  padding-right: 15px;
}

/* Fix for small mobile screens */
@media (max-width: 360px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }
  
  .hero-section p.lead {
    font-size: 1rem;
  }
  
  .btn-orange {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}