/* Root Variables */
:root {
    --primary-yellow: #ffe02e;
    --primary-cream: #FFF8E7;
    --accent-green: #2F4F4F;
    --deep-gold: #DAA520;
    --text-color: #2C3E50;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: rgba(255, 216, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(145deg, var(--primary-cream), var(--primary-yellow));
    color: var(--text-color);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-tap-highlight-color: transparent;
}

/* Main Container */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 80px;
    /* Space for bottom nav */
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--deep-gold);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

/* Sections */
section {
    margin: 6rem auto 2rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgb(66 161 25 / 37%)
    
    
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    margin-top: 8rem;
}

#hero h1 {
    font-size: 4rem;
    color: var(--deep-gold);
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 2rem;
}

/* Features Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: transform 0.3s;
}





/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
}

.bottom-nav {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        justify-content: space-around;
        z-index: 100;
        border-top: 1px solid var(--glass-border);
    }

    .bottom-nav a {
        color: var(--text-color);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.8rem;
        gap: 0.3rem;
    }

    section {
        padding: 2rem 1rem;
        margin: 4rem auto 1rem;
    }

    #hero {
        margin-top: 6rem;
        padding: 3rem 1rem;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .glass-nav {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

section {
    animation: fadeIn 0.5s ease-out;
}

.flower-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}
.glass-footer{
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    text-align: center;
}