: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; }

[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%; min-height: 55vh;
    background:
        radial-gradient(ellipse at 70% 10%, rgba(212,240,107,0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(125,193,66,0.15) 0%, transparent 50%),
        linear-gradient(160deg, #eef7e5 0%, #f8fdf4 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}

.Hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    border: 1.5px solid rgba(125,193,66,0.2);
    top: -150px; right: -150px;
    animation: spin-slow 30s linear infinite;
}
.Hero::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px; border-radius: 50%;
    border: 1.5px solid rgba(125,193,66,0.12);
    bottom: -80px; left: -80px;
    animation: spin-slow 20s linear infinite reverse;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero_container .hero_badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.2rem;
    border: 1.5px solid var(--c3);
    border-radius: 3rem;
    background: rgba(125,193,66,0.08);
    color: var(--c3);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero_container .hero_text h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: bold;
    color: var(--text);
    line-height: 1.2;
}

.hero_container .hero_text h1 span {
    color: var(--c3);
    font-size: inherit;
    position: relative;
}
.hero_container .hero_text h1 span::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 100%; height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline-in 1s 0.8s forwards;
}
@keyframes underline-in { to { transform: scaleX(1); } }

.hero_container .hero_text p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 550px;
    line-height: 1.8;
    margin: 0 auto;
}

/* SUPPORT */
.support { width: 100%; padding: 5rem 6%; display: flex; gap: 4rem; align-items: center; background: var(--white); }
.support .part1 { width: 45%; display: flex; justify-content: center; }
.support .part1 img { width: 90%; border-radius: 1.5rem; object-fit: cover; box-shadow: var(--shadow-lg); transition: transform 0.4s ease; }
.support .part1 img:hover { transform: scale(1.02); }
.support .part2 { width: 55%; display: flex; flex-direction: column; gap: 1.5rem; }
.support .part2 dl { display: flex; flex-direction: column; gap: 0; position: relative; }
.support .part2 dl span {
    position: absolute; left: 1.1rem; top: 1.5rem;
    width: 2px; height: calc(100% - 3rem);
    background: linear-gradient(to bottom, var(--c2), transparent); border-radius: 2px;
}
.support .part2 dt { display: flex; align-items: center; gap: 1rem; color: var(--text); font-weight: bold; font-size: 1rem; padding: 0.8rem 0; }
.support .part2 dt p {
    width: 2.2rem; height: 2.2rem; border-radius: 50%;
    background: var(--c4); color: var(--white);
    display: grid; place-items: center; font-weight: bold; font-size: 0.85rem;
    flex-shrink: 0; transition: transform 0.3s ease;
}
.support .part2 dt:hover p { transform: scale(1.15); background: var(--c2); color: var(--c6); }
.support .part2 dd { margin: 0 0 1rem 3.2rem; color: var(--text-light); font-size: 0.88rem; line-height: 1.7; border-left: 2px solid rgba(125,193,66,0.25); padding-left: 1rem; }
.support .part2 > a {
    display: inline-flex; align-items: center; gap: 0.6rem;
    text-decoration: none; padding: 0.75rem 1.8rem;
    background: var(--c4); border-radius: 3rem; color: var(--white);
    font-weight: bold; width: fit-content; transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(45,90,27,0.25); margin-top: 0.5rem;
}
.support .part2 > a:hover { background: var(--c3); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(45,90,27,0.35); }

/* RESOURCE */
.resource { width: 100%; background: var(--c1); padding: 5rem 6%; display: flex; flex-direction: column; align-items: center; gap: 5rem; }

.resource .guide { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.resource .guide > div {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; max-width: 700px; 
    
}
.resource .guide > div h1 { font-size: 1.6rem;
    color: var(--c4); 
    font-weight: bold; 
    padding: 0 1rem 1rem 0;
    border-bottom: 2px solid var(--c4);
}
.resource .guide > div a {
    display: inline-flex; align-items: center; gap: 0.5rem;
    text-decoration: none; padding: 0.5rem 1.2rem;
    background: var(--c4); border-radius: 2rem; color: var(--white);
    font-weight: bold; font-size: 0.85rem; transition: all 0.3s ease;
}
.resource .guide > div a:hover { background: var(--c3); }
.resource .guide > div a svg { width: 1rem; height: 1rem; }

.guide span {
    width: 100%; max-width: 650px;
    background: var(--white); border: 1px solid rgba(125,193,66,0.15);
    border-radius: 1.2rem; display: flex; align-items: center;
    gap: 1.5rem; padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow); transition: all 0.35s ease;
    position: relative; overflow: hidden;
}
.guide span::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px; background: var(--c2); border-radius: 4px 0 0 4px;
    transform: scaleY(0); transform-origin: bottom; transition: transform 0.35s ease;
}
.guide span:hover::before { transform: scaleY(1); }
.guide span:hover { border-color: var(--c2); transform: translateX(5px); box-shadow: var(--shadow-lg); }
.guide span h1 { font-size: 0.95rem; color: var(--text); font-weight: bold; flex: 1; }
.guide span p { font-size: 0.82rem; color: var(--text-light); flex: 2; line-height: 1.6; }
.guide span img { width: 4rem; height: 4rem; object-fit: cover; border-radius: 0.8rem; flex-shrink: 0; }

.resource .tips { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.resource .tips h1 { font-size: 1.6rem; color: var(--c4); font-weight: bold; text-align: center; }
.tips > div { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; width: 100%; }
.tips div span {
    flex: 1; min-width: 220px; max-width: 300px;
    background: var(--white); border: 1px solid rgba(125,193,66,0.15);
    border-radius: 1.5rem; padding: 2rem 1.5rem;
    display: flex; flex-direction: column; gap: 1rem;
    box-shadow: var(--shadow); transition: all 0.4s ease;
}
.tips div span:hover { border-color: var(--c2); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tips div span h2 { color: var(--c4); font-size: 1rem; font-weight: bold; }
.tips div span ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.tips div span ul li { color: var(--text-light); font-size: 0.85rem; display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.5; }
.tips div span ul li::before { content: '→'; color: var(--c2); flex-shrink: 0; font-size: 0.8rem; }

/* 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; }

@media screen and (max-width: 55rem) { .support { flex-direction: column; padding: 4rem 5%; } .support .part1, .support .part2 { width: 100%; } .support .part1 img { width: 100%; } }
@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); }
    .guide span { flex-direction: column; }
    .guide span img { width: 100%; height: 120px; }
    .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; }
}
