.hero {
    width: 100%;
    background: linear-gradient(to bottom, transparent, #000);
    position: relative;
}
.hero::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,0.75) 0%,
            rgba(0,0,0,0.35) 35%,
            transparent 70%
        );

    z-index:1;
}
.hero::after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #000);
    pointer-events: none;
}

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

    .hero-container .cadran {
        position: absolute;
        top: -15vw;
        left: -10%;
        width: 50vw;
        opacity: 0.3;
        z-index: 2;
    }

    .hero-container .logo {
        position: absolute;
        top: 3vw;
        left: 5vw;
        width: 25vw;
        z-index: 2;
        opacity: 0.8;
    }

#trailer{
    width:100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    margin:0 auto;
    position: relative;
}

#toggleSound{
    top: 2vw;;
    right:2vw;
    position: absolute;
    z-index: 5;
    background: none;
    border:none;
    zoom: 2;
    filter: brightness(0) saturate(100%) invert(31%) sepia(89%) saturate(3882%) hue-rotate(354deg) brightness(96%) contrast(82%);
    opacity: 0.5;
}

.hero2{
    padding: 0 25px;
    z-index: 5;
    position: absolute;
    bottom: 20vw;
}
.hero2-container {
    margin-left: 5vw;
}
.hero2-container p {
        font-size: 1.5vw;
        line-height: 1.7;
        letter-spacing: 2px;
        color: #d7d2cb;
        line-height: 1.9;
        letter-spacing: 1.5px;
        margin-bottom: 2vw;
        /*width: 52%;*/
        
    }

.btn-booking {
    display: block;
    text-align : center;
    padding: 18px 42px;
    border: 1px solid #E14323;
    border-radius: 10px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    background: #E14323;
    box-shadow: 0 0 25px rgba(255,80,30,0.25);
    z-index: 5; 
    position: relative;
    width: 250px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

    .btn-booking:hover {
        background: rgba(255,255,255,0.03);
        transform: translateY(-2px);
        box-shadow: 0 0 40px rgba(255,80,30,0.45);
    }
.btn-booking-2{
    display:none;
}

.rotation {
  width: 150px;
  animation: tourner 20s linear infinite;
}

@keyframes tourner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1200px) {
    .hero2{
        position: static;
        bottom: 0;
    }
    .hero2-container {
        margin-left: 0;
    }

    .hero2-container p {
        /*display:none;*/
        width: 100%;
        font-size: 3vw;
        margin-top: -110px;
        z-index: 5;
        position: relative;
        opacity: 0.8;
        padding-bottom: 10px;
    }

    .btn-booking {
        width: 100%;
    }
}