:root {
    --c1: #f5f9f0;
    --c2: #7dc142;
    --c3: #5a9e2f;
    --c4: #2d5a1b;
    --c5: #1a3a0f;
    --c6: #1c2b10;
    --accent: #d4f06b;
    --white: #ffffff;
    --text: #1c2b10;
    --text-light: #4a6035;
    --shadow: 0 8px 32px rgba(44,80,20,0.1);
    --shadow-lg: 0 20px 60px rgba(44,80,20,0.16);
}

@font-face { font-family: myFont; src: url(./font/Comfortaa-Regular.ttf); }

* { margin: 0; padding: 0; box-sizing: border-box; font-family: myFont; font-size: 1rem; }

body { display: flex; flex-direction: column; align-items: center; background: var(--c1); overflow-x: hidden; }

/* ── SCROLL ANIMATIONS ── */
[class*="reveal-"] {
    opacity: 0; transform: translateY(2.5rem);
    transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal_inverse { transform: translateY(-2.5rem); }
.reveal_visible  { opacity: 1 !important; transform: translateY(0) !important; }
.reveal-1 { transition-delay: 0.05s; } .reveal-2 { transition-delay: 0.15s; }
.reveal-3 { transition-delay: 0.25s; } .reveal-4 { transition-delay: 0.38s; }
.reveal-5 { transition-delay: 0.50s; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
header {
    position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
    width: 92%; height: 4rem;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 1.5rem; border-radius: 2rem;
    border: 1px solid rgba(125,193,66,0.25);
    background: rgba(255,255,255,0.8); backdrop-filter: blur(20px);
    z-index: 1000; box-shadow: 0 4px 24px rgba(44,80,20,0.08);
}
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo img { width: 2rem; object-fit: cover; }
.logo h1 { font-size: 1.1rem; font-weight: bold; color: var(--c4); }
.nav_links .links { display: flex; gap: 0.2rem; }
.nav_links a {
    text-decoration: none; padding: 0.4rem 0.9rem; border-radius: 2rem;
    color: var(--text-light); font-size: 0.9rem; transition: all 0.3s ease;
}
.nav_links a:hover { color: var(--c4); background: rgba(125,193,66,0.12); }
header .view {
    display: flex; align-items: center; gap: 0.4rem;
    text-decoration: none; padding: 0.5rem 1.2rem;
    border: 1.5px solid var(--c3); border-radius: 2rem;
    color: var(--c3); font-size: 0.9rem; font-weight: bold;
    transition: all 0.3s ease; overflow: hidden; position: relative; z-index: 1;
}
header .view::before {
    content: ''; position: absolute; inset: 0; background: var(--c3);
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; z-index: -1;
}
header .view:hover::before { transform: scaleX(1); }
header .view:hover { color: var(--white); }
header .view svg { width: 1.2rem; height: 1.2rem; transition: transform 0.3s; }
header .view:hover svg { transform: rotate(45deg); }
.menu, .exit_menu { display: none; cursor: pointer; }
.mob_nav_links { display: none; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.Hero {
    width: 100%; height: 100vh;
    position: relative; overflow: hidden;
    display: flex; align-items: flex-end;
}
.hero_container { width: 100%; height: 100%; position: relative; }
.hero_container .bg_about {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.55) saturate(0.8);
}
.hero_container::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,58,15,0.75) 0%, rgba(45,90,27,0.2) 60%, transparent 100%);
    z-index: 1;
}
.hero_content {
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 100%;
    display: flex; align-items: center; padding: 0 6%; z-index: 2;
}
.hero_content .part1 {
    max-width: 600px; display: flex; flex-direction: column; gap: 1.5rem;
}
.hero_content .part1 h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white); font-weight: bold; line-height: 1.1;
}
.hero_content .part1 h1::after {
    content: ''; display: block; width: 80px; height: 4px;
    background: var(--accent); border-radius: 2px; margin-top: 1rem;
    animation: expand-line 1s 0.8s both;
}
@keyframes expand-line { from { width: 0; } to { width: 80px; } }
.hero_content .part1 p { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.8; max-width: 480px; }

