@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;1,100;1,300&display=swap');
* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgb(222, 81, 81);
}

html {
    height:auto;
}

body {
    font-family: 'Bebas Neue', serif;
    line-height:1.5; 
    letter-spacing:3px;
    width:100vw;
}

a {
    text-decoration:none;
}

/* HERO */
#home {
    width:100%;
    height:90vh;
    overflow:hidden;
}

nav {
    position:absolute;
    top:5px;
    left:0;
    z-index:20000;
    height:4rem;
    padding:1.5rem;
    background:transparent;
}

nav a {
    font-size:18px;
    color:var(--primary-color);
    text-transform:uppercase;
    transition:all .1s ease-in;
    text-shadow: 0 1px 1px black;
}

nav .nav:hover{
    opacity:.8;
}

.sm-nav{
    color:#fff;
    position:absolute;
    bottom:6rem;
    z-index:20000;
}

.sm-nav a {
    padding-right:.5rem;
}

.social-media {
    color:#fff;
    text-shadow: 1px 1px 2px rgb(123, 56, 23);
    font-size:25px;
    transition:all .5s ease-in;
}

.social-media:hover {
    rotate:180deg;
}

.facebook-icon {
    margin-left:1rem;
}

.hero {
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    text-align:center;
    height:100vh;
    width:100%;
    position:relative;
}

.hero::after{
    position:absolute;
    height:100vh;
    width:100%;
    content:'';
    background-image:url('../images/hero.jpg');
    background-position:center;
    filter:contrast(80%);
}

.hero h1 {
    color:#fff;
    text-shadow: 1px 1px 2px rgb(123, 56, 23);
    font-size:100px;
    height:100%;
    width:100vw;
    text-transform:uppercase;
    line-height:6rem;
    margin-top:50%;
    z-index:1000;
}

.hero h1::before {
    content:'';
    position:absolute;
    height:100%;
    width:100vw;
    z-index:-1;
}

/* ABOUT SECTION */
#about {
    width: 100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;
    padding: 50px 200px;
    position: relative; 
    height: 600px;
    background: black;
    color: #d6d6d3;
}

#about h2 {
    font-size: 32px;
    line-height:2.5rem;
    margin-bottom:2rem;
}

#about p {
    font-size: 20px;
}

.overlay-breakline {
    z-index:1000;
    height:5px;
    width:50px;
    background:var(--primary-color);
    margin:2rem;
}

@media (max-width:771px){
    #about {
        padding: 50px;
    }
}

@media (max-width:552px){
    .social-media{
        padding:0;
        margin:0;
    }
    #about {
        padding: 20px;
    }
}

@media (max-width:550px){
    .facebook-icon{
        margin-left:15rem;
    }
}


/* CHEF SECTION */
#chef {
    height: 100vh;
    width:100vw;
    background:url(../images/chef.jpg) no-repeat center center / cover;
    z-index:1;
    position:relative;
    padding:10rem 5rem;
}

#chef::after {
    content:'';
    position:absolute;
    top:0;
    left:0;
    height:400px;
    width:100%;
    background:linear-gradient(to bottom, black, transparent);

    opacity:.6;
    z-index:20;
}

#chef::before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
    background:#222;
    opacity:.6;
    z-index:-1;
}

.chef-content {
    color: rgb(220, 220, 220);  
    width:500px;
    line-height:3rem;
}

.chef-content h2 {
    color:#fff;
    font-size:3rem;
    letter-spacing:.5rem;
    margin-bottom:2rem;
}

.chef-content p {
    font-size:20px;
    margin-bottom: 3rem;
}

@media (max-width:650px){
    #chef{
        padding-top: 5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .chef-content {
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        width:100%;
    }
}

/* MENU-SECTION */
.menu-container{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    height:100%;
    width:100%;
    background:url('../images/menu.jpg') no-repeat;
    background-size:cover;
    color:#fff;
    padding:10rem 5rem;
    filter:contrast(.8);
}

.menu{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:3rem;
}

@media (max-width:600px){
    .menu-container {
        padding: 5rem 1rem;
    }
    .menu{
        grid-template-columns: 1fr;
    }
}

.menu h1{
    font-size:25px;
}

.menu li{
    font-size:20px;
    list-style:none;
    margin-bottom:1rem;
}

.menu-section{
    width:100%;
    border:1px white solid;
    border-radius:4px;
    padding:1rem;
}

.menu-section hr{
    margin-bottom:1.5rem;
}

/* CONTACT SECTION */
.contact {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    height:auto;
    background:#000;
}

.contact h1 {
    color: #999;
    margin-bottom:1rem;
}

.contact p {
    color:white;
    margin-bottom:1rem;
}

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

.contact button {
    padding:10px;
    width:100%;
    background: var(--primary-color);
    border-radius:10px;
    border:none;
    cursor:pointer;
    margin-bottom: 5rem;
}

.contact-container {
    display: flex;
    flex-direction:row;
    justify-content:space-between;
    margin: 7rem 5rem 0 5rem;
    max-width:1200px;
}

.contact-leftside {
    width: 50%;
    margin-right: 5rem;
}

.contact-rightside {
    width:30%;
}

@media(max-width: 760px){
    .contact-container {
        flex-direction:column;
    }

    .contact-leftside, .contact-rightside {
        width:100%;
    }
}
