/* D'Oro Italian restaurant by Feruza */

:root {
    --gold: #fdb515;
    --red: #a70b00;
    --green: #325c15;
    --textColor: #4e4e4e;
    --bgColor: #fbe5c8;

}

/* fonts */
.marcellus-regular {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
}

/*  google symbols*/
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 48
}



/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* initial setup */
body {
    max-width: 1280px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: var(--textColor);
}

img {
    width: 100%;
}


hr.divider {
    width: 70%;
    border: 1px solid var(--gold);
    margin: 4rem auto;
}


div[id] {
    border-bottom: 1px solid var(--gold);
}




/* Navbar */
nav {
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 100px;
}

nav a {
    height: 100%;
    padding: 0 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--textColor);
}

nav a:hover {
    background-color: #fbe5c8;
}

.nav-logo {
    margin-right: auto;
    width: 210px;
    justify-content: flex-start;
}

.nav-logo a:hover {
    background-color: #fff;
}


.menu-vertical {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 99;
    background-color: rgba(255,255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
 
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.menu-vertical li {
    background-color: var(--bgColor);
    width: 100%;
    border-bottom: 1px solid var(--green);
    padding-left: 2rem;
    display: flex;
    align-items: center;
}

.menu-vertical i{
    color: var(--red);
}

.menu-vertical a {
    width: 100%;
}

.menu-button {
    display: block;
}


/* section setup */

.container {
    background-color: var(--bgColor);
    padding: 5rem 1rem 4rem;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

.border {
    border: 1px solid var(--green);
}

.heading-box {
    width: 220px;
    margin: 0 auto;
    position: relative;
}

.welcome-heading h2,
.offer-heading h2,
.about-heading h2,
.chef-heading h2,
.whyus-heading h2,
.menu-heading h2,
.contact-heading h2,
.bookatable-heading h2{
    font-family: Marcellus, Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    letter-spacing: .1px;
    color: var(--red);
    width: 220px;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    top: -15px;
    background-color: var(--bgColor);
    border-left: 1px solid var(--green);
    border-right: 1px solid var(--green);
}




.welcome-text,
.offer-text,
.about-text {
    padding: 3rem 1.5rem;
}

.welcome-text p,
.offer-text p,
.about-text p{
    line-height: 1.5rem;
}
/* index.html */
/* banner index page */

.banner{
    background-image: url("../img/resto-home.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 400px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);

}

.banner-flex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner h1{
    font-family: 'Yeseva One', Georgia, 'Times New Roman', Times, serif;
    font-size: 2.2rem;
    letter-spacing: 0.1rem;
    text-align: center;
    color: #fff; 
    width: 80%;
    padding-top: 8rem;
    margin-bottom: 2rem;
}

.banner a {
    font-weight: 800;
    text-decoration: none;
    letter-spacing: .05rem;
    text-align: center;
    color: var(--green);
    width: 60%;
    padding: 1rem 2rem;
    background-color: var(--gold);
    margin-bottom: 4rem;
}

.banner a:hover {
    background-color: var(--red);
    color: #fff;
}


/* index.html welcome */



/* index.html gallery */
.gallery {
    display: flex;
    flex-direction: column;
    line-height: 0;
    background-color: var(--bgColor);
    padding: 0 1rem;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);

}

.gallery-two {
    display: flex;
    flex-direction: row;
    line-height: 0;
}

.pad{
    padding: 4px;
}


/* index.html best offer */


.offer-image{
    line-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1rem;
}

.offer-image img{
    width: 100%;
}

.offer-image .img-box{
    padding: 5px;
}


/* about.html */

/* about.html - section our-chef */


.chef-photos{
    margin: 1rem;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
}

.chef-row{
    display: flex;
    flex-direction: row;
}





/* about.html - section chef quote */

.chef-quote{
    padding: 2rem;
}

.chef-quote img{
    width: 50px;
}

.chef-quote h3 {
    color: var(--green);
    padding:  2rem 0 .5rem 0;
}

.chef-quote hr{
    width: 200px;
    border: 1px solid var(--green);
}

.chef-quote p{
    padding: 1rem 0 1rem 0;
    width: 80%;
    line-height: 1.3rem;
}


/* about.html - 3 cards of why choose us */

#whyus .heading-box {
    width: 250px;
}
.whyus-heading h2{
    width: 250px;
}
.choices-container {
    padding: 4rem 1rem;
}


.choices-container .wrapper {
    margin: 0 auto;
    width: 100%;
}

.choices-container .flex-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem;
}

.choice {
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border: .5px solid #ccc;
    width: 90%;
    margin: 0 auto;
}

.choice-text {
    padding: 3rem 1rem 2rem;
}

.choice-number {
    font-size: 4rem;
    font-weight: 100;
}

.choice h4 {
    padding-bottom: 1rem;
}

.choice p {
    height: 100%;
}

.choice-one .choice-number {
    color: var(--red);
}

.choice-two .choice-number {
    color: var(--gold);
}

.choice-three .choice-number {
    color: var(--green);
}



.choice hr {
    width: 90%;
    margin-bottom: 2rem;
    margin-top: auto;
}

.choice-one hr {
    border: 4px solid var(--red);
}

.choice-two hr {
    border: 4px solid var(--gold);
}

.choice-three hr {
    border: 4px solid var(--green);
}

.line{
    height: 8px;
    width: 90%;
    margin-top: auto;
    margin-bottom: 2rem;
}
.line{
    background-color: var(--red);

}
.line2{
    background-color: var(--gold);

}
.line3{
    background-color: var(--green);

}



/* menu.html */




/* MENU NAV */

.menu-nav ul {
    display: none;
}

/* menus */

#menu-new{
    font-family: Marcellus, Arial, Helvetica, sans-serif;
}

