:root {
    --primary-color: #2E7D32;
    --secondary-color: #A5D6A7;
    --text-color: #333333;
    --background-color: #FFFFFF;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    background: var(--background-color);
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    margin: 0;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8% 8%;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    max-width: 600px;
    margin: 5% 0 5% 8%;
    border-radius: 8px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-features {
    margin: 2rem 0 3rem 0;
}

.hero-features p {
    color: #555;
    font-size: 1.1rem;
    margin: 1rem 0;
}

/* Value Props Section */
.value-props {
    padding: 8% 8%;
    background-color: #F8F9FA;
}

.value-props h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.props-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.prop-item {
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.prop-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

/* Button Styles */
.cta-button {
    width: fit-content;
    background-color: #2E7D32;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 8%;
        min-height: auto;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-image {
        height: 300px;
        margin-top: 2rem;
    }

    .props-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero {
        padding: 2rem 5%;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-features p {
        font-size: 1rem;
    }
    
    .hero-image {
        height: 250px;
    }

    .value-props {
        padding: 4rem 5%;
    }

    .value-props h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .hamburger {
        display: block;
        z-index: 1000;
    }

    .nav-links {
        display: none; /* Hidden by default */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    /* Close button (X) */
    .nav-links::before {
        content: "×";
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: var(--primary-color);
        cursor: pointer;
    }

    /* Mobile menu links */
    .nav-links a {
        font-size: 1.2rem;
        color: #333;
        text-decoration: none;
    }

    /* Mobile Order Now button */
    .nav-links .cta-button {
        position: fixed;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        padding: 1rem;
        border-radius: 4px;
        background: var(--primary-color);
        color: white;
        text-align: center;
        border: none;
    }

    /* Hamburger button */
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1000;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-links .cta-button {
        width: 100%;
    }

    .hero {
        padding: 2rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-content {
        padding: 0;
        margin: 15% 1rem 1rem 1rem;
        padding: 1.5rem;
    }

    .hero-features {
        margin: 1.5rem 0;
    }

    .props-container {
        grid-template-columns: 1fr;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .value-props {
        padding: 3rem 1.5rem;
    }
}

/* Add hamburger menu styles */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    /* Hamburger animation when active */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hide nav links by default on mobile */
    .nav-links {
        display: none;
    }

    /* Show nav links when active */
    .nav-links.active {
        display: flex;
    }
}