/* Expandable Content Styles */
.expandable-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    overflow: hidden;
}

.expand-btn {
    transition: all 0.3s ease;
}

.expand-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.expand-btn.expanded {
    background-color: #D1362B !important;
    color: white !important;
}

/* Styles personnalisés pour le site */

/* Animations de défilement pour les sponsors */
@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.animate-scroll-right {
    animation: scroll-right 30s linear infinite;
}

.animate-scroll-left {
    animation: scroll-left 30s linear infinite;
}

/* Animation pour le contenu qui s'expand */
.expandable-content.expanding {
    animation: slideDown 0.3s ease-out;
}

.expandable-content.collapsing {
    animation: slideUp 0.3s ease-in;
}

@keyframes slideDown {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 500px;
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        max-height: 500px;
        opacity: 1;
    }
    to {
        max-height: 0;
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .expandable-content {
        font-size: 0.875rem;
    }
}