/* 
   Theme: Tropical Forest & Terracotta
   Colors: Deep Green (#2A5C43), Terracotta (#D96C4A), Warm Sand (#E8A365), Soft Peach (#FDF8F5)
*/

:root {
    --primary: #2A5C43;
    --primary-dark: #1e4230;
    --secondary: #D96C4A;
    --secondary-hover: #c25b3b;
    --accent: #E8A365;
    --bg-light: #FDF8F5;
    --text-main: #333333;
    --text-light: #666666;
    --white: #ffffff;
    
    --font-heading: 'Georgia', serif;
    --font-body: 'Arial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.center {
    text-align: center;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { margin-bottom: 1.2rem; font-size: 1.05rem; }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}
.btn-primary:hover { background-color: var(--secondary-hover); }

.btn-secondary {
    background-color: var(--primary);
    color: var(--white);
}
.btn-secondary:hover { background-color: var(--primary-dark); }

.btn-block { width: 100%; }

/* Header & Navigation */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 10px; /* STRICT REQUIREMENT */
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-nav a {
    font-weight: bold;
    color: var(--text-main);
    transition: color 0.3s;
}

.desktop-nav a:hover { color: var(--secondary); }

/* Burger Menu */
.menu-checkbox { display: none; }
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li { margin-bottom: 15px; }
.mobile-nav a {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
    #menu-toggle:checked ~ .mobile-nav { display: block; }
    #menu-toggle:checked ~ .hamburger .line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    #menu-toggle:checked ~ .hamburger .line:nth-child(2) { opacity: 0; }
    #menu-toggle:checked ~ .hamburger .line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Hero V5 (Asymmetric Clip-Path) */
.hero-v5 {
    background-color: var(--primary);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.hero-v5-content {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 80vh;
}

.hero-v5-text {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
}

.hero-v5-text h1 { color: var(--white); }
.hero-v5-text p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; }

.badge {
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-v5-image-wrapper {
    position: relative;
    height: 400px;
}

.hero-v5-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

@media (min-width: 992px) {
    .hero-v5-content {
        grid-template-columns: 1fr 1fr;
        max-width: 1400px;
        margin: 0 auto;
    }
    .hero-v5-text { padding: 80px 60px; }
    .hero-v5-image-wrapper { height: auto; }
    .hero-v5-img { clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); }
}

/* Awareness Section */
.awareness-section { padding: 80px 0; }
.awareness-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.awareness-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-left: 5px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label { font-weight: bold; color: var(--text-light); }

@media (min-width: 768px) {
    .awareness-grid { grid-template-columns: 3fr 2fr; align-items: center; }
}

/* Parallax Split */
.parallax-split {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.parallax-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(42, 92, 67, 0.8); /* Primary color overlay */
}

.parallax-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: flex-end;
}

.parallax-box {
    background: var(--bg-light);
    padding: 50px;
    max-width: 600px;
    border-radius: 8px;
}

/* Masonry Benefits */
.benefits-masonry-section { padding: 80px 0; background-color: var(--white); }
.section-header { margin-bottom: 50px; }

.masonry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.masonry-item {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-top: 4px solid var(--accent);
}

@media (min-width: 768px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(100px, auto);
    }
    .item-tall { grid-row: span 2; }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--accent);
    text-align: center;
}
.cta-wrapper { max-width: 800px; margin: 0 auto; }
.cta-wrapper h2 { color: var(--primary-dark); }

/* Page Header */
.page-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 20px; }
.page-header p { max-width: 700px; margin: 0 auto; font-size: 1.2rem; opacity: 0.9; }

/* Zig-Zag Timeline */
.timeline-section { padding: 80px 0; }
.timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.module-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    font-weight: bold;
    margin-bottom: 15px;
}

.timeline-image img, .image-placeholder {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}
.bg-color-accent { background-color: var(--accent); }

