 /* Styles globaux */
 body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Styles pour la section des options */
.option-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.option-card img {
    transition: all 0.5s ease;
}

.option-card:hover img {
    transform: scale(1.05);
}

.option-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px;
    color: white;
    transition: all 0.3s ease;
}

.option-card:hover .card-overlay {
    padding-bottom: 40px;
}

.option-card .card-overlay h3 {
    position: relative;
}

.option-card .card-overlay h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #EAB308; /* yellow-500 */
    transition: width 0.3s ease;
}

.option-card:hover .card-overlay h3:after {
    width: 80px;
}

/* Animation pour le contenu détaillé */
.content-section {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    margin-top: 0;
}

.content-section.active {
    max-height: 1000px;
    opacity: 1;
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: linear-gradient(to bottom right, #ffffff, #f9fafb);
    border-left: 4px solid #EAB308;
}

/* Styles pour les onglets dans le contenu détaillé */
.option-tabs {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 25px;
}

.option-tab {
    padding: 12px 24px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.option-tab.active {
    color: #EAB308;
}

.option-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #EAB308;
    transition: width 0.3s ease;
}

.option-tab.active::after {
    width: 100%;
}

/* Styles pour les médias dans le contenu détaillé */
.media-content {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.media-content img, .media-content video {
    transition: transform 0.5s ease;
}

.media-content:hover img, .media-content:hover video {
    transform: scale(1.02);
}

/* Styles pour les détails */
.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.detail-item i {
    color: #EAB308;
    margin-right: 15px;
    font-size: 18px;
}

/* Animation pour le titre */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-title {
    animation: fadeInUp 0.6s ease forwards;
}

/* Bouton retour en haut */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #EAB308;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #D97706; /* yellow-600 */
    transform: translateY(-5px);
}

/* Styles pour les CTA */
.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(to right, #EAB308, #D97706);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(234, 179, 8, 0.4);
}

/* Dropdown adjustments */
.dropdown.show .dropdown-menu {
    display: block;
}