.menu {
    padding: 4rem 1rem;
}

.menu-flex {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.menu-item {
    width: 100%;
    padding: 1rem;
}

.menu-item .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.menu-item h6 {
    text-transform: uppercase;
    font-size: 16px;

}

.menu-item span {
    font-size: 16px;
    padding-left: 1rem;
}

.menu-item p {
    padding: .4rem 4rem .4rem 0;
    font-size: 14px;
}














/* contact page - contact.html */


#contact{
    max-width: 1280px;
    margin: 0 auto;
    font-family: Marcellus, Arial, Helvetica, sans-serif;
    font-size: 18px;
    letter-spacing: .1rem;
}

.section-image {
    line-height: 0;

}

.section-image img {
    width: 100%;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);

}



.contact {
    padding: 4rem 2rem 2rem;
}

.contact-flex {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.contact-item {
    width: 100%;
    padding-bottom: 2rem;
}

.contact-item i {
    color: var(--green);
    padding-bottom: .8rem;
}
 
.contact-item h5 {
    text-transform: uppercase;
    color: var(--green);
    
}

.contact-item p {
    padding: .4rem 4rem .4rem 0;
}



/* bookatable.html */



.form-section {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 4rem 2rem;
}

form {
    width: 100%;
}

form .box {
    display: flex;
    align-items: center;
    padding: 1rem;
}

form i {
    color: var(--red);
    padding-right: 1rem;
}

form input,
form select,
form textarea {
    height: 2rem;
    padding: 0 0.5rem;
    border: 1px solid var(--gold);
    border-radius: 4px;
    flex-grow: 2;
}

form textarea {
    height: 4rem;
    padding: 0.5rem 0.5rem;
}

form .submit input {
    width: 100%;
    background-color: var(--gold);
    height: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #fff;
}

form .submit input:hover {
    background-color: var(--red);
}

.form-image {
    display: none;
}





/* footer */
footer {
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--green);
    padding: 3rem 0;
}

.footer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright,
.phone-number {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #fff;
}

.copyright p {
    color: #fff;
    font-size: .8rem;
    font-weight: lighter;
    letter-spacing: .2rem;
    padding: 0 2rem;
}

