/* --- VARIABLES & GLOBAL RESET --- */
:root {
    --dark-green: #2C3E2A; /* A deep, sober forest green */
    --accent-orange: #E87A00; /* A vibrant, provocative burnt orange */
    --text-primary: #3D403A; /* A warm, dark grey for body text */
    --text-light: #F7F5F2;
    --background-light: #F7F5F2; /* A creamy, organic off-white */
    --border-color: #D9D5CF;
    
    --font-headings: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--background-light);
    line-height: 1.7;
}

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

h1, h2, h3 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-green);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); } /* Responsive font size */
h2 { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 24px; }
h3 { font-size: 1.5rem; color: var(--dark-green); }

section {
    padding: 100px 0;
    overflow: hidden;
}
.section-subtitle { text-align: center; max-width: 700px; margin: -1rem auto 3rem auto; font-size: 1.1rem; }


/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--text-light);
    border-color: var(--accent-orange);
}
.btn-primary:hover {
    background-color: #ff9100;
    border-color: #ff9100;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-green);
    border-color: var(--dark-green);
    width: 100%;
    text-align: center;
}
.btn-secondary:hover {
    background-color: var(--dark-green);
    color: var(--text-light);
}

.btn-header-order {
    display: none; /* Hide on mobile */
    background-color: var(--dark-green);
    color: var(--text-light);
    padding: 10px 24px;
}
.btn-header-order:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    background: #0a3308;
background: linear-gradient(90deg, rgb(6 20 5) 0%, rgb(17 63 34) 50%, rgba(0, 255, 89, 1) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 45px; }

.nav-list { display: flex; list-style: none; gap: 40px; }
.nav-list a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}
.nav-list a::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}
.nav-list a:hover::after { width: 100%; }
.nav-toggle { display: none; }


/* --- HERO SECTION --- */
.hero {
    min-height: 85vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--text-light);
    background: linear-gradient(rgba(0 0 0 / 60%), rgba(0 0 0 / 50%)), url('img/background.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 5rem 1.5rem;
}
.hero-content h1 { color: var(--text-light); margin-bottom: 1rem; }
.hero-content p { font-size: 1.25rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto;}


/* --- MENU SECTION --- */
.menu-section { background-color: var(--background-light); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.product-card {
    background: #ffffff;
    border-radius: 8px;
    display: flex; flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.product-image-container { position: relative; cursor: pointer; border-bottom: 1px solid var(--border-color); }
.product-image {
    width: 100%; height: 300px;
    object-fit: contain; padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px 8px 0 0;
}
.zoom-icon {
    position: absolute; top: 16px; right: 16px;
    background-color: rgba(255,255,255,0.8);
    color: var(--dark-green);
    border-radius: 50%;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.product-card:hover .zoom-icon { opacity: 1; }
.product-info { padding: 24px; flex-grow: 1; }
.product-info h3 { margin-bottom: 12px; }
.product-description { font-size: 0.95rem; line-height: 1.6; }
.product-footer {
    padding: 0 24px 24px 24px;
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}
.product-price { font-size: 1.5rem; font-weight: 700; font-family: var(--font-headings); color: var(--dark-green); }


/* --- ABOUT SECTION --- */
.about-section { background-color: #ffffff; }
.about-container { display: flex; align-items: center; gap: 5rem; }
.about-image { flex: 1; }
.bw-photo { width: 100%; border-radius: 8px; filter: grayscale(1); }
.about-text { flex: 1.2; }
.about-text h2 { text-align: left; }
.about-text .lead { font-size: 1.25rem; font-weight: 500; margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.5rem; }


/* --- HOW IT WORKS SECTION --- */
.steps-container { display: flex; justify-content: space-around; gap: 40px; margin: 4rem 0; text-align: center; }
.step { max-width: 320px; }
.step-icon {
    width: 60px; height: 60px;
    border: 2px solid var(--dark-green);
    border-radius: 50%; color: var(--dark-green);
    font-size: 2rem; font-family: var(--font-headings);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}
.step:hover .step-icon { background-color: var(--dark-green); color: var(--text-light); transform: scale(1.1) rotate(10deg); }
.step h3 { margin-bottom: 1rem; color: var(--dark-green); }


/* --- FOOTER --- */
.main-footer {
    background-color: var(--dark-green); color: var(--text-light);
    text-align: center; padding: 4rem 0;
}
.footer-logo { height: 40px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.main-footer p { color: rgba(255,255,255,0.7); }

/* --- MODAL (ZOOM) & RESPONSIVE --- */
.modal {
    display: none; position: fixed;
    z-index: 2000; padding-top: 50px; left: 0; top: 0;
    width: 100%; height: 100%; overflow: auto;
    background-color: rgba(0,0,0,0.9);
}
.modal-content { margin: auto; display: block; width: 90%; max-width: 700px; }
#modalCaption { text-align: center; color: #ccc; padding: 10px 0; font-size: 1.2rem; font-family: var(--font-headings); }
.close-modal {
    position: absolute; top: 15px; right: 35px; color: #f1f1f1;
    font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer;
}
.close-modal:hover { color: #bbb; }

@media (max-width: 992px) {
    .about-container { flex-direction: column; }
    .steps-container { flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed; top: 0; right: -100%;
        width: 80%; height: 100vh;
        flex-direction: column; justify-content: center;
        background-color: var(--background-light);
        padding: 4rem 2rem; transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    .nav-list.active { right: 0; }
    .nav-toggle { display: block; z-index: 1001; }
    .hamburger { display: block; width: 25px; height: 2px; background-color: var(--dark-text); position: relative; transition: background-color 0s 0.2s; }
    .hamburger::before, .hamburger::after { content: ''; display: block; width: 25px; height: 2px; background-color: var(--dark-text); position: absolute; transition: transform 0.2s ease-in-out; }
    .hamburger::before { top: -8px; }
    .hamburger::after { top: 8px; }
    .nav-toggle.active .hamburger { background-color: transparent; }
    .nav-toggle.active .hamburger::before { transform: translateY(8px) rotate(45deg); }
    .nav-toggle.active .hamburger::after { transform: translateY(-8px) rotate(-45deg); }
    .btn-header-order { display: none; }
}