@media (min-width: 768px) {
    .timeline-item { grid-template-columns: 1fr 1fr; gap: 60px; }
    .timeline-item.reverse .timeline-content { order: 2; }
    .timeline-item.reverse .timeline-image { order: 1; }
}

/* Accordion FAQ */
.faq-section { padding: 80px 0; background-color: var(--white); }
.accordion-wrapper { max-width: 800px; margin: 0 auto; }
.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.accordion-item summary {
    padding: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    background-color: var(--bg-light);
    color: var(--primary);
    list-style: none;
    position: relative;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
}
.accordion-item[open] summary::after { content: '-'; }
.accordion-content { padding: 20px; background-color: var(--white); }

/* Mission Page */
.manifesto-hero {
    padding: 120px 0;
    background-color: var(--bg-light);
    text-align: center;
}
.giant-text {
    font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 1.1;
    color: var(--primary);
}

.story-section { padding: 80px 0; }
.story-content { max-width: 900px; margin: 0 auto; }
.story-float-img {
    float: right;
    width: 300px;
    margin: 0 0 20px 30px;
    border-radius: 8px;
}
@media (max-width: 600px) {
    .story-float-img { float: none; width: 100%; margin: 0 0 20px 0; }
}

.values-section { padding: 80px 0; background-color: var(--white); }
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}
.value-box {
    padding: 40px;
    color: var(--white);
    border-radius: 8px;
}
.value-box h3 { color: var(--white); }
.value-num {
    font-size: 3rem;
    font-family: var(--font-heading);
    opacity: 0.5;
    display: block;
    margin-bottom: 10px;
}
.color-primary { background-color: var(--primary); }
.color-secondary { background-color: var(--secondary); }
.color-accent { background-color: var(--accent); color: var(--primary-dark); }
.color-accent h3 { color: var(--primary-dark); }

@media (min-width: 768px) {
    .values-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Contact Page */
.contact-section { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
.info-block { margin-bottom: 30px; }
.info-block h3 { margin-bottom: 10px; font-size: 1.2rem; }

.custom-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 800px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--primary);
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-body);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* Legal Pages */
.legal-section { padding: 80px 0; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { margin-top: 40px; font-size: 1.5rem; }
.legal-content ul { margin-left: 20px; margin-bottom: 20px; }

/* Thank You Page */
.thank-you-section { padding: 100px 0; min-height: 60vh; display: flex; align-items: center; }
.thank-you-box { max-width: 600px; margin: 0 auto; }
.icon-success {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}
.next-steps {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}
.action-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Footer (Hardcoded colors to prevent translation breaks) */
.site-footer {
    background-color: #1e4230 !important; /* var(--primary-dark) */
    color: #ffffff !important;
    padding: 60px 0 20px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.footer-logo {
    font-family: 'Georgia', serif !important;
    font-size: 1.8rem !important;
    font-weight: bold !important;
    color: #E8A365 !important; /* var(--accent) */
    margin-bottom: 15px;
    display: inline-block;
}
.footer-brand p { color: #cccccc !important; }
.footer-links h4, .footer-legal h4 {
    color: #ffffff !important;
    margin-bottom: 20px;
    font-family: 'Georgia', serif !important;
}
.footer-links ul, .footer-legal ul { list-style: none; }
.footer-links li, .footer-legal li { margin-bottom: 10px; }
.footer-links a, .footer-legal a {
    color: #cccccc !important;
    transition: color 0.3s;
}
.footer-links a:hover, .footer-legal a:hover { color: #E8A365 !important; }
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #2A5C43 !important;
    color: #999999 !important;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-container { grid-template-columns: 2fr 1fr 1fr; }
}

/* Cookie Banner */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    padding: 18px 24px;
    background-color: #333333;
    color: #ffffff;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    transform: translateY(0); transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; color: #fff; }
#cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-accept { background-color: var(--secondary); color: white; }
.cookie-btn-decline { background-color: transparent; color: white; border: 1px solid white; }

@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}