:root{
    --color-primary: #c4524c;
    --color-secondary: #e0a43b;
    --color-link: #0d57a0;
}

body, html{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #d9d5d5;
    line-height: 1.7;
    overflow-x: hidden;
}

@font-face {
    font-family: Trento;
    src: url(../fonts/trento-typeface.otf);
    font-display: swap;
}

@font-face {
    font-family: Calittra;
    src: url(../fonts/calittra.otf);
    font-display: swap;
}

p{
    font-weight: 300;
}

strong{
    font-weight: 800;
}

h1, h2{
    color: white;
}

span{
    font-size: 2.2rem;
    font-family: 'Calittra', sans-serif;
    color: var(--color-primary);
    text-align: center;
}

h3{
    font-size: 1rem;
    color: var(--color-primary);
}

iframe{
    width: 100%;
    min-height: 450px;
    z-index: 99999;
}


/* NAVBAR */
.navbar{
    max-height: max-content;
    background-color: black;
}

.navbar-toggler{
    outline: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.bar{ 
    height: 4px;
    width: 30px;
    background: white;
    border-radius: 5px;
    margin: 6px auto;
    display: block;
}

.navbar-toggler-icon{
    color: white !important;
}

.nav-scrolled{
    background-color: rgb(19, 19, 19);
    max-height: 50rem;
}

.circle-icon-bg{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 40px;
    height: 40px;

    color: white;
    padding: 15px;
    background-color: var(--color-link);
    border-radius: 50% !important;
    text-decoration: none !important;

    transition: .4s ease;
}

.circle-icon-bg:hover{
    color: var(--color-link);
    background-color: white;
}

.nav-item{
    padding: 0 0.3rem !important;
}

.nav-link{
    color: white !important;
    font-size: 0.9rem !important;
    transition: .4s ease;
}

.nav-link:hover{
    color: var(--color-secondary) !important;
}

/* BANNER */

.banner{ 
    position: relative;
    min-height: 100vh;

    background-image: url("../img/sections/slider-teste.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.banner::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;

    z-index: -2;
    background-color: rgba(0, 0, 0, 0.434);  
}

.banner span{
    font-size: 2.5rem;
}
.banner h1{
    font-size: 25px !important;
    font-family: 'Trento', sans-serif;
    line-height: 4;
}

.banner .banner__title{
    font-family: 'Trento', sans-serif;
    font-size: 15px;
    color: white;
}

.modal-btn{
    background-color: transparent !important;
    border: 1px solid var(--color-secondary);
    outline: none !important;
    font-size: 0.9rem;
    padding: 0.5rem 2rem;

    transition: .4s ease;
}

.modal-btn:hover{
    background-color: var(--color-secondary) !important;
    border: 1px solid var(--color-secondary);
}

/* ABOUT SECTION */
.about{
    position: relative;
    padding: 10rem 0 5rem 0;

    min-height: 700px;
    background-image: url("../img/sections/1-teste.jpg");
    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    z-index: 1;
}

.about::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;

    z-index: -2;
    background-color: rgba(0, 0, 0, 0.288);  
}

.about h1{
    font-size: 2.5rem;
}

/* SERVICES SECTION */
.services{
    padding: 10rem 0 5rem 0;

    background-color: black;
}

.services h3{
    color: var(--color-secondary) !important;
}

.services .services__text{
    font-weight: 500;
    font-size: 16px;
}


/* RESERVATION SECTION */
.reservation{
    padding: 10rem 0 8rem 0;
    position: relative;

    background-image: url("../img/sections/3-teste.jpg");
    
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;

}

.reservation::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;

    z-index: -2;
    background-color: rgba(0, 0, 0, 0.8);  
}

.reservation span{
    color: var(--color-secondary);
}


.reservation .btn{
    background-color: transparent !important;
    border: 1px solid var(--color-secondary);

    transition: .4s ease;
}

.reservation .btn:hover{
    background-color: var(--color-secondary) !important;
    border: 1px solid var(--color-secondary);
}

/* REVIEWS SECTION*/
.reviews{
    padding: 10rem 0 5rem 0;

    background-color: black;
}

.reviews i{
    color: var(--color-secondary);
}

/* GALLERY */
.grid-container{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    max-width: 950px;
}

.grid-item{
    position: relative;
}

.grid-item .grid-image{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.h-1{
    grid-row: span 1;
}

.h-2{
    grid-row: span 2;
}

.w-1{
    grid-column: span 1;
}

.w-2{
    grid-column: span 2;
}

/* MODAL */
.modal-image{
    width: 100%;
}

.btn-close{
    background-color: white !important;
}

.modal-header,
.modal-body,
.modal-content{
    background-color: transparent !important;
    border: none !important;
}

/* MENU SECTION */
.menu{
    padding: 8rem 0 5rem 0;

    position: relative;

    background-image: url("../img/sections/4-teste.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    z-index: 1;

}

.menu::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;

    z-index: -2;
    background-color: rgba(0, 0, 0, 0.288); 
}

.menu span{
    letter-spacing: 0;
}

.menu h3{
    color: white;
    font-size: 1.2rem;
}

.menu .btn{
    background-color: transparent !important;
    border: 1px solid var(--color-link);
    padding: 0.9rem !important;

    color: white !important;

    transition: .4s ease;
}

.menu .btn:hover{
    background-color: var(--color-link) !important;
    border: 1px solid var(--color-link);
    color: white;
}

/* HOUSE GALLERY SECTION */
.nostra-casa{
    background-color: black;
    padding-top: 5rem;
}

.grid-container-nc{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
}

.grid-item-nc{
    position: relative;
}

.grid-item-nc .grid-image-nc{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.h-1-nc{
    grid-row: span 1;
}

.h-2-nc{
    grid-row: span 2;
}

.w-1-nc{
    grid-column: span 1;
}

.w-2-nc{
    grid-column: span 2;
}

/* CONTACT SECTION */
#map{
    height: 400px;
    width: 100%;
}

#map p,
#map h1,
#map h2,
#map h3,
#map h4, 
#map h5{
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #0d57a0;
}

