:root {
    --primary: #032952;
    --secondary: #FF8C00;
    --lpf: #00ff22;
    --bg-light: #fcfbf7;
    --white: #ffffff;
    --text: #333333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text);
    background: #f9f9f9;
}

/* Header & Nav */
.site-header {
    background: var(--white);
    padding: 15px 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-group img {
    height: 50px;
}

.logo-group h3 {
    color: var(--primary);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.main-nav a:hover {
    color: var(--secondary);
}

.btn-donate {
    background: var(--secondary);
    color: white !important;
    padding: 8px 18px;
    border-radius: 4px;
}

/* Hero Sections */
.hero {
    background: linear-gradient(rgba(3, 41, 82, 0.7), rgba(3, 41, 82, 0.7)), url('../assets/images/home-banner.jpg') center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 0 10%;
}

.hero h1 {
    font-size: 3.5rem;
    max-width: 800px;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Content Sections */
.section {
    padding: 80px 10%;
}

.section-divider {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.section-divider::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid #ddd;
    margin-left: 20px;
}

/* Program Grid (The Orange/Blue block from your photo) */
.program-block {
    background: linear-gradient(to bottom, var(--secondary) 50%, var(--primary) 50%);
    padding: 60px 10%;
    color: white;
    text-align: center;
}

.prog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.prog-item .icon-circle {
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Cards (Vision/Mission) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-light);
    padding: 30px;
    border-top: 5px solid var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card.mission {
    border-color: #22c55e;
}

.card.values {
    border-color: var(--secondary);
}

/* ========== Footer Styling ========= */
.site-footer {
    background-color: var(--primary);
    /* Deep Navy #032952 */
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--secondary);
    /* Orange #FF8C00 */
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 800;
}

.footer-logo span {
    font-weight: 400;
    color: #fff;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

/* Social Icons */
.footer-socials {
    margin-top: 20px;
}

.footer-socials a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Newsletter Form */
.footer-form {
    display: flex;
    margin-top: 15px;
}

.footer-form input {
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    flex: 1;
}

.footer-form button {
    background: var(--secondary);
    border: none;
    padding: 10px 15px;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-form {
        justify-content: center;
    }
}

/* World Class Donate Hero */
.donate-hero {
    background: linear-gradient(rgba(3, 41, 82, 0.85), rgba(3, 41, 82, 0.7)),
        url('assets/images/donate-bg.jpg');
    /* Ensure this image exists */
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    clip-path: ellipse(150% 100% at 50% 0%);
    /* Subtle curved bottom for premium feel */
}

.donate-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.donate-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #e2e8f0;
    line-height: 1.6;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

/* Modern Impact Cards */
.impact-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: -50px;
    /* Pulls cards up into the hero area */
    position: relative;
    z-index: 10;
}

.impact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-bottom: 4px solid var(--secondary);
}

.impact-card:hover {
    transform: translateY(-10px);
}

.impact-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.impact-card p {
    font-size: 0.95rem;
    color: #64748b;
}

:root {
    --primary: #032952;
    /* Deep Navy */
    --secondary: #FF8C00;
    /* Vibrant Orange */
    --text-dark: #1e293b;
    --bg-light: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: var(--text-dark);
}

/* Header Styling */
.site-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-group img {
    height: 50px;
}

.logo-group h3 {
    color: var(--primary);
    margin: 0;
    font-size: 1.4rem;
}

.logo-group span {
    color: var(--secondary);
}

.brand-text small {
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.65rem;
    display: block;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    margin: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.main-nav a:hover {
    color: var(--secondary);
}

.btn-donate {
    background: var(--secondary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.2);
}

/* Footer Styling */
.site-footer {
    background: var(--primary);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col p {
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.8rem;
}
/* ADMIN GATEWAY CONTAINER */
.gateway-section {
    position: relative;
    width: 100%;
    min-height: 80vh; /* Adjusts height to show header/footer */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Clips the video to this section */
}

/* THE VIDEO BACKGROUND */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%; 
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1; /* Behind the content */
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.7); /* Darkens video for readability */
}

/* THE LOGIN BOX */
.login-overlay {
    position: relative;
    z-index: 10; /* Above the video */
    background: rgba(3, 41, 82, 0.85); /* Navy with transparency */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    margin: 40px 0; /* Space for when header/footer are close */
}

/* FORM ELEMENTS */
.login-overlay h2 { margin-bottom: 20px; font-weight: 800; }
.login-overlay input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
}
.btn-admin {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}
/* Section stretches full width of screen */
    .impact-model-section {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        
        /* Soft, professional background color */
        background-color: #f0f4f8; 
        padding: 80px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .model-image-container {
        width: 85%;
        max-width: 850px; /* Limits size so it doesn't "over-shout" */
        background: #ffffff;
        padding: 30px; /* Creates a white frame around the image */
        border-radius: 24px;
        box-shadow: 0 15px 45px rgba(0,0,0,0.06); /* Very subtle, high-end shadow */
        transition: transform 0.4s ease;
    }

    .model-image-container:hover {
        transform: translateY(-5px);
    }

    .model-image-container img {
        width: 100%;
        height: auto;
        max-height: 500px; /* Prevents the image from being too tall */
        object-fit: contain; /* Ensures the whole model is visible without cropping */
        display: block;
        border-radius: 12px;
    }

    .model-tag {
        background: var(--secondary);
        color: white;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 800;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }
.btn-donate {
    background: var(--secondary);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}
.btn-donate:hover {
    background: var(--lpf);
}
    