.phone-number {
    display: flex;
}

.phone-number i {
    color: #fff;
    padding-left: 3rem;
}

.phone-number p {
    color: #fff;
    font-size: 1rem;
    font-weight: lighter;
    letter-spacing: .2rem;
    padding: 0 3rem 0rem 1rem;
}


footer .social ul {
    display: flex;
    justify-content: center;
}

footer .social ul li {
    width: 40px;
    text-decoration: none;
    list-style: none;
    padding-right: 0.3rem;

}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    /* navbar */
    .menu-vertical {
        width: 100%;
    }

    .hideOnMobile {
        display: none;
    }
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    /* navbar */
    .menu-vertical {
        width: 250px;
    }

    .hideOnMobile {
        display: none;
    }

    /* contact.html */
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-info div {
        width: 45%;
    }

    .contact-info div:nth-child(1),
    .contact-info div:nth-child(2) {
        padding-bottom: 3rem;
    }

    /* bookatable.html */
    form {
        flex-basis: 85%;
    }






}

/* Medium devices (landscape tablets, 800px and up) */
@media only screen and (min-width: 800px) {
    /* navbar */
    .menu-button {
        display: none;
    }

    .hideOnMobile {
        display: flex;
    }

    /* index.html */
    .banner a{
    display: none;
    }

    .banner h1 {
    font-size: 3rem;
    letter-spacing: 0.1rem;
    }

    /* form */
    .form-image {
        flex-basis: 30%;

    }

    form {
        flex-basis: 70%;
    }

    .menu-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .menu-small {
        flex-basis: 49%;
        max-width: 600px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

    /* index.html LARGE */

    .offer-image{
        flex-direction: row;
        flex-wrap: wrap;
    }


    .offer-image .img-box{
        width: 50%;
    }

    /* index.html large gallery */

    .gallery {
        flex-direction: row;
        width: 100%;
    }
    .gallery-two {
        display: flex;
        flex-direction: column;
    }

    /* about.html LARGE */
    .our-story {
        padding-bottom: 4rem;
    }

    /* about page - section our-chef LARGE*/

    .chef-quote{
        padding: 2rem  15rem;
    }



    /* about.html - 3 cards of why choose us LARGE */

    .choices-container .flex-container {
        flex-direction: row;

    }

    .choice {
        width: 30%;
    }

    .choice hr {
        width: 90%;
        margin-bottom: 2rem;
        margin-top: auto;
    }

    .choice-one hr {
        border: 4px solid var(--red);
    }

    .choice-two hr {
        border: 4px solid var(--gold);
    }

    .choice-three hr {
        border: 4px solid var(--green);
    }



    



     /* menu.html LARGE*/

    /* MENU NAV */
    .menu-nav {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 2;
    }

    .menu-nav ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        list-style: none;
        width: 100%;
    }

    .menu-nav li {
        height: 60px;
        width: 100%;
        background-color: var(--gold);
        border-right: 1px solid var(--red);
    }

    .menu-nav li:last-of-type {
        border: none;
    }

    .menu-nav a {
        height: 100%;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;

        text-transform: uppercase;
        color: #fff;
    }

    .menu-nav a:hover {
        background-color: var(--red);
    }

    /* menu items */

    .container {
        padding: 6.5rem;
    }

    .menu {
        padding: 4rem 3rem;
    }

    .menu-flex {
        height: 550px;
        gap: 1rem 3rem;
    }

    #dessert .menu-flex {
        height: 250px;
        gap: 1rem 3rem;
    }

    .menu-item {
        width: 48%;
    }


    /* menu.html LARGE end */

    
    /* contact.html LARGE */
    .contact-flex {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-item {
        width: 40%;
    }
    /* contact.html LARGE end */

    /* bookatable.html LARGE */

    .form-image {
        display: block;
        /* box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1); */
    }
    .form-section {
        flex-direction: row;

    }
    form {
        width: 60%;
    }

    form {
        width: 100%;
        padding-right: 2rem;
    }
   
}