@import url('https://fonts.googleapis.com/css?family=Cabin|Herr+Von+Muellerhoff|Source+Sans+Pro:400,900&display=swap');

/*Global styles*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-font: 'Source Sans Pro', sans-serif;
    --secondary-font: 'Herr Von Muellerhoff', cursive;
    --body-font: 'Cabin', sans-serif;
    --main-font-color-dark: #252525;
    --secondary-font-color: #c59d5f;
    --body-font-color: #515151;
}

html {
    font-family: var(--body-font);
    font-size: 10px;
    color: var(--body-font);
    scroll-behavior: smooth;
}

section {

    padding: 3.9rem 0;
    overflow: hidden;
}

img {
    width: 100%;
    max-width: 100%;
}

a {
    text-decoration: none;

}

footer a:focus {
    text-decoration: none;

}

footer a:hover {
    text-decoration: none;

}

.nav_content a {
    text-decoration: none;
    color: black !important;

}

.nav_content a:hover {
    text-decoration: none;
    color: black;

}

.nav_content a:focus {
    text-decoration: none;
    color: black;

}

body {
    overflow-x: hidden;
}

.container {

    width: 100%;
    max-width: 122.5rem;
    margin: 0 auto;
    padding: 0 2.4;

}

/* header */

header {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.nav {
    height: 7.2rem;
    display: flex;
    align-items: center;
    justify-content: center;

}

.nav2 {
    height: 7.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;

}


.menu-toggle {
    columns: #fff;
    font-size: 2.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2.5rem;
    cursor: pointer;
    z-index: 1500;
}

.fa-times {
    display: none;
}

.nav-list {

    list-style: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background-color: var(--main-font-color-dark);
    padding: 4.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1250;
    transform: translateX(-100%);
    transition: transform .5s;
}

.nav::before {

    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    transform: scale(0);
    transition: opacity .5s;
}

.open .fa-times {
    display: block;
    color: white;
}

.open .fa-bars {
    display: none;
    color: white;
}

.fa-bars {
    color: white;
}

.open .nav-list {

    transform: translateX(0);
}

.open .nav::before {
    opacity: 1;
    transform: scale(1);
}

.nav-item {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-link {


    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-right: -2px;
    transition: color .5s;


}


.nav-link:hover {

    color: var(--secondary-font-color);
}

.active2 {
    border-bottom: 2px solid #c59d5f;
}


.hero {
    width: 100%;
    height: 100vh;
    background: url("images/hero2.jpg") center no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;
    text-align: center;
}

.sub-headline {
    font-size: 8.5rem;
    font-family: var(--secondary-font);
    color: var(--secondary-font-color);
    font-weight: 100;
    line-height: .4;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeup .5s forwards;
    animation-delay: .5s;
}

.first-letter {

    text-transform: uppercase;
    font-size: 10.3rem;

}

.headline {
    color: #fff;
    font-size: 3.7rem;
    font-family: var(--main-font);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.5rem;
    margin-right: -0.5rem;
    animation: scale .5s forwards;
    /* animation-delay: .5s; */
}

.seperator {

    display: flex;
    align-items: center;
    justify-content: center;

}

.line {
    width: 100%;
    max-width: 8.4rem;
    height: 0.25rem;
    background-color: #fff;
    position: relative;
    opacity: 0;
    animation: grow 2s forwards;
    animation-delay: .9s;
}

.line-right::before,
.line-left::before {

    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: .6rem solid transparent;
    opacity: 0;
    animation: grow 5s forwards;
    animation-delay: 1.2s;
}

.line-right::before {
    border-right-color: #fff;
    right: 0;
}

.line-left::before {
    border-left-color: #fff;
    left: 0;

}



.asterisk {
    font-size: 1.2rem;
    color: var(--secondary-font-color);

    margin: 0 1.6rem;
    opacity: 0;
    animation: spin .5s forwards;
    animation-delay: .7s;
}

.single-animation {
    opacity: 0;
    animation: fadedown 5s forwards;
    animation-delay: 1.5s;
}

.headline-description h5 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    letter-spacing: 3px;
    margin-right: -3px;
}

.btn {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: -2px;
}

.cta-btn {

    font-size: 1.1rem;
    background-color: #fff;
    padding: .9rem 1.8rem;
    color: var(--body-font-color);
    border-radius: .4rem;
    transition: background-color .5s;
}


.cta-btn:hover,
.cta-btn:focus {

    color: #fff;
    background-color: var(--secondary-font-color);


}


/* discover our story */

.global-headline {

    text-align: center;
    margin-top: 3.9rem;
}

.discover-our-story .global-headline {

    margin-top: 6.9rem;

}

.global-headline .asterisk {
    color: var(--body-font-color);
    margin: 2.4rem 0;

}

.headline-dark {
    color: var(--main-font-color-dark);
    letter-spacing: 0.7rem;
    margin-right: -0.7rem;

}

.global-headline .sub-headline {

    letter-spacing: -1px;
    line-height: 0.42;

}

.restaurant-info {
    text-align: center;
}

.restaurant-description {
    margin-bottom: 3rem;
}

.restaurant-description p {

    line-height: 1.6;
    margin-bottom: 2.4rem;
    font-size: 2rem;

}

.body-btn {

    font-size: 1.5rem;
    color: var(--secondary-font-color);
    position: relative;
    transition: color .5s;

}

.body-btn::before {

    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-font-color);
    transition: background-color .5s;

}

