﻿/* =============================================================================
   FIX POUR HERO STATS GRID-3
   Ajoute l'alias manquant pour hero-stats-grid-3
   ============================================================================= */

/* Alias pour hero-stats-grid-3 (identique à hero-stats-grid) */
.hero-stats-grid-3 {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(3, 1fr);
}

/* Responsive */
@media (min-width: 992px) {
    .hero-stats-grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
}

@media (max-width: 991px) {
    .hero-stats-grid-3 {
        margin-top: 1.5rem;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }
}

@media (max-width: 767px) {
    .hero-stats-grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
}

/* =============================================================================
   HERO SECTION - LAYOUT CENTRÉ
   ============================================================================= */

.hero-logo-top {
    max-height: 290px;
    max-width: 340px;
    object-fit: contain;
    margin-bottom: 0rem;
}

.hero-icon-top {
    font-size: 5rem;
    color: var(--text-on-dark);
    margin-bottom: 1rem;
}

.hero-title-centered {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    color: rgb(255, 255, 255);
}

/* Hero Buttons Wrapper */
.hero-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.hero-btn {
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Responsive pour Hero */
@media (max-width: 768px) {
    .hero-logo-top {
        max-height: 120px;
        max-width: 290px;
    }

    .hero-icon-top {
        font-size: 4rem;
    }

    .hero-title-centered {
        font-size: 2.5rem;
    }
    
    .hero-buttons-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .hero-btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-logo-top {
        max-height: 200px;
        max-width: 300px;
    }

    .hero-icon-top {
        font-size: 3.5rem;
    }

    .hero-title-centered {
        font-size: 2rem;
    }
    
    .hero-btn {
        font-size: 0.9rem;
        padding: 0.65rem 1.25rem;
    }
    
    .hero-btn i {
        font-size: 0.85rem;
    }
}

/* =============================================================================
   PRO-STAFF CARD STYLING
   ============================================================================= */

.pro-staff-card {
    border: 2px solid #ffc107;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 193, 7, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.pro-staff-card::before {
    content: '⭐';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.pro-staff-card .tournament-card-body {
    position: relative;
    z-index: 1;
}

.pro-staff-card h2 {
    color: #f0ad4e;
}

.pro-staff-card h2 i {
    color: #ffc107;
}

.pro-staff-stat-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 193, 7, 0.1) 100%);
    border: 2px solid #ffc107;
}

.pro-staff-stat-card .stat-icon i {
    color: #ffc107;
}

.pro-staff-stat-card h3 {
    color: #f0ad4e;
}
