* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-bar {
    background-color: #13181C; /* Dark blue background */
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.main-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #F3D221; /* Light green highlight */
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    border-radius: 4px;
}

.navbar .nav-links li a {
    padding: 8px 16px;
    border-radius: 4px;
}


.content {
    color: white; /* White text color */
    text-align: center; /* Centers the text */
}


/* Footer styles */
.footer {
    background-color: #13181C; /* Dark blue background (same as header) */
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #F3D221; /* Light green highlight */
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #d1d1d1; /* White background for the page */
}


.menu-item {
    font-size: 20px;
    padding: 5%;
    text-align: center;
    margin-top: 3em;
    border-radius: 5px;
    background-color: #f2f2f2; /* Light grey background for menu items */
    transition: background-color 0.3s ease;
}

.menu-item:hover {
    background-color: #e0e0e0; /* Slightly darker grey on hover */
}

.menu {
    background-color: #d1d1d1;
}

.brunch {
    display: flex;
    align-self: center;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    margin: 3% 25% 3% 25%;
    padding: 20px;
    border: #f3e221;
    border-style: solid;
}

.bites {
    display: flex;
    align-self: center;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 3% 25% 3% 25%;
    padding: 20px;
    border: #f3e221;
    border-style: solid;
}

.dinner {
    display: flex;
    align-self: center;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    margin: 3% 25% 3% 25%;
    padding: 20px;
    border: #f3e221;
    border-style: solid;
}

.drinks {
    display: flex;
    align-self: center;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 3% 25% 3% 25%;
    padding: 20px;
    border: #f3e221;
    border-style: solid;
}

.drinks-image {
    margin-left: -20px;
}

.drinks-text {
    margin-right: 20px;
}

/* IF THINGS BREAK DELETE EVERYTHING BELOW THIS */

/* .carousel-container {
    width: 150%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
} */

.carousel {
    display: flex;
    width: max-content;
    animation: scroll 10s linear infinite;
}

.carousel img {
    width: 200px;
    height: 150px;
    object-fit: cover;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Duplicate the images for seamless scrolling */

/* .carousel .image-wrapper {
    display: flex;
} */