.body-btn:hover,
.body-btn:focus {

    color: var(--main-font-color-dark);


}

.body-btn:hover::before,
.body-btn:focus::before {

    background-color: var(--main-font-color-dark);


}

/* about us */

.row .col-md-6 .pray img {
    opacity: 0.8;
    width: 100%;

    height: 80%;
    border-radius: 0.2em;
}

.row .col-md-6:last-child {
    position: relative;
    /* background: rgba(0,0,0,0.815); */
}

.row .col-md-6 .panel {
    position: absolute;
    top: 7vmin;
    /*move container*/
    left: -22vmin;
    /*move container*/
    background: white;
    border-radius: 3px;
    text-align: left;
    padding: 13vmin 5vmin 20vmin 10vmin;
    /* box-shadow: 0px 25px 42px rgba(0, 0, 0, 0.2); */
    font-family: var(--Rubik);
    z-index: 1;

}

.row .col-md-6 .panel h1 {
    font-weight: bold;
    padding: 0.4em 0;
    font-size: 2em;

}

.row .col-md-6 .panel p {
    font-size: 0.9;
    color: rgba(0, 0, 0, 0.5);
}



/* tasteful recipes */

.tasteful-recipes {

    background: url("images/pexels-yente-van-eynde-2403391.jpg") center no-repeat;
    background-size: cover;
    background-position: 50% 58%;
}

.between {
    min-height: 65vh;
    display: flex;
    align-items: center;

}


/* discover our menues */

.image-group {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

/* menu-intro */

.menu-intro p {
    font-size: 20px;
}


/* .discover-our-menu  */

.perfect-blend {
    background: url("images/hero.jpg");
    background-size: cover;
}

/* restaurant menu */
.nav_content .nav-item {
    font-size: 2rem;
}

.menu {
    font-size: 2rem;
}

.menu ul li {
    list-style: none;
    position: relative;

}



.menu span {
    position: absolute;
    padding-left: 45rem;
    top: 0;
}

.menu .menu2 {

    margin-left: 20px;
}


/* reservation */
.reservation {
    background: whitesmoke;
    font-size: 2rem;
    color: black;

}

.jumbotron {
    background-color: whitesmoke;
    color: black;
}


.section-4 .jumbotron p {
    margin-top: 50px;
    margin-bottom: -30px;
}

.reservation input[type=text],
.reservation input[type=website],
.reservation input[type=email],
.reservation select[id=sel],
.reservation input[id="dt"] {
    width: 20%;
    display: inline-block;
    background: whitesmoke;
    border: none;
    border-bottom: 2px solid wheat;
    border-radius: 0;
    outline: none;
    color: black;
    font-size: 10px;

}

.reservation ::-webkit-input-placeholder,
#sel {
    font-size: 20px;
    color: black;


}

.reservation #f1 {
    margin-right: 30px;
}




.reservation .f2,
.reservation .f3 {
    margin-top: 30px;
}

.reservation input[type=text]:focus,
.reservation select:focus,
.reservation input[id="dt"] {
    background: whitesmoke;
}

