body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

header {
    background-color: #343a40;
    color: white;
}

.carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
}


#videos .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

#videos .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#videos .card-img-top {
    height: 200px;
    object-fit: cover;
}

#videos .card-body {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
}

/* Section Contact & Booking */
#contact .card {
    transition: transform 0.3s;
    border: none;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

#contact .card:hover {
    transform: translateY(-5px);
}

#contact a {
    text-decoration: none;
    color: #343a40;
}

#contact .fa-envelope, 
#contact .fa-phone {
    color: #343a40;
}

.social-links a {
    transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #6c757d !important;
}


footer {
    background-color: #343a40;
    color: white;
}

/* Animations de défilement */
[data-aos] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Style pour la biographie */
.bio-text {
    background: rgba(255, 255, 255, 0.95);
    border-left: 4px solid #343a40;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bio-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.bio-text .lead {
    font-weight: 500;
    color: #000;
}

.btn-link small {
    color: #6c757d;
    text-decoration: none;
}

.btn-link:hover small {
    color: #343a40;
}

.bio-active {
    background: #f8f9fa !important;
    border-left-color: #6c757d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.social-links a {
    transition: transform 0.3s, color 0.3s !important;
}

.social-links a:hover {
    transform: scale(1.2) !important;
}


@media (max-width: 768px) {
    #carouselExample {
        margin-bottom: 1rem !important;
    }
    
    #biographie {
        margin-top: 1.5rem !important;
    }
    
    .carousel-item {
        height: 300px !important; /* Réduit la hauteur du carrousel sur mobile */
    }
    
    .bio-text {
        padding: 1rem !important;
        margin-top: 1rem;
    }
}