/* ===== Wall of Fame Styles ===== */

/* Intro paragraph spacing */
.wof-intro {
    max-width: 820px;
    margin: 0 auto 40px;
}

/* ===== Tabs ===== */
.wof-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.wof-tab {
    background: #fff;
    border: 2px solid #f7941d;
    color: #f7941d;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wof-tab i {
    font-size: 18px;
}

.wof-tab:hover {
    background: #fff5e6;
    transform: translateY(-2px);
}

.wof-tab.active {
    background: #f7941d;
    color: #fff;
    box-shadow: 0 6px 18px rgba(247, 148, 29, 0.35);
}

.wof-tab .count-badge {
    background: rgba(255, 255, 255, 0.3);
    color: inherit;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.wof-tab:not(.active) .count-badge {
    background: #fff5e6;
    color: #f7941d;
}

/* Tab panels */
.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.empty-state i {
    font-size: 48px;
    color: #f7941d;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* ===== Podium (Top 3) ===== */
.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.podium-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 28px 22px 26px;
    text-align: center;
    width: 260px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 6px solid #f7941d;
}

.podium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.podium-card.rank-1 {
    border-top-color: #FFD24A;
    transform: translateY(-20px);
    width: 280px;
    padding-top: 36px;
}

.podium-card.rank-1:hover {
    transform: translateY(-26px);
}

.podium-card.rank-2 {
    border-top-color: #C0C0C0;
}

.podium-card.rank-3 {
    border-top-color: #CD7F32;
}

.rank-medal {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rank-1 .rank-medal {
    background: linear-gradient(135deg, #FFD24A, #F2A900);
}

.rank-2 .rank-medal {
    background: linear-gradient(135deg, #E0E0E0, #A8A8A8);
}

.rank-3 .rank-medal {
    background: linear-gradient(135deg, #E2A37A, #B5651D);
}

.donor-avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f7941d;
    margin-bottom: 14px;
    background: #fff5e6;
}

.rank-1 .donor-avatar {
    border-color: #F2A900;
    width: 100px;
    height: 100px;
}

.donor-name {
    font-weight: 700;
    font-size: 18px;
    color: #2b2b2b;
    margin-bottom: 4px;
}

.donor-type {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.donor-amount {
    display: inline-block;
    background: #fff5e6;
    color: #f7941d;
    font-weight: 800;
    font-size: 20px;
    padding: 8px 18px;
    border-radius: 30px;
}

/* ===== Honour Roll Table ===== */
.honour-roll {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 50px;
}

.honour-roll-header {
    background: linear-gradient(135deg, #f7941d, #ffae42);
    color: #fff;
    padding: 18px 24px;
}

.honour-roll-header h3 {
    margin: 0;
    font-weight: 700;
    font-size: 22px;
}

.donor-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.2s ease;
}

.donor-row:last-child {
    border-bottom: none;
}

.donor-row:hover {
    background: #fffaf2;
}

.donor-rank {
    font-size: 22px;
    font-weight: 800;
    color: #f7941d;
    text-align: center;
}

.donor-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.donor-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff5e6;
    border: 2px solid #f7941d;
}

.donor-info .name {
    font-weight: 700;
    color: #2b2b2b;
    font-size: 16px;
    margin: 0;
}

.donor-info .type {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donor-row .amount {
    font-weight: 800;
    color: #f7941d;
    font-size: 17px;
    white-space: nowrap;
}

/* ===== Donate CTA ===== */
.donate-cta {
    background: linear-gradient(135deg, #fff5e6, #ffe4c4);
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    margin-top: 20px;
}

.donate-cta h3 {
    color: #2b2b2b;
    font-weight: 700;
    margin-bottom: 12px;
}

.donate-cta p {
    color: #555;
    max-width: 620px;
    margin: 0 auto 22px;
}

.btn-donate {
    background: #f7941d;
    color: #fff;
    font-weight: 700;
    padding: 12px 36px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-donate:hover {
    background: #e07e0a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(247, 148, 29, 0.35);
}

/* ===== Mobile tweaks ===== */
@media (max-width: 576px) {
    .wof-tab {
        padding: 10px 20px;
        font-size: 13px;
    }
    .podium-card,
    .podium-card.rank-1 {
        width: 100%;
        max-width: 320px;
        transform: none;
    }
    .podium-card.rank-1:hover {
        transform: translateY(-6px);
    }
    .donor-row {
        grid-template-columns: 40px 1fr auto;
        gap: 10px;
        padding: 14px 16px;
    }
    .donor-info img {
        width: 40px;
        height: 40px;
    }
    .donor-info .name {
        font-size: 14px;
    }
    .donor-row .amount {
        font-size: 15px;
    }
    .honour-roll-header {
        padding: 14px 16px;
    }
}
