:root {
    --primary: #2d5a27;
    --primary-light: #4caf50;
    --dark: #0f1a0e;
    --secondary: #e8f5e9;
    --accent: #ffeb3b;
    --text-white: #f5f5f5;
    --text-muted: #a5d6a7;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    background-color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 26, 14, 0.9);
    backdrop-filter: blur(10px);
    height: 60px;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.7);
    transform: scale(1.1);
    animation: zoom-slow 20s infinite alternate;
}

@keyframes zoom-slow {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 26, 14, 0.2), rgba(15, 26, 14, 1));
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.highlight {
    color: var(--primary-light);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    opacity: 0.9;
    font-weight: 300;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.arrow {
    width: 2px;
    height: 40px;
    background: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-white);
    animation: arrow-anim 2s infinite ease-in-out;
}

@keyframes arrow-anim {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Sections */
.section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease-out;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

.section.dark {
    background: #0a1209;
}

.section-header {
    margin-bottom: 4rem;
}

.tag {
    display: inline-block;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

.grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.col-2 {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .col-2 { grid-template-columns: 1fr; }
    .grid.reverse { direction: rtl; }
    .grid.reverse > * { direction: ltr; }
}

.content-card {
    background: var(--glass);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.content-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.content-card p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    background: var(--glass);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-light);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Protest Card */
.protest-sign-bg {
    background: #e0d5c1;
    color: #333;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 20px 20px 0 rgba(45, 90, 39, 0.3);
    padding: 2rem;
    transform: rotate(-3deg);
}

.protest-sign-bg span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    text-align: center;
    line-height: 1;
    letter-spacing: -2px;
}

/* Voyage Section */
.voyage-feature {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.voyage-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.voyage-details {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    max-width: 450px;
}

.voyage-card {
    background: rgba(15, 26, 14, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.voyage-stats {
    list-style: none;
    margin-top: 1.5rem;
}

.voyage-stats li {
    margin-bottom: 0.8rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.8rem;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.impact-card {
    background: var(--glass);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.impact-card:hover {
    background: rgba(45, 90, 39, 0.1);
    transform: translateY(-10px);
}

.impact-card .icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: block;
}

/* Footer */
.footer {
    padding: 100px 0 50px;
    background: #050a05;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    max-width: 900px;
    margin: 0 auto 3rem;
}

.footer-logo {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 5px;
    margin-bottom: 3rem;
    opacity: 0.1;
}

.footer-bottom {
    opacity: 0.5;
    font-size: 0.8rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

/* Animations Hub */
[data-animate] {
    opacity: 0;
}

[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate="zoom-in"] { transform: scale(0.95); }

.animate-in {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
    .voyage-img { height: 400px; }
    .voyage-details {
        position: static;
        max-width: 100%;
        margin-top: 1rem;
    }
}
