/* Styles pour le carrousel d'accueil */

.carrousel-accueil {
    position: relative;
    width: 100vw;
    overflow: hidden;
}

.carrousel-container {
    position: relative;
    width: 100%;
}

.carrousel-slide {
    position: relative;
    width: 100%;
}

.carrousel-image {
    position: relative;
    height: 100vh;
    max-height: 700px;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.carrousel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.carrousel-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    padding: 20px;
    max-width: 800px;
    margin-left: 10%;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.carrousel-titre {
    font-family: 'Dosis', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}

.carrousel-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: left;
}

.carrousel-lien-wrapper {
    margin-top: 15px;
    text-align: left;
}

.carrousel-lien {
    display: inline-block;
    background-color: #FC7304;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    padding: 12px 24px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.carrousel-lien:hover {
    background-color: #e56700;
}

/* Navigation du carrousel */
.carrousel-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

/* Style pour les points de navigation Slick */
.slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    bottom: 25px !important;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: rgba(43, 109, 177, 0.5);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.slick-dots li.slick-active button {
    background: #2B6DB1;
}

.slick-dots li button:before {
    font-size: 13px !important;
    color: #2B6DB1 !important;
    opacity: 0.5 !important;
}

/* Version mobile */
@media (max-width: 768px) {
    .carrousel-image {
        height: 500px;
    }
    
    .carrousel-content {
        margin-left: 5%;
    }
    
    .carrousel-titre {
        font-size: 28px;
    }
    
    .carrousel-description {
        font-size: 14px;
    }
    
    .carrousel-nav {
        bottom: 15px;
    }
} 