.reservation input[type=website]:focus,
.reservation select:focus,
.reservation input[id="dt"] {
    background: whitesmoke;
}

.reservation input[type=email]:focus,
.reservation select:focus,
.reservation input[id="dt"] {
    background: whitesmoke;
}

.reservation select:focus,
.reservation input[id="dt"] {
    background: whitesmoke;

}

.reservation input:-webkit-autofill,
.reservation input:-webkit-autofill:hover,
.reservation input:-webkit-autofill:focus,
.reservation textarea:-webkit-autofill,
.reservation textarea:-webkit-autofill:hover,
.reservation textarea:-webkit-autofill:focus,
.reservation select:-webkit-autofill,
.reservation select:-webkit-autofill:hover,
.reservation select:-webkit-autofill:focus {
    -webkit-text-fill-color: black;
    -webkit-box-shadow: 0 0 0px 1000px whitesmoke inset;
    box-shadow: 0 0 0px 1000px whitesmoke inset;
    font-size: 20px;

    transition: background-color 5000s ease-in-out 0s;
}

.reservation input[type=submit] {
    margin-top: 20px;
    width: 200px;
    height: 50px;
    border-radius: 50px;
    margin-bottom: 100px;
}



/* restaurant-gallary */
.restaurant-gallary {
    height: auto;

}

.gallery {

    margin-top: 20px;
    width: 100%;
    height: auto;
    background: white;
    margin: auto;
    margin-top: 20px;
}

.pictures {
    display: grid;
    grid-gap: 10px;
    padding: 10px;
}

.pictures>div {
    font-size: 30px;
    /* padding: 20px 0; */
}

.pictures>div img {
    height: 100%;
    width: 100%;
    /* object-fit: cover; */
}


.pic1 {
    /* background: red; */
    /* height: 100%;
    width: 100%; */
    grid-column-start: 1;
    grid-column-end: 2;
    /* grid-row-start: 1;
    grid-row-end: 9; */

}

.pic2 {
    /* background: turquoise; */
    /* height: 100%;
    width: 100%; */
    grid-column-start: 2;
    grid-column-end: 3;
    /* grid-row-start: 1;
    grid-row-end: 5; */
}

.pic3 {
    /* background: black; */
    /* height: 300px;
    width: 100%; */
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
}

.pic4 {
    /* background: wheat; */
    /* height: 100%;
    width: 100%; */
    grid-column-start: 1;
    grid-column-end: 3;
    /* grid-row-start: 1;
    grid-row-end: 5; */
}

.pic5 {
    /* background: brown; */
    /* height: 100%;
    width: 100%; */
    grid-column-start: 1;
    grid-column-end: 3;
    /* grid-row-start: 1;
    grid-row-end: 5; */
}

.pic6 {
    /* background: rosybrown; */
    /* height: 100%;
    width: 100%; */
    grid-column-start: 3;
    grid-column-end: 5;
    /* grid-row-start: 1;
    grid-row-end: 5; */
}



/* discover */

.wrapper3 {
    display: grid;
    grid-template-columns: 1fr;
    /* grid-auto-rows: minmax(300px, auto); not for img*/
    /* grid-auto-rows: 320px;
    grid-gap: 1em;
    min-width: 0;
    min-width: 0; */
    /* justify-items: end;
    justify-items: start; */

    /* align-items: center; */
    padding: 1em;
    position: relative;



}



.wrapper3>div:nth-child(odd) {
    background: teal;
}


.wrapper3>div {
    background: cornflowerblue;

    position: relative;

}

.box img {
    height: 420px;
    width: 100%;
    object-fit: cover;
}

.box1 {
    grid-column: 1/2;
    grid-row: 1;
    display: flex;
    position: absolute;
    top: 15px;


}

.title-blog {
    height: auto;
    width: 80%;
    position: absolute;
    z-index: 50;
    bottom: 0;
    background-color: white;
    font-size: 3rem;
}

.title-blog p {
    font-size: 1.5rem;
}

.carousel-item .tint {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;

}

.carousel-item {

    position: relative;
}

.carousel-caption p {

    margin-bottom: 10px;
}

/* footer */