/* ══════════════════════════════════════
   WHO WE ARE / OUR STORY
══════════════════════════════════════ */
.who {
    width: 100%; padding: 6rem 6%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
    background: var(--white);
    position: relative; overflow: hidden;
}
.who::before {
    content: ''; position: absolute;
    width: 350px; height: 350px; border-radius: 50%;
    background: radial-gradient(circle, rgba(125,193,66,0.07), transparent 70%);
    top: -80px; right: -80px; pointer-events: none;
}
.who div { display: flex; flex-direction: column; gap: 1.5rem; }
.who div img {
    width: 100%; height: 350px; object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}
.who div img:hover { transform: scale(1.02); }
.who div h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--c4); font-weight: bold;
    position: relative; padding-bottom: 0.8rem;
}
.who div h1::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 50px; height: 3px; background: var(--c2); border-radius: 2px;
}
.who p { color: var(--text-light); line-height: 1.9; font-size: 1rem; }
.who p strong { color: var(--c4); }
.who p em {
    display: block; margin-top: 1rem;
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--c2);
    background: rgba(125,193,66,0.06);
    border-radius: 0 0.8rem 0.8rem 0;
    color: var(--c4); font-style: italic;
}
.who:nth-of-type(3) { direction: rtl; background: var(--c1); }
.who:nth-of-type(3) > * { direction: ltr; }

/* ══════════════════════════════════════
   MISSION / VISION / OBJECTIVE
══════════════════════════════════════ */
.mission {
    width: 100%; padding: 5rem 6%;
    background: var(--white);
    display: flex; flex-direction: column;
    align-items: flex-start; gap: 1.5rem;
    position: relative; overflow: hidden;
}
.mission:nth-of-type(odd) { background: var(--c1); }
.mission::after {
    content: ''; position: absolute;
    right: -60px; top: 50%; transform: translateY(-50%);
    width: 250px; height: 250px; border-radius: 50%;
    border: 1px solid rgba(125,193,66,0.1); pointer-events: none;
}
.mission h1 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--c4); font-weight: bold;
    display: flex; align-items: center; gap: 0.8rem;
}
.mission h1::before {
    content: ''; display: inline-block;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--c2); flex-shrink: 0;
}
.mission p { color: var(--text-light); line-height: 1.9; max-width: 750px; }
.mission p strong { color: var(--c4); }
.mission p em { color: var(--c3); font-style: italic; }

.mission ul {
    list-style: none; display: flex; flex-direction: column;
    gap: 0.8rem; max-width: 700px; width: 100%;
}
.mission ul li {
    color: var(--text-light); padding: 0.9rem 1.2rem;
    background: var(--white); border: 1px solid rgba(125,193,66,0.2);
    border-radius: 0.8rem;
    display: flex; align-items: flex-start; gap: 0.8rem;
    line-height: 1.6; transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(44,80,20,0.06);
}
.mission ul li:hover {
    background: rgba(125,193,66,0.06);
    border-color: var(--c2); color: var(--text);
    transform: translateX(4px);
}
.mission ul li::before { content: '→'; color: var(--c2); flex-shrink: 0; font-size: 0.9rem; }
.mission:nth-of-type(odd) ul li { background: var(--white); }

/* ══════════════════════════════════════
   TEAM / FOUNDER
══════════════════════════════════════ */
.team {
    width: 100%; padding: 5rem 6%;
    background: var(--c1);
    display: flex; flex-direction: column;
    align-items: center; gap: 3rem;
}
.team h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--c4); font-weight: bold; text-align: center; }
.team > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; width: 100%; }
.team div span {
    width: 260px; background: var(--white);
    border: 1px solid rgba(125,193,66,0.15);
    border-radius: 1.5rem; overflow: hidden;
    display: flex; flex-direction: column; gap: 0.6rem;
    box-shadow: var(--shadow); transition: all 0.4s ease;
}
.team div span:hover {
    transform: translateY(-8px);
    border-color: var(--c2); box-shadow: var(--shadow-lg);
}
.team div span img {
    width: 100%; height: 220px; object-fit: cover; object-position: center;
    transition: transform 0.5s ease;
}
.team div span:hover img { transform: scale(1.04); }
.team div span h2 { color: var(--text); font-size: 1rem; padding: 0 1rem; font-weight: bold; }

