/* ===== Lebanon Crisis Appeal Page Styles ===== */

/* Hero Section */
.crisis-hero {
    min-height: 450px;
    overflow: hidden;
}

.crisis-hero-img {
    min-height: 450px;
    object-fit: cover;
}

.crisis-title {
    font-size: 2.5em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Dynamic Numbers */
#crisis-numbers {
    padding: 50px 0;
    background: #f8f9fa;
}

.crisis-number {
    font-size: 2.2em;
    font-weight: bold;
    color: #6c3baa; /* purple to match site theme */
}

/* Partner Cards */
.partner-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    min-height: 250px;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-icon {
    font-size: 2.5em;
    color: #6c3baa;
    margin-bottom: 15px;
}

.partner-card h4 {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.partner-card p {
    color: #666;
    font-size: 0.95em;
}

/* Intervention Cards */
.intervention-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 220px;
}

.intervention-card:hover {
    transform: translateY(-5px);
}

.intervention-icon {
    font-size: 2.2em;
    color: #6c3baa;
    margin-bottom: 10px;
}

.intervention-card h5 {
    color: #333;
    font-weight: bold;
    margin-bottom: 8px;
}

.intervention-card p {
    color: #666;
    font-size: 0.9em;
}

/* Crisis Appeal CTA Section */
.crisis-appeal-section {
    background: linear-gradient(135deg, #6c3baa 0%, #3b1f6e 100%);
    padding: 60px 0;
}

.appeal-stat {
    padding: 20px;
}

/* Donate Section */
.donate-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.donate-box {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.donate-amount {
    background: #fff;
    border: 2px solid #6c3baa;
    color: #6c3baa;
    padding: 12px 25px;
    margin: 5px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donate-amount:hover,
.donate-amount.active {
    background: #6c3baa;
    color: #fff;
}

.donate-btn {
    padding: 15px 50px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#custom-amount {
    padding: 12px;
    font-size: 1.1em;
    border: 2px solid #ddd;
    border-radius: 5px;
}

#custom-amount:focus {
    border-color: #6c3baa;
    outline: none;
    box-shadow: 0 0 5px rgba(108, 59, 170, 0.3);
}

/* Utility */
.f-size-12em { font-size: 1.2em; }
.f-size-08em { font-size: 0.8em; }
.mg-bt-30 { margin-bottom: 30px; }
.justify-space-center { justify-content: center; }

/* Responsive */
@media (max-width: 768px) {
    .crisis-title {
        font-size: 1.5em;
    }

    .crisis-hero {
        min-height: 300px;
    }

    .crisis-hero-img {
        min-height: 300px;
    }

    .crisis-number {
        font-size: 1.5em;
    }

    .partner-card,
    .intervention-card {
        min-height: auto;
    }

    .donate-amount {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}
