/* 
 * English Site Stylesheet - Premium Modern NGO Design
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1d4a25;         /* Deep Africa Forest Green */
    --primary-light: #2d6b38;
    --accent: #e25b3c;          /* Warm Terracotta Earth */
    --accent-hover: #c94628;
    --bg-sand: #FAF8F5;         /* Rich Warm Sand */
    --bg-dark: #0f1911;         /* Deep Forest Night */
    --text-main: #2b352e;       /* Off-black Green */
    --text-muted: #627267;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(29, 74, 37, 0.05);
    --shadow-md: 0 10px 30px rgba(29, 74, 37, 0.08);
    --shadow-lg: 0 20px 50px rgba(29, 74, 37, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-sand);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    background: transparent;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.logo-text {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    max-width: 240px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
    font-family: var(--font-heading);
    border-left: 1.5px solid rgba(255, 255, 255, 0.25);
    padding-left: 16px;
    margin-left: 4px;
}

.logo span {
    color: var(--accent);
}

.logo-icon {
    font-size: 28px;
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

/* Dropdown Navigation Menu */
.nav-menu li {
    position: relative;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 25, 17, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    list-style: none;
    padding: 12px 0;
    border-radius: var(--radius-sm);
    width: 220px;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    text-align: left;
}

.dropdown-menu a:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 24px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-lang {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-lang:hover {
    background: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
}

.btn-donate-header {
    background-color: var(--accent);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(226, 91, 60, 0.3);
}

.btn-donate-header:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 91, 60, 0.5);
}

/* Hero Section */
.hero-sec {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('../images/hero_bg_bright.png') no-repeat center center / cover;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 25, 17, 0.25) 0%, rgba(15, 25, 17, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 91, 60, 0.15);
    border: 1px solid rgba(226, 91, 60, 0.3);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: var(--accent);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(226, 91, 60, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(226, 91, 60, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Introduction Section */
.intro-sec {
    padding: 100px 0;
    background-color: var(--bg-sand);
}

.section-tag {
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 24px;
    max-width: 600px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.intro-text p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-quote {
    border-left: 4px solid var(--accent);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    font-size: 18px;
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
}

.intro-image-wrapper {
    position: relative;
}

.intro-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    width: 100%;
    height: 480px;
}

.intro-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--primary);
    color: #ffffff;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 240px;
}

.intro-badge-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.intro-badge-txt {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Core Pillars Section */
.pillars-sec {
    padding: 100px 0;
    background-color: #ffffff;
}

.pillars-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.pillars-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.7;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background-color: var(--bg-sand);
    border-radius: var(--radius-md);
    padding: 40px;
    transition: var(--transition);
    border: 1px solid rgba(29, 74, 37, 0.03);
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(29, 74, 37, 0.08);
    background-color: #ffffff;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card.accent-pillar::before {
    background-color: var(--accent);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(29, 74, 37, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 28px;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    background-color: var(--primary);
    color: #ffffff;
}

.pillar-card.accent-pillar .pillar-icon {
    background-color: rgba(226, 91, 60, 0.1);
    color: var(--accent);
}

.pillar-card.accent-pillar:hover .pillar-icon {
    background-color: var(--accent);
    color: #ffffff;
}

.pillar-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
}

.pillar-card.accent-pillar .pillar-title {
    color: #2b352e;
}

.pillar-card:hover .pillar-title {
    color: var(--primary);
}

.pillar-card.accent-pillar:hover .pillar-title {
    color: var(--accent);
}

.pillar-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.pillar-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pillar-card.accent-pillar .pillar-link {
    color: var(--accent);
}

.pillar-link i {
    transition: var(--transition);
}

.pillar-card:hover .pillar-link i {
    transform: translateX(4px);
}

/* Impact Numbers Section */
.impact-sec {
    padding: 80px 0;
    background-color: var(--primary);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.impact-item {
    position: relative;
}

.impact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.impact-num {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.impact-label {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Get Involved Section (CTA) */
.cta-sec {
    padding: 100px 0;
    background-color: var(--bg-sand);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.cta-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 50px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    transition: var(--transition);
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cta-card.dark-card {
    background-color: var(--bg-dark);
    color: #ffffff;
}

.cta-body h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-card:not(.dark-card) h3 {
    color: var(--primary);
}

.cta-card.dark-card h3 {
    color: #ffffff;
}

.cta-body p {
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-card:not(.dark-card) p {
    color: var(--text-muted);
}

.cta-card.dark-card p {
    color: rgba(255, 255, 255, 0.7);
}

.cta-footer {
    display: flex;
}

/* Footer */
.site-footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-about h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-about h3 span {
    color: var(--accent);
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.social-link:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.footer-links h4, .footer-contact h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact p {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    list-style: none;
    font-size: 13px;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Mobile responsive menu */
.menu-toggle {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .intro-image-wrapper {
        order: -1;
    }
    .intro-img {
        height: 380px;
    }
    .intro-badge {
        left: 20px;
        bottom: -20px;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .impact-item:nth-child(2)::after {
        display: none;
    }
    .cta-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 16px 0;
    }
    .nav-menu, .nav-actions .btn-donate-header, .logo-text {
        display: none;
    }
    
    /* Responsive Dropdown for Mobile */
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.03) !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin-top: 10px;
    }
    .dropdown-menu a {
        padding: 8px 30px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 13.5px !important;
    }
    .dropdown-menu a:hover {
        padding-left: 36px !important;
        background: transparent !important;
        color: var(--accent) !important;
    }

    .menu-toggle {
        display: block;
        color: #ffffff;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
    }
    .hero-sec {
        height: auto;
        padding: 160px 0 100px;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .section-title {
        font-size: 32px;
    }
    .impact-grid {
        grid-template-columns: 1fr;
    }
    .impact-item::after {
        display: none !important;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
