body, html {
    margin: 0;
    padding: 0;
    padding-top: 50px;
    font-family: Arial, sans-serif;
}

body {
    background: url('restaurante.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333; /* Dark background for contrast */
    color: white;
    
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000;
    height: 100px;
}

.burger {
    cursor: pointer;
    font-size: 36px; 
    padding: 1rem;
}

.menu {
    display: none;
    flex-direction: column; /* Stack menu items */
    position: absolute;
    width: 100%;
    background-color: white;
    color: #333;
}

.menu a {
    padding: 10px;
    text-decoration: none;
    color: #333;
    display: block;
}

.menu a:hover {
    background-color: #f2f2f2;
}

.logo {
    text-align: center;
    flex-grow: 1;
}

.logo img {
    width: 200px;
    height: 100px;
}

.menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%; 
    background-color: #ffffff; 
    box-shadow: 0 8px 16px rgba(0,0,0,0.1); 
    border-top: 3px solid #007BFF;
    z-index: 1000;
}

.menu a {
    padding: 15px 20px;
    text-decoration: none;
    color: #333333;
    display: block;
    border-bottom: 1px solid #f1f1f1; 
    transition: background-color 0.3s ease;
}

.menu a:last-child {
    border-bottom: none; 
}

.menu a:hover {
    background-color: #f9f9f9; 
}

.menu:not(.hidden) {
    display: block; 
}

/* Style for the options box */
.options-box {
    width: 80%; /* Make it relative to the viewport width */
    max-width: 350px; /* Maximum width */
    margin: auto; /* For horizontal centering */
    padding: 2em;
    background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Softer shadow */
    border-radius: 15px; /* More pronounced rounded corners */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center; /* Center-align the text for each option */
}

/* Style for the options */
.options-box a {
    text-decoration: none;
    color: #505050; /* A darker shade for better readability */
    font-size: 1.1em; /* Slightly larger text */
    font-weight: 500; /* Medium font weight */
    padding: 15px 25px;
    border: none;
    width: 100%;
    background-color: #f8f8f8; /* A light grey background */
    border-radius: 10px; /* Rounded corners for the links */
    transition: all 0.3s ease; /* Transition for smooth hover effect */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

.options-box a:hover {
    background-color: #e8e8e8; /* Slightly darker background on hover */
    transform: translateY(-5px); /* Move up slightly */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* Enhanced shadow on hover */
}




/* Responsive adjustments for smaller screens, typically for phones */
@media only screen and (max-width: 600px) {
    .options-box {
        width: 70%; /* Increase width to take more screen space */
        padding: 2em; /* Increase padding for better touch interaction */
        gap: 25px; /* Increase gap between options for better separation */
    }

    .options-box a {
        padding: 20px 30px; /* Increase padding inside each option */
        font-size: 1.2em; /* Increase font size for better readability */
    }
}
