/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Hiragino Kaku Gothic Std';
    src: url('./font/hiragino-kaku-gothic-std-w8.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

body {
    font-family: 'Hiragino Kaku Gothic Std', Arial, sans-serif;
    background-color: #3f1f12;
    color: #fff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap; /* Allow wrapping for small screens */
}

.navbar .logo img {
    height: 100px;
}

.navbar .address a {
    font-size: 20px;
    color: #3f1f12;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Hiragino Kaku Gothic Std', Arial, sans-serif;
    text-align: center; /* Center-align for smaller screens */
}

.navbar .contact {
    font-size: 20px;
    color: #3f1f12;
    font-weight: bold;
    font-family: 'Hiragino Kaku Gothic Std', Arial, sans-serif;
    text-align: center; /* Center-align for smaller screens */
}

/* Divider */
.divider {
    height: 10px;
    background-color: #faaf40;
}

/* Content Container */
.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px; /* Space between sections */
    max-width: 90vw; /* Content adapts to 90% of viewport width */
    margin: 20px auto;
}

/* Menu Banner */
.menu-banner {
    background-color: #e53659;
    position: relative;
    width: 15%; /* Takes 25% of the container's width */
    height: 100%;
    padding: 30px 20px;
    z-index: 1;
    overflow: hidden;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-banner .banner-content {
    color: white;
}

.menu-banner .banner-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.menu-banner .banner-content p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    white-space: pre-line; /* Ensure text breaks as intended */
}

.menu-banner .banner-content iframe {
    margin-top: 10px; /* Add some space between the text and the map */
    border-radius: 5px; /* Optional: Add rounded corners to the map */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visual effect */
}

/* Scrollable Menu */
.scrollable-menu {
    background-color: #fff;
    padding: 0; /* Remove padding to make images full-width */
    width: 70%; /* Takes up 70% of the container's width */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow-y: auto; /* Enable vertical scrolling */
    height: calc(95vh - 150px); /* Adjust to 95% of viewport height, minus offset for navbar and margins */
    margin: 0 auto; /* Center horizontally */
    color: #3f1f12;
}

.scrollable-menu h1 {
    text-align: center;
    font-size: 24px;
    margin: 10px 0; /* Space above and below the heading */
    color: #3f1f12;
}

.menu-images {
    display: flex;
    flex-direction: column; /* Stack images vertically */
    align-items: center; /* Center images within the scrollable menu */
    gap: 0; /* Remove unnecessary gaps between images */
}

.menu-images img {
    width: 100%; /* Make images fill the full width of the container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Prevent inline spacing issues */
    margin: 0; /* No extra margin */
    border-radius: 0; /* No rounded corners for full-width images */
    box-shadow: none; /* Clean appearance */
    transition: none; /* Remove hover effects for better usability */
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Stack Navbar Content Vertically */
    .navbar {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
    }

    .navbar .address a,
    .navbar .contact {
        text-align: center;
        margin-bottom: 10px; /* Space between items */
    }

    /* Stack Content Container */
    .content-container {
        flex-direction: column; /* Stack sections vertically */
        align-items: center;
    }

    .menu-banner {
        width: 90%; /* Full width for the banner on smaller screens */
    }

    .scrollable-menu {
        width: 90%; /* Full width for scrollable menu on smaller screens */
        height: calc(100vh - 200px); /* Dynamically adjust height for small screens */
    }
}
