.custom-hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Prend toute la hauteur de la fenêtre */
    overflow: hidden;
}

.custom-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.custom-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.custom-hero-text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
    width: 90%;
}

.custom-hero-container {
    max-width: 1000px;
    margin: 0 auto;
}

.custom-hero-title {
    font-size: 12rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 10px;
}

.custom-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive pour petits écrans */
@media (max-width: 768px) {
    .custom-hero-title {
        font-size: 2.5rem;
    }

    .custom-hero-subtitle {
        font-size: 1.2rem;
    }
}