/* Background styling */
body {
    background-image: url('background.png');
    background-size: contain;
    background-position: center top;
    background-repeat: repeat-y; /* Repeat the background image vertically */
    color: white;
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    position: relative; /* Ensure overlay is positioned correctly */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Dark overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    z-index: -1; /* Ensure it stays behind all content */
}

/* Add this style to make hyperlinks white and underlined */
a {
    color: white; /* Set the color to white */
    text-decoration: underline; /* Add underlines to the hyperlinks */
}

/* Centering and styling for header */
header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box; /* Ensure padding is included in the width */
}

#logo {
    width: 90%; /* Slightly smaller than 100% */
    max-width: 90%; /* Ensure it doesn't overflow */
    height: auto; /* Maintain aspect ratio */
}

/* Navigation styling */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Ensure it wraps on smaller screens */
    justify-content: center; /* Center the navigation items */
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 24px; /* Make the hyperlinks at the top bigger */
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Section styling */
section {
    padding: 60px 20px;
    box-sizing: border-box; /* Ensure padding is included in the width */
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* Make the body text bigger */
body {
    font-size: 18px;
}

ul.left-aligned-bullets {
    text-align: left;
    display: inline-block;
    margin: 0 auto;
}

/* Slideshow container */
#slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden; /* Ensure no overflow */
}

/* Hide all slides by default */
.mySlides {
    display: none;
}

/* Remove fading animation */
.mySlides {
    opacity: 1;
    transition: none;
}

/* Style the previous button */
.prev {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 0;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: black; /* Add black background */
    border-radius: 50%; /* Make the box circular */
    opacity: 0.8; /* Slightly transparent */
}

.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px 0 0 3px;
    user-select: none;
    background-color: black; /* Add black background */
    border-radius: 50%; /* Make the box circular */
    opacity: 0.8; /* Slightly transparent */
}

.prev:hover, .next:hover {
    opacity: 1; /* Fully opaque when hovered */
}

/* Adjust gallery images to maintain aspect ratio and fit within max height */
.mySlides img {
    max-height: 500px; /* Adjust this value as needed */
    width: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain; /* Ensures the image fits within the max-height while maintaining aspect ratio */
}

/* Responsive adjustments for menu image */
img[src="menunoprices.png"] {
   

/* Wrapper around the iframe to make it responsive and larger */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 80%; /* Increased height; closer to a 5:4 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px; /* Optional: space below the map */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Optional: Adjust the iframe styling for smaller devices */
@media (max-width: 600px) {
    .map-container {
        padding-bottom: 100%; /* Square aspect ratio for smaller screens */
    }
}

