/* ============================
   ABOUT PAGE — about.css
   ============================ */

section { padding: 80px 20px; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #F21414;
    background: rgba(242,20,20,0.08);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.22;
    display: inline-block;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: linear-gradient(135deg, #F21414, #D89A1D);
    border-radius: 10px;
    margin: 12px auto 0;
}

.section-sub {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 44px;
}

/* HERO */
.about-hero {
    min-height: 62vh;
    background: url('../images/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20,4,4,0.60) 0%, rgba(0,0,0,0.72) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 720px;
}

.about-hero-badge {
    display: inline-block;
    background: rgba(216,154,29,0.92);
    color: #1a0a00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.about-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.14;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.30);
}

.about-hero p {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.90);
    margin: 0;
}

/* ABOUT INTRO */
.about-intro { background: #fff; }

.about-intro .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-intro-text {
    max-width: 840px;
    width: 100%;
}

.about-intro-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 16px;
    text-align: center;
}

.about-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1a8a3a;
    background: #e6f7ec;
    padding: 8px 18px;
    border-radius: 24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a8a3a;
    display: inline-block;
    animation: pulse-green 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.about-intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 38px;
    width: 100%;
    max-width: 840px;
}

.stat-card {
    background: #FFF9F0;
    border: 1.5px solid #f5d9b2;
    border-radius: 18px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(242,20,20,0.12);
    border-color: #F21414;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: #F21414;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: #777;
    font-weight: 600;
}

/* MISSION */
.mission { background: #FFF9F0; }

.mission .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    width: 100%;
}

.mission-card {
    background: white;
    padding: 34px 26px;
    border-radius: 20px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.06);
    border: 1.5px solid #f0f0f0;
    transition: all 0.32s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F21414, #D89A1D);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.32s ease;
}

.mission-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 44px rgba(242,20,20,0.12);
    border-color: #ffd0d0;
}

.mission-card:hover::before { transform: scaleX(1); }

.mission-icon { font-size: 40px; margin-bottom: 16px; line-height: 1; }

.mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.mission-card p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

/* METRICS */
.metrics { background: #fff; }

.metrics .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100%;
    max-width: 880px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 48px rgba(0,0,0,0.09);
    border: 1.5px solid #f0e0e0;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    background: #fff;
    border-bottom: 1px solid #f5e8e8;
    border-right: 1px solid #f5e8e8;
    transition: background 0.2s;
    text-align: left;
}

.metric-item:nth-child(even) { border-right: none; }
.metric-item:nth-last-child(-n+2) { border-bottom: none; }
.metric-item:hover { background: #FFF9F0; }

.metric-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: rgba(242,20,20,0.07);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-info { flex: 1; min-width: 0; }

.metric-label {
    font-size: 11px;
    color: #aaa;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.metric-value {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    word-break: break-word;
}

.metric-value.mono {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #333;
    letter-spacing: 0.3px;
}

.active-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a8a3a;
    font-weight: 700;
}

.active-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a8a3a;
    display: inline-block;
    animation: pulse-green 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

/* DIRECTORS */
.directors { background: #FFF9F0; }

.directors .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    width: 100%;
}

.director-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.07);
    border: 1.5px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
}

.director-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(242,20,20,0.12);
    border-color: #ffd0d0;
}

.director-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F21414, #D89A1D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(242,20,20,0.25);
}

.director-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.director-role {
    font-size: 13px;
    font-weight: 700;
    color: #F21414;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.director-since {
    font-size: 12.5px;
    color: #999;
}

/* ADDRESS */
.address-section { background: #fff; }

.address-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    width: 100%;
}

.address-card {
    background: #FFF9F0;
    border-radius: 20px;
    padding: 34px 26px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    border: 1.5px solid #f5d9b2;
    transition: all 0.3s ease;
    text-align: center;
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(242,20,20,0.12);
    border-color: #F21414;
}

.address-card-icon { font-size: 38px; margin-bottom: 16px; line-height: 1; }

.address-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.address-card p { font-size: 15px; line-height: 1.8; color: #555; margin: 0; }

.address-card a { color: #F21414; font-weight: 700; text-decoration: none; font-size: 18px; }
.address-card a:hover { text-decoration: underline; }

/* DONATION CTA */
.donation {
    background: linear-gradient(135deg, #1a0505, #3d0f0f);
    position: relative;
    overflow: hidden;
}

.donation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') center/cover no-repeat;
    opacity: 0.07;
}

.donation .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donation h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    line-height: 1.28;
}

.donation p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    line-height: 1.85;
    margin-bottom: 6px;
}

.btn-donate-big {
    display: inline-block;
    margin-top: 28px;
    padding: 16px 44px;
    background: linear-gradient(135deg, #F21414, #C90E0E);
    color: white;
    border-radius: 32px;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(242,20,20,0.42);
    transition: all 0.3s ease;
}

.btn-donate-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(242,20,20,0.55);
}

/* CONTACT STRIP */
.contact-strip {
    background: linear-gradient(135deg, #D89A1D, #F2C14E);
    text-align: center;
    padding: 18px 20px;
}

.contact-strip p {
    margin: 0;
    font-size: 16.5px;
    font-weight: 700;
    color: #1a0a00;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 960px) {
    .mission-grid { grid-template-columns: 1fr 1fr; }
    .address-grid { grid-template-columns: 1fr 1fr; }
    .address-grid .address-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .about-hero { min-height: auto; padding: 100px 20px 70px; }
    .about-hero h1 { font-size: 32px; }
    .about-hero p { font-size: 16px; }
    .section-heading { font-size: 28px; }
    .about-intro-stats { grid-template-columns: repeat(2, 1fr); }
    .mission-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: 1fr; border-radius: 18px; }
    .metric-item { border-right: none !important; padding: 16px 20px; }
    .metric-item:nth-last-child(-n+2) { border-bottom: 1px solid #f5e8e8; }
    .metric-item:last-child { border-bottom: none !important; }
    .directors-grid { grid-template-columns: 1fr; max-width: 340px; }
    .address-grid { grid-template-columns: 1fr; }
    .address-grid .address-card:last-child { grid-column: auto; }
    .donation h2 { font-size: 28px; }
    .donation p { font-size: 15px; }
    section { padding: 60px 20px; }
}
