/* General Reset */
* {margin: 0;padding: 0;box-sizing: border-box;}
body {font-family: Arial, sans-serif;line-height: 1.6;}
html{
background-image:url('../Chalkboard_Food.webp');
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Do not repeat the image */
background-size: cover; /* Resize the background image to cover the entire container */
margin: 0; /* Remove default margin */
padding: 0; /* Remove default padding */
height: 100vh; /* Full viewport height. You must set a specified height */}

.container{
height: auto;
width: 35%;
margin: 6rem auto;
padding: 20px;
margin-bottom: 15%;
background-color: rgb(255, 255, 255);
border-radius:15px;
box-shadow: 0 6px 20px 0 rgb(255, 255, 255), 0 6px 20px 0 rgb(255, 255, 255);}

.container h1 {
font-size: 400%;
margin-top: 0;
font-weight: bold;
font-family: Georgia;
margin-bottom: 20px;
text-align: center;
color:rgb(0, 0, 0);}


/*  START OF NAVIGATION xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
header.navbar {
    background-color: rgb(255, 255, 255);
    margin:0;
    padding:0;
    position: relative; /* Important for keeping the flow */
    width: 100%;}
    .logo h1 {font-size: 1.5rem;}
    .menu-button {
    position:relative;
    border:none;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1rem;}
    .menu-button:hover {background-color: rgb(0, 0, 0);color:  rgb(255, 255, 255);}
    /* Collapsible Menu Styles */
    .nav-links {
    overflow: hidden; /* Ensures smooth collapsing */
    height: 0; /* Start collapsed */
    transition: height 0.3s ease;
    position: relative;
    width: 100%;}
    .nav-links ul {
    list-style: none;
    padding: 10px 20px;}
    .nav-links li {
    width:auto;
    margin: 10px 0;}
    .nav-links a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
    display: block;
    transition: color 0.3s ease;}
    .nav-links a:hover {
    background-color: rgb(0,0,0);  color:rgb(255,255,255);}
    /* Expanded Menu */
    .nav-links.expanded {
    height: auto; /* Expand to fit content */}
    /* Responsive Design */
    @media (min-width: 768px) {
    .menu-button {
    display: none; /* Hide button on larger screens */}
    .nav-links {
    display: flex;
    height: auto; /* Menu always visible on larger screens */
    flex-direction: row;
    justify-content: flex-end;
    background: none;}
    .nav-links ul {display: flex;padding: 0;}
    .nav-links li {margin: 0 15px;}}
    /*  END OF NAVIGATION xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */


@media(max-width: 600px){
.container{
width: 75%;
height: 45%;}
.container h1 {font-size: 300%;
padding: 0px 10px 40px 10px;}}
/* SMALLER SCREENS */
@media(max-width: 768px){
body{flex-direction: column;}}

/*FOOTER*/
footer {
    margin-top: auto;
    position: fixed; 
    left: 0; 
    bottom: 0; 
    width: 100%; 
    background-color:rgb(255,255,255); 
    text-align: center;
    color: rgb(0, 0, 0); 
    font-weight: bold;}
    footer p{margin:0;padding:0;}