/* Philanthropy Page CSS */
:root {
    --gold: #0d4d4d;
    --dark-gold: #001f3f;
    --navy: #00162e;
    --text-grey: #5a5a5a;
    --light-grey: #faf8f5;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--navy);
}

h1, h2, h3, h4 {
    font-weight: 700;
}

p {
    font-family: 'Inter', sans-serif;
    color: var(--text-grey);
    line-height: 1.8;
}

.phil-hero {
    background: linear-gradient(rgba(31, 42, 68, 0.8), rgba(31, 42, 68, 0.8)), url('../img/donation-3.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 76px;
}

.phil-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.phil-hero p {
    color: #ddd;
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
}

.intro-section {
    padding: 100px 0;
    text-align: center;
}

.intro-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.intro-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto 0;
}

.impact-areas {
    background-color: var(--light-grey);
    padding: 100px 0;
}

.impact-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.impact-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.impact-card h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--dark-gold);
}

.gold-divider {
    height: 2px;
    width: 100px;
    background-color: var(--gold);
    margin: 30px auto;
}

.recognition-section {
    padding: 100px 0;
    text-align: center;
    background: var(--navy);
    color: #fff;
}

.recognition-section h2 {
    color: var(--gold);
}

.recognition-section p {
    color: #bbb;
}

.club-card {
    border: 2px solid var(--gold);
    padding: 30px;
    margin-top: 30px;
    transition: 0.3s;
}

.club-card:hover {
    background: rgba(197, 160, 89, 0.1);
}

.club-card h4 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.btn-gold {
    background-color: var(--gold);
    color: #fff;
    padding: 15px 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    margin-top: 40px;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
}
