/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c1810;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Palette */
:root {
    --primary-red: #8B2635;
    --warm-gold: #D4A574;
    --deep-brown: #4A2C2A;
    --light-cream: #F7F3E9;
    --soft-gold: #F4E4BC;
    --accent-red: #A0394C;
    --text-dark: #2c1810;
    --white: #ffffff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(139, 38, 53, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--warm-gold);
}

.donate-nav {
    background: var(--warm-gold);
    color: var(--deep-brown) !important;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.donate-nav:hover {
    background: var(--soft-gold);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--soft-gold) 100%);
    padding: 100px 20px 50px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--deep-brown);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-btn {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(139, 38, 53, 0.3);
}

/* Image Overlays */
.image-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image:hover .image-overlay,
.story-image:hover .image-overlay,
.mission-image:hover .image-overlay {
    opacity: 1;
}

.overlay-donate {
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.4);
    transition: all 0.3s ease;
}

.overlay-donate:hover {
    background: var(--accent-red);
    transform: scale(1.05);
}

/* Donate Buttons */
.donate-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.3);
    border: none;
    cursor: pointer;
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 38, 53, 0.4);
    background: linear-gradient(135deg, var(--accent-red), var(--primary-red));
}

/* Section Styles */
.section-title {
    font-size: 2.8rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-description {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-red);
}

.stat-label {
    font-size: 1rem;
    color: var(--deep-brown);
    font-weight: 500;
}

.mission-image {
    position: relative;
}

.mission-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--light-cream) 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.impact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.impact-card h3 {
    font-size: 1.4rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: bold;
}

.impact-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.impact-cta {
    text-align: center;
    margin-top: 60px;
}

.impact-text {
    font-size: 1.3rem;
    color: var(--deep-brown);
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 500;
}

/* Stories Section */
.stories {
    padding: 100px 0;
    background: var(--white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.story-card {
    background: var(--light-cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: bold;
}

.story-content p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Final Donate Section */
.final-donate {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
    color: var(--white);
    text-align: center;
}

.donate-title {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.donate-text {
    font-size: 1.3rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.donate-urgency {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: bold;
    color: var(--warm-gold);
}

.final-btn {
    background: var(--warm-gold);
    color: var(--deep-brown);
    font-size: 1.3rem;
    padding: 20px 40px;
    margin-bottom: 20px;
}

.final-btn:hover {
    background: var(--soft-gold);
}

.donate-security {
    font-size: 1rem;
    color: var(--soft-gold);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--deep-brown);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3,
.footer-contact h4 {
    color: var(--warm-gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-info p,
.footer-contact p {
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-btn {
    padding: 15px 30px;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--accent-red);
    color: var(--soft-gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        justify-content: center;
        gap: 20px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .donate-title {
        font-size: 2.2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional hover effects */
.impact-card:hover,
.story-card:hover {
    box-shadow: 0 20px 40px rgba(139, 38, 53, 0.2);
}

/* Pulse animation for urgent elements */
.donate-urgency {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}