/**
 * Stats Card Styles
 *
 * Styles for statistics cards and grid layout.
 */

/* Stats Grid Layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Individual Stat Item */
.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

/* Stat Number */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

/* Stat Label */
.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-dark);
    opacity: 0.9;
}

/* Dark Section Support - White text on black background */
.black-section .stat-number {
    color: var(--white);
}

.black-section .stat-label {
    color: var(--white);
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3rem;
    }
}
