/* Styles pour la section informations du club */

.club-info-content {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color, #007bff);
    height: 100%;
}

.club-info-content h3 {
    color: var(--primary-color, #007bff);
    font-weight: 600;
}

.club-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
}

.club-description p {
    margin-bottom: 1rem;
}

.opening-hours {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.club-contact-info {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item h5 {
    color: var(--primary-color, #007bff);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-details {
    color: #495057;
    line-height: 1.6;
}

.contact-details div {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary-color, #007bff);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-links {
    flex-wrap: wrap;
}

.social-links .btn {
    border-radius: 20px;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    transition: all 0.3s ease;
}

.social-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .club-info-content,
    .club-contact-info {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .social-links .btn {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .club-info-content,
    .club-contact-info {
        padding: 1rem;
    }
}

/* Animation pour l'apparition des éléments */
.club-info-content,
.club-contact-info {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.club-contact-info {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Amélioration des icônes */
.contact-item i.fas,
.contact-item i.fab {
    width: 20px;
    text-align: center;
}

.contact-details i.fas {
    color: var(--primary-color, #007bff);
    opacity: 0.8;
}

/* Style pour les horaires d'ouverture */
.opening-hours ul {
    margin: 0;
    padding-left: 1.2rem;
}

.opening-hours li {
    margin-bottom: 0.25rem;
}

.opening-hours strong {
    color: var(--primary-color, #007bff);
}