:root {
    /* Color Palette */
    --primary: #F7D117;
    --primary-dark: #ccae12;
    --primary-light: #ffeb85;
    --secondary: #1a1a1a;
    --accent: #2ecc71; /* A splash of positive green for success/growth */
    --text-main: #333333;
    --text-muted: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --glass: rgba(255, 255, 255, 0.8);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing & Borders */
    --container-max: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --radius-md: 12px;
    --radius-lg: 24px;
}

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

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Utilities */
.text-center { text-align: center; }
.mt-10 { margin-top: 40px; }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow-xl { box-shadow: var(--shadow-hover); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--primary);
}

.btn-primary:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-accent {
    background-color: var(--primary);
    color: var(--secondary);
}

.btn-accent:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(247, 209, 23, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
}

.btn-outline:hover {
    background: var(--bg-white);
    color: var(--secondary);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -4px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--secondary);
    color: var(--bg-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Fallback gradient if image not found */
.hero-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.7) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
}

.accent-text {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.8);
}

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

/* Stats Section */
.stats {
    background: var(--primary);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-lg);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

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

.stat-card {
    text-align: center;
    color: var(--secondary);
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 8px;
}

.stat-card p {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 800;
    border-radius: 50px;
    font-size: 0.75rem;
    margin-bottom: 16px;
}

.mission-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.mission-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.icon-accent {
    color: var(--primary-dark);
}

.mission-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Program Cards */
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.program-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 24px;
}

.program-card h3 {
    margin-bottom: 16px;
}

.program-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.link {
    font-weight: 700;
    color: var(--secondary);
}

.link:hover {
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--bg-white);
    padding: 80px 0 40px;
}

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

.footer-info .logo {
    margin-bottom: 24px;
}

.white { color: var(--bg-white); }

.footer-info p {
    color: rgba(255,255,255,0.6);
}

.footer h4 {
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .grid-3, .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .stats {
        margin-top: 40px;
    }
}
