/* --- Variables & Reset --- */
:root {
    --primary-orange: #ff5a30;
    --dark-green: #0e302c;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666;
    --bg-cream: #f9f7f2;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Utility: Container */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 1. Top Bar --- */
.top-bar {
    background-color: #1a2b29; /* Very dark slate */
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}

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

.tb-left p i { margin-right: 8px; color: var(--primary-orange); }
.tb-left a { color: #fff; text-decoration: underline; font-weight: 600; }

.tb-right { display: flex; gap: 30px; align-items: center; }

.info-item { display: flex; align-items: center; gap: 8px; }
.info-item i { color: var(--primary-orange); }

.social-icons { display: flex; gap: 15px; border-left: 1px solid rgba(255,255,255,0.2); padding-left: 20px; }
.social-icons a { color: #fff; transition: 0.3s; font-size: 14px; }
.social-icons a:hover { color: var(--primary-orange); }

/* --- 2. Navbar --- */
/* Navbar */
.navbar {
    background: var(--bg-cream);
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    color: #111;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 16px;
}

.nav-links a:hover,
.nav-links .active {
    color: #008080;
}

.btn-primary {
    background: #008080;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
}

@media (max-width: 900px) {
    .top-bar {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .tb-right {
        display: none;
    }
    
    .top-bar-content {
        justify-content: center;
    }
    
    .navbar {
        padding: 10px 0;
        position: relative;
    }
    
    .nav-content {
        position: relative;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-img {
        height: 35px;
    }

    .nav-links {
        display: none !important;
    }
    
    .btn-primary {
        display: none !important;
    }

    .nav-toggle {
        display: block !important;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--dark-green);
        cursor: pointer;
        padding: 8px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links.mobile-open {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0;
        border: 1px solid #eee;
        border-radius: 8px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        z-index: 1000;
        margin-top: 10px;
    }
    
    .nav-links.mobile-open li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links.mobile-open li:last-child {
        border-bottom: none;
    }
    
    .nav-links.mobile-open a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        color: var(--text-dark);
        text-decoration: none;
    }
    
    .nav-links.mobile-open a:hover,
    .nav-links.mobile-open a.active {
        color: var(--primary-orange);
        background: rgba(255, 90, 48, 0.05);
    }
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: #fff;
}
.btn-primary:hover { background-color: #e04820; }

/* --- 3. Hero Section --- */
.hero-wrapper {
    padding: 20px 0 40px 0;
}

.hero-card {
    background-color: var(--dark-green);
    border-radius: 30px;
    display: flex;
    overflow: hidden; /* Clips the image corners */
    min-height: 320px; /* reduced from 420px to decrease hero height */
    position: relative;
    color: white;
}

/* Left Content */
.hero-text {
    flex: 1;
    padding: 40px 30px; /* reduced padding to tighten vertical space */
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sub-headline {
    color: var(--primary-orange);
    font-family: 'Nothing You Could Do', cursive; /* Fallback used here, ideally a handwriting font */
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 600;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.highlight { color: var(--primary-orange); }
.highlight.underline {
    text-decoration: underline;
    text-decoration-color: var(--primary-orange);
    text-underline-offset: 8px;
    color: #fff; /* Keep text white, underline orange */
}
/* Re-override color for Child's */
h1 span:nth-child(4) { color: var(--primary-orange); } 

.hero-text p {
    color: #cbd5d4;
    font-size: 16px;
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 40px;
}

.hero-buttons { display: flex; align-items: center; gap: 20px; }

/* --- Hero Bottom Features Bar --- */
.hero-features-bar {
    width: 100%;
    background-color: rgba(253, 250, 246, 0.95); /* Slightly transparent cream */
    border-top: 1px solid #eee;
    padding: 25px 20px;
    
    /* ENABLE THIS to make it sit at the bottom of the hero image */
    position: absolute; 
    bottom: 0;
    left: 0;
    z-index: 10; /* Ensures it sits ON TOP of the hero image */
}

.feature-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

/* Updated Icon Styling for SVGs */
.feature-icon svg {
    width: 40px;      /* Perfect icon size */
    height: 40px;
    stroke: #f57542;  /* Nissi Orange */
    stroke-width: 1.5;
}

.feature-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #003366;
    margin: 0 0 4px 0;
}

.feature-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.feature-divider {
    width: 1px;
    height: 40px;
    background-color: #e0e0e0;
    margin: 0 10px;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .hero-features-bar {
        position: relative; /* On mobile, let it sit below the image naturally */
    }
    .feature-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .feature-divider { display: none; }
    .feature-item { justify-content: flex-start; }
}

/* Right Image */
.hero-image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Optional: Overlay gradient to blend image into background like in design */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    background: linear-gradient(to right, var(--dark-green), transparent);
}



/* Hero Section Mobile */
@media (max-width: 992px) {
    .hero-wrapper {
        padding: 15px 0 30px 0;
    }
    
    .hero-card {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        border-radius: 20px;
    }
    
    .hero-text {
        padding: 30px 20px;
        align-items: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 15px;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-image-container {
        height: 250px;
        order: -1;
    }
    
    .image-overlay {
        display: none;
    }
}

/* --- Impact Section Styles --- */
.impact-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.impact-section .container {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 250px));
    gap: 25px;
    justify-content: center;
    max-width: 850px;
}

/* --- General Card Styling --- */
.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

/* Image Wrapper */
.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

/* The Floating Circle Icon */
.card-icon {
    position: absolute;
    bottom: -30px; /* Pulls half the icon below the image */
    left: 50%;
    transform: translateX(-50%);
    
    width: 80px;
    height: 80px;
    background-color: #f57542; /* The Orange/Gold you liked */
    border: 5px solid white; /* White ring around it */
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Card Text Content */
.card-content {
    padding: 50px 20px 30px; /* Extra top padding to clear the icon */
}

.card-content h3 {
    color: #003366; /* Nissi Deep Blue */
    margin-bottom: 15px;
    font-size: 22px;
}

.card-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* --- The "Call to Action" (3rd) Card --- */
.cta-card {
    background-color: #1a2b3c; /* Dark background from screenshot */
    background-image: linear-gradient(rgba(0,51,102,0.8), rgba(0,51,102,0.8)), url('path-to-bg-image.jpg'); /* Optional background image overlay */
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    padding: 40px;
    text-align: left;
}

.cta-content h3 {
    color: white;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.cta-content p {
    color: #ddd;
    margin-bottom: 30px;
}

.arrow-graphic {
    font-size: 40px;
    color: #f57542;
    margin-bottom: 10px;
    text-align: right;
    transform: rotate(90deg); /* Just a simple CSS arrow trick */
}

.join-btn {
    background-color: #f57542; /* Nissi Orange */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.join-btn:hover {
    background-color: #e06030; /* Darker orange on hover */
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-text {
        padding: 25px 15px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        bottom: -20px;
    }
    
    .card-content {
        padding: 40px 15px 20px;
    }
    
    .card-content h3 {
        font-size: 18px;
    }
    
    .cta-content h3 {
        font-size: 20px;
    }
    
    .join-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .footer-logo {
        font-size: 18px;
    }
    
    .footer-logo-img {
        height: 30px;
    }
    
    .modal-content {
        width: 98%;
        margin: 20% auto;
    }
    
    .close {
        font-size: 24px;
        right: 15px;
        top: 10px;
    }
}

/* Mobile button improvements */
@media (max-width: 768px) {
    .btn {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .hero-buttons .btn {
        margin-bottom: 10px;
    }
    
    .btn-text {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #fff;
    }
}

/* --- About Page Styles --- */
.about-page {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #f0f0f0 100%);
    min-height: 100vh;
}

.about-overlay {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    margin-bottom: 30px;
}

.back-link a {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: var(--dark-green);
}

.about-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.about-content {
    display: grid;
    gap: 30px;
}

.glassy-text {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glassy-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.glassy-text h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 20px;
    position: relative;
}

.glassy-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.glassy-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .impact-section {
        padding: 40px 15px;
    }
    
    .impact-section .container {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 20px;
    }
    
    .card-content {
        padding: 30px 20px 25px;
    }
    
    .card-content h3 {
        font-size: 20px;
    }
    
    .card-content p {
        font-size: 14px;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .glassy-text {
        padding: 25px 20px;
    }
    
    .glassy-text h2 {
        font-size: 22px;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .founder-image {
        margin-bottom: 20px;
    }
    
    .founder-photo {
        width: 150px;
        height: 180px;
    }
}

/* --- Founder Section Styles --- */
.founder-section {
    margin-top: 40px;
}

.founder-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.founder-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.founder-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.founder-image {
    flex-shrink: 0;
}

.founder-photo {
    width: 200px;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.founder-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.founder-title-text {
    font-size: 18px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 20px;
}

.founder-bio {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 15px;
}

/* --- Board Section Styles --- */
.board-section {
    margin-top: 60px;
}

.board-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.board-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.board-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.board-track {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
    width: calc(200% + 30px);
}

@media (max-width: 768px) {
    .board-section {
        margin-top: 40px;
    }
    
    .board-title {
        font-size: 28px;
    }
    
    .board-track {
        gap: 20px;
        animation-duration: 15s;
    }
    
    .board-member {
        flex: 0 0 180px;
        min-width: 180px;
        padding: 20px 15px;
    }
    
    .board-photo {
        width: 100px;
        height: 120px;
    }
    
    .board-info h4 {
        font-size: 18px;
    }
    
    .board-position {
        font-size: 14px;
    }
}

.board-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.board-member {
    background: transparent;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    flex: 0 0 220px;
    min-width: 220px;
}

.board-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.board-image {
    margin-bottom: 20px;
}

.board-photo {
    width: 120px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.board-info h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.board-position {
    font-size: 16px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.board-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.board-member {
    position: relative;
    transition: transform 0.3s ease;
}

.board-member:hover {
    transform: translateY(-8px) scale(1.02);
}

.board-tooltip {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(14, 48, 44, 0.95);
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    width: 200px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.board-member:hover .board-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -5px;
}

.board-tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(14, 48, 44, 0.95);
}

.board-tooltip p {
    margin: 5px 0;
    font-size: 11px;
}

.board-tooltip strong {
    color: var(--primary-orange);
    font-weight: 600;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 15% auto;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .modal-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .modal-photo {
        width: 60px;
        height: 60px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .modal-title h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-body > p {
        font-size: 1rem;
    }
    
    .modal-details {
        padding: 15px;
    }
    
    .modal-details p {
        font-size: 0.9rem;
    }
}

/* --- Events Page Styles --- */
.events-hero {
    background: linear-gradient(135deg, var(--dark-green) 0%, #1a4037 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.events-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.events-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.events-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.event-date {
    background: var(--primary-orange);
    color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.event-date .month {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.event-date .day {
    display: block;
    font-size: 28px;
    font-weight: 700;
}

.event-content {
    flex: 1;
}

.event-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.event-content p {
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

.event-content p i {
    color: var(--primary-orange);
    margin-right: 8px;
}

.event-btn {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.event-btn:hover {
    background: #e04820;
}

@media (max-width: 768px) {
    .events-hero h1 {
        font-size: 36px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        align-self: center;
    }
}

/* --- Causes Page Styles --- */
.causes-hero {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e04820 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.causes-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.causes-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.causes-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cause-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cause-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.cause-image {
    height: 200px;
    overflow: hidden;
}

.cause-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cause-card:hover .cause-image img {
    transform: scale(1.05);
}

.cause-content {
    padding: 25px;
}

.cause-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.cause-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.progress-bar {
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress {
    background: var(--primary-orange);
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.cause-stats {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.cause-btn {
    display: block;
    background: var(--primary-orange);
    color: white;
    padding: 12px 0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
}

.cause-btn:hover {
    background: #e04820;
}

@media (max-width: 768px) {
    .causes-hero h1 {
        font-size: 36px;
    }
    
    .causes-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Contact Page Styles --- */
.contact-hero {
    background: linear-gradient(135deg, var(--dark-green) 0%, #1a4037 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    background: var(--primary-orange);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-btn {
    background: var(--primary-orange);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.contact-btn:hover {
    background: #e04820;
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* --- Footer Styles --- */
.footer {
    background-color: var(--dark-green);
    color: white;
    padding: 60px 0 20px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-section p {
    color: #cbd5d4;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cbd5d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #cbd5d4;
}

.footer-contact i {
    color: var(--primary-orange);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #cbd5d4;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-logo {
        font-size: 20px;
        justify-content: center;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 18px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}