/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

header .logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

nav {
    background: #34495e;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.content-container {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    gap: 20px;
}

.menu-section {
    width: 28%;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.menu-section h2 {
    text-align: center;
    color: #2c3e50;
}

.item {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.item:last-child {
    border-bottom: none;
}

.menu-section .item:nth-child(odd) {
    background-color: #f9f9f9; /* Light gray for odd rows */
}

.menu-section .item:nth-child(even) {
    background-color: #ffffff; /* White for even rows */
}

.menu-section .item span {
    font-weight: bold;
    color: #2c3e50; /* Dark blue for item names and prices */
}

.menu-section .item p {
    margin: 5px 0 0;
    color: #555; /* Slightly lighter text for specifications */
}

.menu-section p.note {
    margin-top: 20px;
    font-size: 14px;
    font-style: italic;
    color: #888; /* Gray for the note at the bottom */
}

.slideshow-section {
    width: 70%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slideshow-container {
    width: 100%;
    padding-top: 56.25%; /* Aspect ratio 16:9 */
    position: relative;
    overflow: hidden;
    background-color: #ddd;
    border-radius: 10px;
}

.slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Maintain aspect ratio */
    display: none; /* Hide all slides by default */
}

.slides:first-child {
    display: block; /* Show the first slide initially */
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50%;
    z-index: 10;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

button.prev:hover,
button.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 14px;
}

footer a {
    color: #1abc9c;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

footer a:hover {
    text-decoration: underline;
}

footer .fb-logo {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 10px;
    }

    .menu-section,
    .slideshow-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .slideshow-container {
        padding-top: 56.25%; /* Keeps the 16:9 aspect ratio */
    }
}
