.hero-section{
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/mamma-mia-hero-image.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}


.hero-section-main-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    height: 100%;
}

.hero-title-text{
    display: inline;
    font-size: 104px;
    line-height: 116px;
    font-weight: var(--bold);
    color: var(--white);
    text-align: center;
}

.hero-title-span{
    color: var(--primary);
    display: inline-block;
    font-family: 'Pacifico', cursive;
}

.hero-secondary-title{
    font-size: 24px;
    line-height: 32px;
    color: var(--neutral-01);
    font-weight: var(--semiBold);
    text-align: center;
    
}

.btn.hero {
    position: relative;
    text-transform: uppercase;
    max-width: max-content;
    border: 2px solid var(--primary);
    background: var(--primary);
    color: var(--white);
    padding: 20px 48px;
    overflow: hidden;
    z-index: 1;
    margin-top: 24px;
}


.btn.hero::before {
    background-color: #fc2020;
}


.basil-hero-section{
    position: absolute;
    width: 500px;
    height: auto;
    left: -224px;
    bottom: -224px;
}


.container.menu.index{
    width: 100%;
    height: auto;
    padding: 128px 16px 64px 16px;
}


@media(max-width: 1200px) {
    .hero-title-text{
        display: inline;
        font-size: 80px;
        line-height: 88px;

    }

    .hero-secondary-title{
        font-size: 22px;
        line-height: 30px;

    }
}

@media(max-width: 900px) {
    .hero-title-text{
        display: inline;
        font-size: 64px;
        line-height: 72px;

    }

    .hero-secondary-title{
        font-size: 20px;
        line-height: 28px;

    }
}


@media(max-width: 650px) {

    .hero-section{
padding: 0 20px;
    }
    
    
    .hero-title-text{
        display: inline;
        font-size: 48px;
        line-height: 56px;

    }

    .hero-secondary-title{
        font-size: 16px;
        line-height: 24px;

    }

    .basil-hero-section{
        position: absolute;
        width: 320px;
        height: auto;
        left: -124px;
        bottom: -164px;
    }

}


@media(max-width: 500px) {

    .hero-section{
        padding: 0 16px;
    }


    .hero-title-text{
        display: inline;
        font-size: 32px;
        line-height: 40px;

    }

    .hero-secondary-title{
        font-size: 16px;
        line-height: 24px;

    }

    .hero-section-main-container {

        gap: 16px;
    }

    .btn.hero {
        position: relative;
        text-transform: uppercase;
        max-width: max-content;
        border: 2px solid var(--primary);
        background: var(--primary);
        color: var(--white);
        padding: 16px 24px;
        overflow: hidden;
        z-index: 1;
        margin-top: 24px;
    }

}