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

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient( 135deg, rgba(224, 255, 224, 0.9), rgba(156, 231, 156, 0.9));
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 10;
}
.navbar .logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #006400;
}
.navbar .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.navbar .nav-links li a {
    text-decoration: none;
    color: #004d00;
    font-weight: 600;
    transition: color 0.3s;
}
.navbar .nav-links li a:hover {
    color: #00aa44;
}

/* ===== BODY ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    background: #f0f8f0;
    color: #111;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 30vh 2rem 30vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e0ffe0, #6ce36c);
}
.hero .title { font-size: 4rem; font-weight: 900; letter-spacing: 0.15rem; color: #006400; z-index:1; position: relative; }
.hero .subtitle { font-size: 1.5rem; margin: 1rem 0 2rem; color: #004d00; opacity: 0.9; z-index:1; position: relative; }
.hero .cta {
    padding: 1rem 3rem; border-radius: 2rem; border:none;
    background: linear-gradient(135deg, #00ff88, #008800);
    font-size: 1.2rem; color:#fff; cursor:pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    z-index:1; position: relative;
}
.hero .cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 1.5rem rgba(0,255,136,0.6);
    background: linear-gradient(135deg, #00ffaa, #00aa44);
}

/* ===== ABOUT ===== */
.about { text-align:center; padding:6rem 2rem; background: linear-gradient(135deg, #e0ffe0, #c0f0c0); }
.about .section-title { font-size:2.5rem; margin-bottom:1rem; color:#006400; }
.about .section-text { max-width:40rem; margin:0 auto; font-size:1.2rem; color:#111; }

/* ===== PARALLAX ===== */
.parallax { text-align:center; padding:8rem 2rem; background: linear-gradient(135deg, #d0ffd0, #a8e0a8); }
.section-title { font-size:3rem; margin-bottom:1rem; color:#006400; }
.section-text { font-size:1.2rem; max-width:40rem; margin:0 auto; opacity:0.85; color:#111; }

/* ===== GALLERY ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    gap: 2rem;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e0ffe0, #b0e0b0);
}
.gallery-item {
    background: linear-gradient(135deg, #c0ffc0, #80e080);
    border-radius: 1rem;
    height: 8rem;
    display:flex; align-items:center; justify-content:center;
    font-size:2rem;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: grab;
    position: relative;
}
.gallery-item:hover { transform: scale(1.15) rotate(5deg); box-shadow: 0 0 1rem rgba(0,128,0,0.4); }

/* ===== QUOTE ===== */
.quote { text-align:center; padding:6rem 2rem; font-size:1.8rem; font-style:italic; background:linear-gradient(135deg, #e0ffe0, #b0e0b0); color:#004d00; }
.quote blockquote { max-width:50rem; margin:0 auto; }

/* ===== FOOTER ===== */
footer { text-align:center; padding:2rem; font-size:0.9rem; opacity:0.7; background: linear-gradient(135deg, #d0ffd0, #a8e0a8); }

/* ===== SCROLL ANIMATIONS ===== */
.scroll-fade { opacity:0; transform: translateY(2rem); transition: opacity 1.2s, transform 1.2s; }
.scroll-fade.visible { opacity:1; transform: translateY(0); }
.scroll-slide { opacity:0; transform: translateX(-5rem); transition: opacity 1.2s, transform 1.2s; }
.scroll-slide.visible { opacity:1; transform: translateX(0); }
