/* ====================================
   HEADER / HERO AVEC CARROUSEL
   ==================================== */

.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.header-content {
    flex: 1;
    text-align: left;
}

.header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 300;
}

.subtitle {
    font-size: 1.3rem;
    color: #d4af37;
    font-weight: 300;
    line-height: 1.6;
}

/* ====================================
   CARROUSEL
   ==================================== */

.header-carousel-container {
    flex: 1;
    position: relative;
    width: 100%;
}

.carousel {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2d2d 0%, #3a3a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    font-style: italic;
}

.carousel-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    position: absolute;  /* ← Forcer le positionnement */
    top: 0;
    left: 0;
}

.carousel-dots {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(212, 175, 55, 0.8);
}

@media (max-width: 968px) {
    .carousel-dots {
        bottom: 15px;
    }
    
    .header-carousel-container {
        padding-bottom: 0;
    }
}

.header-logo {
    width: 220px;
    height: auto;
    margin-bottom: 20px;
    margin-right: auto;
    margin-left: auto;
}