/* === CSS VARIABLES & GLOBAL STYLES === */
:root {
    --green-primary: #2F4F4F;
    --gold-accent: #DAA520;
    --bg-light: #F5F0E4;
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-heading: 'Lora', serif;
    --font-body: 'Lato', sans-serif;
    --nav-height: 70px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

/* SCROLLBAR HIDDEN */
body::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; scrollbar-width: none; }


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--green-primary);
    margin-top: 0;
}

.section-padding { padding: 100px 0; }
.section-bg { background-color: var(--bg-light); }

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--gold-accent);
}

.text-accent {
    color: var(--gold-accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* === NAVIGATION === */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.main-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; 
    box-sizing: border-box;
}
.nav-logo { display: flex; align-items: center; }
.logo-image { max-height: 45px; width: auto; }

.nav-links a {
    text-decoration: none;
    color: var(--green-primary);
    font-weight: 700;
    margin-left: 30px;
    position: relative;
    padding: 5px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-accent);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.cta-button {
    background-color: var(--gold-accent);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-button:hover {
    background-color: #c9941c;
    transform: translateY(-2px);
    color: var(--text-light);
}
.cta-button:hover::after { display: none; }
.hamburger-menu { display: none; font-size: 1.5rem; color: var(--green-primary); cursor: pointer; }

/* === HERO SECTION === */
.hero-header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('images/header2.jpg') no-repeat center center/cover;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgb(255 255 255 / 81%);
}
.hero-text-container {
    position: relative;
    z-index: 2;
    max-width: 820px; 
    transform: translateY(-173px);
    transition: transform 0.5s ease;
}
.hero-text-container h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--green-primary);
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}
.hero-text-container p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--green-primary);
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7);
}
.cta-button-hero {
    background-color: var(--green-primary); 
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-button-hero:hover {
    background-color: #233a3a;
    transform: translateY(-3px);
}

/* === NEW: ABOUT INTRO TEXT SECTION === */
.about-text {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
}
.about-text p {
    margin-bottom: 1.5em;
}
.about-text strong {
    font-family: var(--font-heading);
    color: var(--green-primary);
    font-size: 1.2rem;
    display: block;
    margin-top: 2em;
    margin-bottom: 1em;
}
.about-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5em;
}
.about-text li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1em;
}
.about-text li::before {
    content: '\f06c'; /* Font Awesome leaf icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold-accent);
    position: absolute;
    left: 0;
    top: 1px;
}
.about-text li strong {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-dark);
    display: inline;
    margin: 0;
}

/* === PRODUCT CATEGORIES (HOMEPAGE) === */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.category-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.category-card img {
    width: 100%;
    height: auto;
    display: block;
}
.category-card h3 {
    text-align: center;
    padding: 20px;
    margin: 0;
    font-size: 1.3rem;
}

/* === ALTERNATING LAYOUT === */
.alternating-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.alternating-layout.reverse { direction: rtl; }
.alternating-layout.reverse > * { direction: ltr; }
.layout-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.layout-text h3 {
    font-size: 2.5rem;
    margin-top: 10px;
    margin-bottom: 20px;
}
.layout-text p { margin-bottom: 20px; }
.link-arrow {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}
.link-arrow:hover { color: var(--gold-accent); }
.link-arrow i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.link-arrow:hover i { transform: translateX(5px); }

/* === COMMITMENT SECTION === */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.commitment-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.commitment-card .card-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}
.commitment-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* === FOOTER === */
footer {
    background-color: var(--green-primary);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 40px;
}
.footer-column h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.footer-column.about p { line-height: 1.8; }
.footer-column.links ul { list-style: none; padding: 0; }
.footer-column.links li { margin-bottom: 10px; }
.footer-column.links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-column.links a:hover { color: var(--gold-accent); }
.footer-column.contact p { margin-bottom: 15px; }
.footer-column.contact i {
    color: var(--gold-accent);
    margin-right: 10px;
}
.social-icons a {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.social-icons a:hover { color: var(--gold-accent); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 20px 0;
}
.footer-bottom p { margin: 0; font-size: 0.9rem; }

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .alternating-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .alternating-layout.reverse { direction: ltr; }
    .layout-image { margin-bottom: 40px; }
    .alternating-layout.reverse .layout-image { order: -1; }
}
@media (max-width: 768px) {
    .hero-text-container h1 { font-size: 2.8rem; }
    .hero-text-container p { font-size: 1.1rem; }
    h2.section-title { font-size: 2.2rem; }
    .section-padding { padding: 60px 0; }
    .nav-container { padding: 0 20px; }
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .nav-links a { margin: 10px 0; font-size: 1.2rem; }
    .hamburger-menu { display: block; }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons { margin-top: 20px; }
    .hero-text-container { transform: translateY(-60px); }
    .about-text { font-size: 1rem; }
}




/* STYLES FOR COMBINED PRODUCTS SECTION */
.product-group {
    margin-bottom: 60px; /* Space between Organic and Natural groups */
}

.product-subheading {
    font-size: 2.5rem;
    padding-left: 8px;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.natural-heading {
    border-top: 1px solid #ddd; /* Separator line */
    padding-top: 60px; /* Space above the Natural heading */
}

/* === RESPONSIVE ADJUSTMENT for the new subheading === */
@media (max-width: 768px) {
    .product-subheading {
        font-size: 2rem;
    }
}