body{
    background-color: black;
}

.logo{
    padding-left: 3%;
    padding-top: 1%;
    width: 25%;
}

.nav{
    text-decoration: none;
    color: white;
    font-family: "raleway", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.navdiv{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 3%;
}

li{
    list-style: none;
    display: inline-block;
}

li a{
    color: white;
    margin-right: 40px;
    text-decoration: none;
}

#red{
    padding-right: 40px;
    color: #F0201C;
}

button{
    background-color: #F0201C;
    padding: 12px;
    border: none;
    width: 150px;
}

button a{
    text-decoration: none;
    color: white;
    font-family: "raleway", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 120%;
}
.sidebar{
    position:fixed;
    top: 0;
    right: 0%;
    height: 100vh;
    z-index: 999;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.911);
    display:none;
    flex-direction: column;
    justify-content: flex-start;
}

.sidebar li{
    width: 100%;
    padding-bottom: 10%;
    padding-top: 5%;
}

.menu-button{
    display: none;
}
#rest-abt, #chef-abt {
    font-family: "raleway", sans-serif;
    font-weight: 400;
    color: white;
    font-size: 115%;
    position: fixed;
    top: 55%;
    opacity: 85%;
    background-color: rgba(0, 0, 0, 0.7); /* Background color with opacity */
    padding: 20px; 
    border-radius: 10px; 
    max-width: 430px; 
    max-height: 300px;
    
}
 
 #rest-abt {
    left: 15%;
}

#chef-abt {
    left: 55%;
}

/*this is for the headers. can be changed if we want*/
#chef-header{
    font-family: "raleway", sans-serif;
    font-weight: 900;
    color: white;
    font-size: 150%;
    position: fixed;
    top: 13%;
    left: 26%;
}

#rest-header{
    font-family: "raleway", sans-serif;
    font-weight: 900;
    color: white;
    font-size: 150%;
    position: fixed;
    top: 13%;
    left: 67%;
}

#Chef-photo{
    position: fixed;
    top: 20%;
    left: 62%;
    max-width: 430px; 
    max-height: 300px;
    border-radius: 5%;

}

#Rest-photo{
    position: fixed;
    top: 20%;
    left: 22%;
    max-width: 430px; 
    max-height: 300px;
    border-radius: 5%;
    
}

@media (max-width: 415px) {
    .navdiv{
        padding-right:0%;
    }
}
@media (max-width: 415px) {
    .logo{
        width: 40%;
    }
}

@media (max-width: 415px){
    .hideOnMobile{
        display: none;
    }
    .menu-button{
        display: block;
    }
}

@media (max-width: 415px){
    button a{
        font-size: 150%;
    }
}
@media screen and (max-width: 600px) {
    .navdiv{
        padding-right:0%;
    }
    .logo{
        width: 40%;
    }
    .hideOnMobile{
        display: none;
    }
    .menu-button{
        display: block;
    }
    button a{
        font-size: 150%;
    }
    #rest-abt, #chef-abt {
        font-size: 100%; /* Adjust font size for readability */
        width: 90%; /* Adjust width to fit the screen */
        max-width: 90%;
        margin: 10px auto; /* Center the elements with margin */
        padding: 10px; /* Adjust padding for smaller screens */
    }

    #rest-header, #chef-header{
        display:none;
    }
    #rest-container, #chef-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #rest-abt, #chef-abt {
        position: static; /* Change from fixed to static to allow normal flow */
        top: auto; /* Reset top positioning */
        left: auto; /* Reset left positioning */
    }

    #Chef-photo, #Rest-photo {
        position: static; /* Change from fixed to static to allow normal flow */
        width: 80%; /* Adjust width to fit the screen */
        margin: 10px auto; /* Center the images with margin */
        top: auto; /* Reset top positioning */
        left: auto; /* Reset left positioning */
    }
}