﻿:root {
    --primary-green: #0E9B4A;
    --accent-yellow: #f5e26c;
    --text-light: #ffffff;
    --text-dark: #333333;
    --glow-color: #a0ff6e;
}

/* ===== GLOBAL ===== */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: #fff;
}

/* ===== DESKTOP HEADER ===== */
.desktop-menu {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* left | logo | right */
    align-items: center; /* FIXED: lift the menu items up slightly */
    background-color: #000;
    color: var(--primary-green);
    border-bottom: 1px solid rgba(14, 155, 74, 0.2);
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

    /* Keep left/right menus evenly spaced within their halves */
    .desktop-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        gap: 2rem;
    }

/* Left and right wrappers just hold flex containers */
.nav-left,
.nav-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centered logo */
.desktop-menu .logo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 3;
}

    .desktop-menu .logo img {
        height: 260px;
        width: auto;
        margin-bottom: -100px;
        filter: drop-shadow(0 0 6px rgba(160, 255, 110, 0.6));
        transition: filter 0.3s ease;
    }

        .desktop-menu .logo img:hover {
            filter: drop-shadow(0 0 10px rgba(160, 255, 110, 0.8));
        }

/* Menu links */
.desktop-menu a {
    color: var(--primary-green);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-decoration: none;
    font-size: 2.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .desktop-menu a:hover {
        color: var(--accent-yellow);
        text-shadow: 0 0 6px rgba(160, 255, 110, 0.6);
    }

/* ===== MOBILE HEADER ===== */
.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #000;
    position: relative;
    z-index: 10;
}

    .mobile-menu .menu-toggle {
        font-size: 2rem;
        background: none;
        border: none;
        color: var(--primary-green);
        cursor: pointer;
        position: absolute;
        left: 2rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 12;
    }

/* Close button over same spot */
.menu-close {
    position: fixed;
    top: 1.5rem;
    left: 2rem;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--accent-yellow);
    cursor: pointer;
    z-index: 30;
    display: none;
}

.mobile-menu.active .menu-close {
    display: block;
}

.mobile-menu.active .menu-toggle {
    display: none;
}

.mobile-menu .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    order: 1;
    margin-top: 1rem;
    position: relative;
    z-index: 11;
}

    .mobile-menu .logo img {
        height: 260px;
        width: auto;
        margin-bottom: -100px;
        filter: drop-shadow(0 0 6px rgba(160, 255, 110, 0.6));
        transition: filter 0.3s ease;
    }

        .mobile-menu .logo img:hover {
            filter: drop-shadow(0 0 10px rgba(160, 255, 110, 0.8));
        }

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-items {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
    padding: 0;
    z-index: 20;
    overflow-y: auto;
}

.mobile-menu.active .mobile-nav-items {
    display: flex;
}

.mobile-nav-items li a {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .mobile-nav-items li a:hover {
        color: var(--accent-yellow);
        text-shadow: 0 0 6px rgba(160, 255, 110, 0.6);
    }

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.hero-text {
    color: #000;
    padding: 2rem;
    border-radius: 10px;
    font-family: 'Pacifico', cursive;
    font-style: italic;
}

    .hero-text h1 {
        font-size: 6rem;
        font-weight: 400;
        margin-bottom: 1rem;
        color: #000;
        -webkit-text-stroke: 1px var(--primary-green);
        -webkit-text-fill-color: #000;
        text-shadow: 0 0 4px var(--primary-green), 0 0 8px var(--primary-green);
    }

    .hero-text p {
        font-size: 1.6rem;
        font-weight: 400;
        font-family: 'Pacifico', cursive;
        font-style: italic;
        color: #000;
        -webkit-text-stroke: 0.5px var(--primary-green);
        -webkit-text-fill-color: #000;
        text-shadow: 0 0 2px var(--primary-green), 0 0 4px var(--primary-green);
    }

/* ===== HERO BUTTON ===== */
.btn-primary {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.8rem 3.8rem;
    background: linear-gradient(145deg, #12b857, #0c863d);
    color: #000;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.8rem;
    border-radius: 60px;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.3), 0 6px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: linear-gradient(145deg, #0f8c42, #13c35c);
        color: var(--accent-yellow);
        box-shadow: inset 0 2px 5px rgba(255,255,255,0.4), 0 0 25px var(--glow-color);
        transform: translateY(-2px);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }
}