#map span{
    font-family: sans-serif;
    font-size: 0.8rem;
    color: #0d57a0; 
}

.contact{
    padding: 10rem 0 5rem 0;

    background-color: black;
}

.contact h3{
    text-transform: uppercase;
    color: var(--color-secondary);
}

.contact a{
    color: white;
    text-decoration: none;

    transition: .4s ease;
}

.contact a:hover{
    color: var(--color-link);
}


.contact .btn{
    background-color: var(--color-link) !important;
    border: 1px solid var(--color-link);
    padding: 0.9rem !important;

    color: white !important;
    border-radius: 10px;

    transition: .4s ease;
}

.contact .btn:hover{ 
    background-color: transparent !important;
}

form input, textarea{
    padding: 0.9rem;
    border: 1px solid #7b7a7a;
    border-radius: 10px;
    background-color: transparent;
    outline: none;
    color: white;
}

/* FOOTER SECTION */
.footer{
    padding: 5rem 0 0.1rem 0;

    background-color: black;
}

.footer p{
    font-size: 0.8rem;
}

.footer a{
    color: var(--color-link);
    text-decoration: none;

    transition: .4s ease;
}

.footer a:hover{
    color: white;
}

/* FLOAT BUTTONS */
.btn-whats{
    position:fixed;
    bottom:3%;
    right:10px;
    z-index:999;
    padding-bottom:10px
}

.pulse-button-whats{
    position:relative;
    width:auto;
    height:auto;
    border:none;
    border-radius:50px;
    box-shadow:0 0 0 0 rgba(122,237,148,.29);
    background:#79b22a;
    background-image:-webkit-linear-gradient(top,#79b22a,#79b22a);
    background-image:-moz-linear-gradient(top,#79b22a,#79b22a);
    background-image:-ms-linear-gradient(top,#79b22a,#79b22a);
    background-image:-o-linear-gradient(top,#79b22a,#79b22a);
    background-image:linear-gradient(to bottom,#79b22a,#79b22a);
    background-size:cover;
    background-repeat:no-repeat;
    cursor:pointer;
    padding-left:12px
}

.btn-ifood{
    position:fixed;
    bottom:3%;
    left:10px;
    padding-bottom:10px;
    
    z-index:999;
}

.pulse-button-ifood{
    position:relative;
    width:auto;
    height:auto;
    border:none;
    border-radius:50px;
    box-shadow:0 0 0 0 #ea1d2c4a;
    background:#ea1d2c;
    background-size:cover;
    background-repeat:no-repeat;
    cursor:pointer;
    padding-left:12px
}

@media screen and (max-width: 992px){
    span{
        line-height: 1.1;
    }

    h2{
        margin-top: 0.5rem;
    }

    iframe{
        width: 100%;
        min-height: 350px;
    }
    
    /* Navbar */
    .nav-img-md{
        width: 100px;
    }
    .navbar-nav{
        margin-top: 1rem;
    }

    .navbar-nav li{
        margin-top: 0.85rem;
        padding: 20px;
    }

    .navbar__icon-wrap{
        padding: 2rem 0 !important;
    }

    /* banner */
    .banner {
        background-position: right center;
    }

    /* ABOUT SECTION */
    .about{
        padding: 0 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about::after{
        background-color: rgba(0, 0, 0, 0.525);
    }

    .services{
        padding: 2.5rem 2rem;
    }

    .grid-container{
        grid-template-columns: repeat(2, 1fr);
        max-width: 550px;
    }

    .grid-container-nc{
        grid-template-columns: repeat(2, 1fr);

    }

    .h-2,
    .h-2-nc{
        grid-row: span 1;
    }
    
    .w-2,
    .w-2-nc{
        grid-column: span 2;
    }

    .w-specific,
    .w-specific-nc{
        grid-column: span 2 !important;
    }

    /* SERVICES */
    .services__wrap{
        padding-bottom: 3rem;
    }
}

@media screen and (max-width: 560px) {
    iframe{
        width: 100%;
        min-height: 300px;
    }

    .banner{
        justify-content: center !important;
    }
    
    .banner h1{
        font-size: 20px !important;
    }
    
    .banner .banner__title{
        font-family: 'Trento', sans-serif;
        font-size: 15px;
        color: white;
        font-display: swap;
    }
}
