/* Module Showroom Luxury - Styles CSS */   

.showroom-luxury-hero {
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: -100px 0 0 0;
}

.showroom-luxury-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.3;
}

.showroom-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.showroom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 100vh;
    padding: 60px 0 0 60px;
    position: relative;
}

.showroom-text {
    color: white;
    position: relative;
    z-index: 3;
    padding-right: 20vw;
}

.showroom-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.85;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-style: italic;
    transform: translateX(-0.5vw);
}

.showroom-subtitle {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 0.85;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-style: italic;
    transform: translateX(-0.5vw);
}

.showroom-description {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.5;
    margin: 0 0 50px 0;
    color: rgba(255, 255, 255, 0.7);
    max-width: 25vw;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.showroom-button {
    display: inline-block;
    padding: clamp(12px, 2vw, 15px) clamp(25px, 4vw, 35px);
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    border-radius: 30px;
}

.showroom-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.showroom-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
}

.showroom-button:hover::before {
    left: 100%;
}

.showroom-car {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 1;
    transform: translateY(-50%);
}

.car-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6));
    transform: translateY(-20vh);
    margin-left: 25vw;
    transition: transform 0.4s ease;
}


.car-placeholder {
    width: 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.car-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
}


@media (max-width: 1200px) {
    .showroom-content {
        gap: 0;
    }
    
    .showroom-text {
        padding-right: 15vw;
    }
    
    .car-image {
        max-width: 50vw;
        max-height: 45vh;
        margin-left: 30vw;
        transform: translateY(-20vh);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .showroom-content {
        gap: 0;
    }
    
    .showroom-text {
        padding-right: 15vw;
    }
    
    .car-image {
        max-width: 50vw;
        max-height: 45vh;
        margin-left: 12vw;
        transform: translateY(-12vh);
    }
}

@media (max-width: 768px) {
    .showroom-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 0;
    }
    
    .showroom-text {
        padding-right: 0;
        z-index: 3;
    }
    
    .showroom-title {
        transform: translateX(0);
    }
    
    .showroom-subtitle {
        transform: translateX(0);
    }
    
    .showroom-description {
        max-width: 100%;
    }
    
    .showroom-car {
        position: relative;
        transform: none;
        justify-content: center;
    }
    
    .car-image {
        max-width: 80vw;
        max-height: 40vh;
        margin-left: 0;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .car-image {
        max-width: 90vw;
        max-height: 35vh;
    }
}

/* Animation d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showroom-text {
    animation: fadeInUp 1s ease-out;
}

.showroom-car {
    animation: fadeInUp 1s ease-out 0.3s both;
}
