@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-dark: #0D2818;     /* Deep forest green */
    --primary: #1F5F3E;          /* Rich foliage green */
    --primary-light: #3D9970;    /* Fresh growth green */
    --accent-mint: #E8F5EE;      /* Soft mint background */
    --accent-gold: #C5A059;      /* Luxury gold touch */
    --white: #FFFFFF;
    --off-white: #F7FAF8;        /* Warm organic off-white */
    --text-dark: #1A2821;        /* Highly readable dark charcoal */
    --text-muted: #586960;       /* Muted sage-charcoal */
    --border-color: rgba(13, 40, 24, 0.06);
    
    /* Layout & Styling Tokens */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    --shadow-subtle: 0 4px 20px rgba(13, 40, 24, 0.02);
    --shadow-medium: 0 12px 30px rgba(13, 40, 24, 0.05);
    --shadow-elevated: 0 20px 40px rgba(13, 40, 24, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--off-white);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-quick);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-bg {
    background-color: var(--off-white);
}

/* Section Header Utility */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-header .tag {
    color: var(--accent-gold);
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: var(--shadow-subtle);
    border-bottom: 1px solid var(--border-color);
}

/* White text when navbar is transparent (over hero image) */
.navbar:not(.scrolled) .logo {
    color: var(--white);
}

.navbar:not(.scrolled) .nav-links a {
    color: var(--white);
}

.navbar:not(.scrolled) .nav-links a::after {
    background-color: var(--white);
}

.navbar:not(.scrolled) .nav-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.navbar:not(.scrolled) .nav-links a.active {
    color: var(--white);
}

.navbar:not(.scrolled) .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
}

.navbar:not(.scrolled) .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Outfit', sans-serif;
}

.logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
    font-size: 0.95rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(31, 95, 62, 0.15);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 40, 24, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 95, 62, 0.15);
}

.btn-secondary {
    background-color: var(--accent-gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.15);
}

.btn-secondary:hover {
    background-color: #B28E46;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(178, 142, 70, 0.25);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(13, 40, 24, 0.5), rgba(13, 40, 24, 0.7)), url('assets/hero_bg_1777461795225.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding-top: 100px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    color: var(--accent-gold);
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: rgba(197, 160, 89, 0.1);
    backdrop-filter: blur(4px);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 700;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 48px;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.benefit-card {
    padding: 48px 36px;
    background: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(31, 95, 62, 0.15);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 24px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
    transform: rotateY(360deg);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Top Products Showcase */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(31, 95, 62, 0.15);
}

.product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--primary);
    padding: 6px 16px;
    font-weight: 700;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
    z-index: 2;
}

.product-info {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.product-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Chef Section */
.chef-section {
    background: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
    padding: 140px 0;
}

.chef-section h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 24px;
}

.chef-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.chef-list {
    margin: 32px 0 40px;
}

.chef-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.chef-list li i {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-right: 14px;
}

.chef-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border: 4px solid rgba(255, 255, 255, 0.08);
}

.chef-image img {
    width: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.testimonial-rating {
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-user-avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background-color: var(--accent-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid var(--border-color);
}

.testimonial-user-info strong {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
    font-size: 1.1rem;
    display: block;
}

.testimonial-user-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 28px;
    font-size: 1.25rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo .logo {
    color: var(--white);
    margin-bottom: 24px;
}

.footer-logo p {
    line-height: 1.7;
    margin-bottom: 28px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer ul li {
    margin-bottom: 14px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    line-height: 1.5;
}

.footer-contact-list li i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* Floating Elements */
.whatsapp-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #25D366;
    color: var(--white);
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* Form submission feedback */
.pixi-hidden-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.pixi-form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.pixi-form-status.success {
    display: block;
    background: var(--accent-mint);
    color: var(--primary-dark);
    border: 1px solid rgba(31, 95, 62, 0.2);
}

.pixi-form-status.error {
    display: block;
    background: #fdeaea;
    color: #9b1c1c;
    border: 1px solid rgba(155, 28, 28, 0.2);
}

/* Hamburger Button */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-quick);
    line-height: 1;
}

.hamburger:hover {
    background: var(--accent-mint);
    color: var(--primary);
}

/* Inner Page Hero Utility */
.inner-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-dark), #091F12);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.inner-hero p {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Details List & Grid for other pages */
.info-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* Responsive Redesign */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
    .footer-logo {
        grid-column: span 3;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    .chef-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .chef-image {
        max-width: 550px;
        margin: 0 auto;
    }
    .info-box-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    .navbar {
        background: var(--white);
        padding: 16px 0;
        box-shadow: var(--shadow-subtle);
        border-bottom: 1px solid var(--border-color);
    }
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav-cta {
        display: none;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        padding: 8px 0 16px;
        box-shadow: 0 8px 24px rgba(13, 40, 24, 0.1);
        border-top: 1px solid var(--border-color);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        padding: 0 32px;
    }
    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-links a::after {
        display: none;
    }
    .nav-links li:last-child a {
        border-bottom: none;
    }
    /* Mobile navbar/dropdown is always white, so force dark text even
       when .scrolled hasn't been added yet (e.g. on the home page hero) */
    .navbar:not(.scrolled) .logo,
    .navbar:not(.scrolled) .nav-links a,
    .navbar:not(.scrolled) .nav-links a.active {
        color: var(--text-dark);
    }
    .navbar:not(.scrolled) .nav-links a::after {
        background-color: var(--primary);
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.15rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-logo {
        grid-column: span 1;
    }
}
