/**
 * Styles pour la page de détail d'un club
 *
 * @package FFBoxing_Club_Finder
 */

/* Container principal */
.ffboxing-club-detail {
    padding: 20px 0;
}

/* Bouton de retour */
.club-header-actions .btn-outline-secondary {
    border-color: #004185;
    color: #004185;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.club-header-actions .btn-outline-secondary:hover {
    background-color: #004185;
    border-color: #004185;
    color: white;
    transform: translateX(-5px);
}

.club-header-actions .btn-outline-secondary i {
    transition: transform 0.3s ease;
}

.club-header-actions .btn-outline-secondary:hover i {
    transform: translateX(-3px);
}

/* En-tête du club */
.club-header {
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Logo FFBoxe */
.club-header-logo {
    flex-shrink: 0;
}

.ffboxe-logo {
    width: 120px;
    height: auto;
    display: block;
}

/* Contenu de l'en-tête */
.club-header-content {
    min-width: 0; /* Permet au flex item de se réduire si nécessaire */
}

/* Actions de l'en-tête (bouton retour) */
.club-header-actions {
    flex-shrink: 0;
    align-self: center;
}

.club-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.club-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.ffb-bg {
    background-color: #004185 !important;
}

/* Cartes d'informations */
.club-info-detail {
    padding: 10px 0;
}

.info-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    display: block;
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
}

.info-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.info-item a {
    color: #004185;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #e30952;
}

/* Carte de localisation */
#ffboxing-detail-map {
    border-radius: 0 0 15px 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .ffboxe-logo {
        width: 100px;
    }
    
    .club-title {
        font-size: 1.5rem;
    }
    
    .club-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .ffboxing-club-detail {
        padding: 10px 0;
    }
    
    .club-header {
        padding: 15px;
    }
    
    /* Empiler le logo au-dessus sur mobile */
    .club-header .d-flex {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }
    
    .club-header-logo {
        margin-bottom: 15px;
    }
    
    .ffboxe-logo {
        width: 80px;
    }
    
    /* Bouton retour en dessous sur mobile */
    .club-header-actions {
        margin-top: 15px;
        width: 100%;
    }
    
    .club-header-actions .btn {
        width: 100%;
    }
    
    .club-title {
        font-size: 1.3rem;
    }
}
