:root {
    --pastel-green: #e8f5e9;
    --soft-gray: #f5f5f5;
    --text-dark: #222;
    --accent-green: #66bb6a;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-green);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                url('https://images.unsplash.com/photo-1581850518616-cee8107f7fd2?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-btns {
    margin-top: 30px;
}

.btn {
    font-size: 14px;    /* Try 13px or 14px */
    padding: 10px 25px; /* You might want to shrink the padding slightly too */
    text-decoration: none;
    border-radius: 25px;
    margin: 0 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: var(--accent-green);
    color: white;
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.subtitle {
    color: #2e7d32;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
}

.about-text h2 {
    font-size: 2.5rem;
    margin: 10px 0 20px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

/* Categories Section */
.products-section {
    background-color: var(--pastel-green);
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
}

.category-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.cat-item {
    cursor: pointer;
}

.cat-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.cat-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-circle:hover {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--soft-gray);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    padding: 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #777;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    background: white;
    border-top: 1px solid #eee;
}

.copyright {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

/* ============================= */
/* RESPONSIVE IMPROVEMENTS */
/* ============================= */

@media (max-width: 1024px) {
    .category-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .cat-circle {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {

    /* Navigation */
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* Hero */
    .hero {
        height: auto;
        padding: 80px 20px;
        background-attachment: scroll; /* FIX for mobile */
    }

    .hero-content {
        padding: 25px;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        margin: 0;
        width: 100%;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* Categories */
    .category-grid {
        flex-direction: column;
        align-items: center;   /* FORCE center alignment */
        text-align: center;    /* Center text */
    }

    .cat-item {
        width: 100%;
        max-width: 250px;      /* Keeps nice centered layout */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cat-item h3 {
        text-align: center;
        margin-top: 10px;
    }

    .cat-circle {
        width: 140px;
        height: 140px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .hero {
        background-attachment: fixed;
    }
}

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .cat-circle {
        width: 120px;
        height: 120px;
    }
}

.hero {
    height: 80vh; /* Increased height for more impact */
    /* This linear-gradient adds a subtle dark tint so the white text is readable */
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('pics/big-background.jpg?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
     /* background-attachment: fixed; /* This creates a subtle parallax effect when scrolling */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3); /* Adds depth to text */
}

.hero-content p {
    font-size: 0.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-content {
    /* --- ADD OR ADJUST THESE LINES --- */
    max-width: 600px;    /* Change this number (e.g., 600px) to make it narrower */
    width: 90%;          /* Keeps it responsive on mobile */
    padding: 40px;       /* Change this to adjust the "air" inside the box */
    /* --------------------------------- */
    background: rgba(255, 255, 255, 0.1); /* Very slight white tint */
    backdrop-filter: blur(5px); /* Blurs the background behind the text */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}