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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #111;
    background-color: #fff8f0; /* subtle food-friendly background */
}

h1, h2, h3 {
    font-weight: 700;
}

p, li, a {
    font-weight: 400;
}

.btn {
    font-weight: 600;
}

/* ====== HEADER & NAV ====== */
header {
    background-color: #f97316; /* food brand orange */
    padding: 1rem 2rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.nav h1.logo {
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: #fcd34d; /* light yellow highlight */
}

.nav-links li a {
    font-weight: 600;
}

/* ====== HERO SECTION ====== */
.hero {
    padding: 5rem 2rem;
    background-color: #fff;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

/* Hero Text */
.hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #dc2626; /* food red accent */
}

.hero-text p {
    margin-bottom: 1.5rem;
    color: #444;
}

/* Hero Button */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #f97316; /* orange */
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #ea580c; /* darker hover */
}

/* Hero Image placeholder */
.hero-img {
    flex: 1;
    min-height: 250px;
    border-radius: 8px;
    background: url('hero-food.jpg') center/cover no-repeat; /* replace with real image later */
}

/* ====== FEATURES SECTION (GRID) ====== */
.features {
    padding: 4rem 2rem;
    background-color: #fff3e0; /* subtle warm tone */
}

.features h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: #dc2626;
}

.feature-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: #f97316;
}

/* ====== TRUST SECTION ====== */
.trust {
    padding: 2rem;
    text-align: center;
    background-color: #fff7ed;
    color: #7c2d12;
    font-weight: 500;
    font-size: 1.1rem;
}

/* ====== CTA SECTION ====== */
.cta {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #dc2626; /* food red */
    color: #fff;
}

.cta h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta .btn {
    background-color: #fcd34d; /* yellow CTA */
    color: #dc2626;
}

.cta .btn:hover {
    background-color: #fbbf24;
}

/* ====== FOOTER ====== */
footer {
    padding: 1.5rem;
    text-align: center;
    background-color: #f97316;
    color: #fff;
    font-size: 0.9rem;
}




.partner-slider {
  padding: 3rem 2rem;
  background-color: #fff3e0;
  text-align: center;
}

.partner-slider h2 {
  margin-bottom: 2rem;
  color: #dc2626;
  font-size: 2rem;
}

.slider-container {
  position: relative;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Navigation Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover,
.next:hover { background-color: rgba(0,0,0,0.8); }



/* ====== RESPONSIVE / MOBILE ====== */
@media (max-width: 768px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        background-color: #f97316;
        width: 100%;

        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s ease-in-out, opacity 0.3s ease-in-out;
        opacity: 0;
    }

    .nav-links.active {
        max-height: 500px;
        opacity: 1;
    }

    .feature-grid {
        gap: 1.5rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

     .slides img { height: 180px; object-fit: contain; }


}
