.hero{
    margin: 0;
}

.hero-bg{
    background: url('../resources/images/SB_15-08-2023_0160.jpg') no-repeat center center ;
    background-size: cover;
    width: 100%;
    height: 92vh;
    opacity: 1;
}

.hero-content{
    width: 100%;
    height: 100%;
    padding-top: 5vh;
    z-index: 99;
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.slogan{
    color: var(--secondary-text-color);
    background-color: var(--primary-color);
    border: solid color-mix(in hsl, var(--primary-color), #ffffff 50%) 2px;
    font-family: "Raleway, sans-serif";
    font-weight: 400;
    border-radius: 20px;
    padding: 0 50px;
    z-index: 99;
    font-size: calc(3vw + 3rem);
    margin-bottom: 40vh;
    width: auto;
}

.booking-buttons{
    height: 100px;
    display: flex;
    gap: 2rem;
}

.booking{
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    display: flex;
    border-radius: 10px;
    border: solid whitesmoke 5px;
    height: 100%;
    width: 300px;
}

.booking a{
    color: var(--secondary-text-color);
    text-decoration: none;
    font-size: 1.2rem;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
}

.booking:hover{
    background: whitesmoke;
    border-color: var(--primary-color);

    & a{
        color: var(--primary-color);
    }
}

.scroll-down{
    font-size: 2rem;
    background-color: var(--primary-color);
    color:whitesmoke;
    border-radius: 50%;
    width: auto;
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 250px;
    animation: bob infinite 2s ;
    border: solid whitesmoke 2px;
    position: absolute;
    bottom: 200px

}

.booking a i{
    margin-right: 0;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 767px){

    .hero{
        height: 90svh;
    }

    .hero-bg{
        background-size: cover;
        height:90svh;
    }

    .hero-content{
        position: absolute;
        width: 85%;
        height: 100svh;
        padding-top: 10svh;
    }

    .slogan{
        font-size: 2rem;
        padding: 0 60px !important;
        margin-bottom: 225px;
    }

    .booking-buttons{
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }

    .booking{
        width: 250px;
        height: 60px;
        border: solid whitesmoke 2px;

        & a{
            font-size: 1rem;
        }
    } 

    .scroll-down{
        display: none;
        animation: bob-phone infinite 2s ;
    }

}

@media only screen and (min-device-width: 320px) and (max-device-width: 820px) and (orientation: landscape){
    
    .hero-content{
        padding:2rem;
    }
    
    .slogan{ 
        font-size: 2rem;
    }

    .booking{
        width: 250px;
        height: 50px;
        & a{
            font-size: 1rem;
        }
    }
}

@media (min-width: 767px) and (max-width:1920px){
    .hero-bg{
        height: 89vh;
    }
  }

@keyframes bob {
    0%{    bottom: 200px
    }
    50% {    bottom: 210px
    }
    100%{    bottom: 200px
    }
}

@keyframes bob-phone {
    0%{    bottom: 150px
    }
    50% {    bottom: 160px
    }
    100%{    bottom: 150px
    }
}