.team div span p { color: var(--text-light); font-size: 0.82rem; padding: 0 1rem; line-height: 1.5; }

.team div span p:first-of-type { color: var(--c3); font-size: 0.85rem; font-weight: bold; }

.team div span p:last-child { padding-bottom: 1rem; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { width: 100%; background: var(--c5); border-top: 3px solid var(--c2); }
.footer_container { display: flex; justify-content: space-evenly; padding: 3rem 2rem; flex-wrap: wrap; gap: 2rem; }
.footer_container [class*="part"] { min-width: 200px; flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.footer_container h1 { color: var(--accent); font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }
footer p, footer a, footer li { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer_container .part1 form { display: flex; flex-direction: column; gap: 0.5rem; }
.footer_container .part1 form label { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer_container .part1 form span { display: flex; gap: 0.5rem; }
.footer_container .part1 form input {
    flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2rem; padding: 0.5rem 1rem; color: var(--white); outline: none; transition: border-color 0.3s;
}
.footer_container .part1 form input:focus { border-color: var(--accent); }
.footer_container .part1 form button {
    background: var(--c2); border: none; padding: 0.5rem 1.2rem;
    border-radius: 2rem; color: var(--c6); font-weight: bold; cursor: pointer; transition: background 0.3s;
}
.footer_container .part1 form button:hover { background: var(--accent); }
.footer_container .part2 ul { list-style: none; }
.footer_container .part2 li { margin-bottom: 0.3rem; }
.footer_container .part2 a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.footer_container .part2 a:hover { color: var(--accent); }
.footer_container .part3 { align-items: flex-start; }
.footer_container .part3 span:first-child { display: flex; gap: 1rem; }
.footer_container .part3 span:first-child a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer_container .part3 span:first-child a:hover { color: var(--accent); }
.footer_container .part3 span:first-child svg { width: 1.3rem; height: 1.3rem; }
.footer_container .part3 .logo { display: flex; align-items: center; gap: 0.5rem; }
.footer_container .part3 .logo img { width: 1.8rem; }
.footer_container .part3 .logo h1 { font-size: 1rem; }
footer .legal {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
footer .legal p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media screen and (max-width: 55rem) {
    .who { grid-template-columns: 1fr; padding: 4rem 5%; gap: 2rem; }
    .who:nth-of-type(3) { direction: ltr; }
    .who div img { height: 250px; }
}
@media screen and (max-width: 37rem) {
    header { height: 3.5rem; padding: 0 1rem; }
    .nav_links, header .view { display: none; }
    .menu { display: block; color: var(--c4); }
    .exit_menu { color: var(--c4); }
    .mob_nav_links { display: flex; position: fixed; top: 5rem; right: -100%; z-index: 1000; transition: right 0.4s ease; }
    .mob_nav_links .mob_links {
        padding: 1rem 0.8rem; width: 55vw; border-radius: 1rem;
        display: flex; flex-direction: column; gap: 0.4rem;
        background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
        border: 1px solid rgba(125,193,66,0.3); box-shadow: 0 20px 50px rgba(44,80,20,0.2);
    }
    .mob_links a { color: var(--text-light); padding: 0.5rem 1rem; border-radius: 0.5rem; text-decoration: none; transition: all 0.3s ease; font-size: 0.9rem; }
    .mob_links a:hover { background: rgba(125,193,66,0.1); color: var(--c4); }
    .Hero { height: 70vh; }
    .hero_content { padding: 0 5%; }
    .mission { padding: 3rem 5%; }
    .team div span { width: 90%; max-width: 320px; }
    .footer_container { flex-direction: column; padding: 2rem 1.5rem; }
    .footer_container [class*="part"] { min-width: unset; width: 100%; }
    footer .legal { flex-direction: column; text-align: center; }
}