footer {
    padding: 7.9rem 0;
    background-color: #121212;
    color: #fff;
    text-align: center;
    position: relative;

}


.back-to-top {


    width: 7rem;
    height: 7rem;
    background-color: #121212;
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}

.back-to-top i {
    display: block;
    color: #fff;
    font-size: 2rem;
    padding: 2rem;
    animation: up 2s infinite;
}

.footer-content {
    overflow: hidden;
}

.footer-content h4 {

    font-size: 1.9rem;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

.footer-content .asterisk {

    margin: 2.4rem 0;

}

.footer-content-about {

    line-height: 2;
}

.footer-content-about p {
    font-size: 2rem;
}

.social-media h4 {
    margin-top: 5rem;
}

.social-icons {
    list-style: none;
    margin-bottom: 5.4rem;
    display: flex;
    justify-content: center;

}

.social-icons i {

    font-size: 2rem;
    color: #fff;
    padding: .8rem 2rem;
    opacity: .5;
    transition: color .5;

}

.social-icons i:hover,
.social-icons i:focus {

    color: var(--secondary-font-color);
}

.newsletter-container h4 {
    margin-top: 5rem;

}

.newsletter-form {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.newsletter-input {
    width: 100%;
    max-width: 25rem;
    padding: 1rem;
    border-radius: .4rem;

}

.newsletter-btn {

    background-color: transparent;
    border: none;
    border-left: 2px solid black;

    color: var(--main-font-color-dark);
    cursor: pointer;
    font-size: 1.6rem;
    padding: 1px 0.6rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 210px;

}


/* responsiveness */
@media screen and (min-width: 900px) {



    section {
        padding: 7.9rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav {

        justify-content: space-between;
    }

    .nav-list {

        position: initial;
        width: initial;
        height: initial;
        background-color: transparent;
        padding: 0;
        justify-content: initial;
        flex-direction: row;
        transform: initial;
        transition: initial;

    }

    .nav-item {

        margin: 0 2.4rem;
        border: none;
    }

    .nav-item:last-child {

        margin-right: 20px;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    nav .active {
        position: relative;
    }

    nav .active::before {

        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #fff;
        left: 0;
        bottom: -3px;
    }


    .sub-headline {
        font-size: 10rem;
    }

    .first-letter {
        font-size: 12.2rem;
    }

    .headline {
        font-size: 4.7rem;
        letter-spacing: 0.8rem;
    }

    .line {
        max-width: 11.4rem;
    }

    .restaurant-info {
        display: flex;
        align-items: center;
    }

    .restaurant-info>div {

        flex: 1;
    }

    .padding-right {
        padding-right: 7rem;
    }


    .social-icons i {
        opacity: 1;
    }


}


@media screen and (max-width: 450px) {

    .reservation input[type=text],
    .reservation input[type=website],
    .reservation input[type=email],
    .reservation select[id=sel],
    .reservation input[id="dt"] {
        font-size: 10px;
    }

    .discover-our-story {

        overflow: visible;
        /* height: auto !important; */
    }

    .panel {
        text-align: center !important;

    }

    .panel p {
        font-size: 15px;

        padding-left: 30px;

    }

    .tasteful-recipes {
        margin-top: 250px;
    }






}

@media screen and (max-width: 1050px) {

    .menu {
        display: flex;
        flex-direction: column;

    }

    .menun1 {

        flex: 1;
        overflow: auto;


    }

    .menun2 {

        /* flex: 1; */
        overflow: auto;


    }

}

@media screen and (max-width: 770px) {


    .nav2 {
        height: auto;
        display: block;
        align-items: center;
        justify-content: center;
        list-style: none;
        margin: auto;

    }


}



/* animations */

@keyframes fadeup {
    0% {
        transform: translateY(4rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);

    }
}

@keyframes scale {
    0% {
        transform: scale(2);
    }

    100% {
        opacity: 1;
        transform: scale(1);

    }
}

@keyframes grow {
    0% {
        width: 0;
    }

    100% {
        opacity: 1;
        width: 100%;

    }
}

@keyframes fadedown {
    0% {
        transform: translateY(-1rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);

    }
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        opacity: 1;
        transform: rotate(360);

    }
}

@keyframes up {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }


    100% {
        opacity: 1;
        transform: translateY(-1rem);

    }
}