/* Apply background color to the entire page */
body {
    background-color: #fff5e6;  /* Set the background color for the whole page */
    margin: 0;
    padding: 0;
    font-family: "Marker Felt", sans-serif;  /* Ensure consistent font across the page */
}

/* Splash Screen */
#splash-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fbae17;
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 1;
    transition: opacity 1.5s ease;  /* Fade out over 1.5 seconds */
}

/*  bar background for logo */
#splash-screen .logo-bar {
    background-color: #584224;  /*  background color for the bar */
    height: 200px;              /* Height of the bar */
    width: 100vw;               /* Full width (from right to left) */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Logo styling */
#splash-screen img {
    max-height: 100px;  /* Logo size set to 100px */
    margin: auto;
    z-index: 2; /* Ensure logo stays above the background bar */
}

/* General styling */
.menu-title {
    text-align: center;
    color: #544329;
    font-size: 2em;
    margin-bottom: 20px;
}

/* Header Styling */
header {
    background-color: #584224;  /* Background color for the header */
    padding: 20px 0;  /* Adjust the padding to make the header taller */
}

.header-container {
    display: flex;
    justify-content: center;  /* Center the logo horizontally */
    align-items: center;      /* Align the logo vertically (if needed) */
}

.logo {
    max-height: 50px;  /* Adjust logo size */
}

/* Menu Sections - Align buttons vertically */
.menu-sections {
    display: block;  /* Make sure buttons stack vertically */
    width: 100%;
}

.menu-section {
    margin: 10px 0;  /* Vertical space between buttons */
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.menu-section img {
    max-height: 65px;  /* Set max height for button images */
    width: 300px;  /* Keep width proportional to height */
    transition: transform 0.3s;
}

.menu-section:hover img {
    transform: scale(1.05);  /* Scale up the button on hover */
}

/* Hide menu items initially */
.menu-items {
    display: none;
    margin-top: 10px;
    padding: 10px 20px;  /* Default padding for smaller screens */
    font-size: 1.1em;
    font-family: "Marker Felt", sans-serif;  /* Apply Marker Felt font */
    background-color: #fff4e5;  /* Light background color for item section */
    border-radius: 5px;
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .menu-items {
        padding: 10px 200px;  /* Increased padding for larger screens */
    }
}

/* Menu items layout */
.menu-item {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;  /* Increased margin around each item */
    color: #584224;
    padding: 5px 0;
    border-bottom: 1px solid #e5e5e5;  /* Optional: light border between items */
    gap: 10px;
}

.menu-item span:first-child {
    text-align: left;  /* Align name to the left */
}

.menu-item span:last-child {
    text-align: right;  /* Align price to the right */
}
/* Google Map container */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;  /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .map-container {
        width: 50%;  /* Reduce width on larger screens to 50% */
        margin: 0 auto;  /* Center the map container */
        padding-bottom: 50%;  /* Adjust the aspect ratio slightly if desired */
    }
}
/* Footer Styling */
footer {
    background-color: #fbae17;
    padding: 20px;
    text-align: center;
    color: #544329;
    margin: 0;  /* Remove margin from the footer */
}

footer a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #584224;
    color: #fff4e5;
    text-decoration: none;
    border-radius: 5px;
}

footer a:hover {
    background-color: #6c5438;
}



/* Style for French Tacos price header */
.price-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: #584224;
    margin-bottom: 10px;
    padding-right: 25px;  /* Align with prices */
    text-align: right;    /* Ensure the headers are right-aligned */
}

.price-header span:first-child {
    text-align: left;     /* Ensure the item name stays left-aligned */
    flex: 1;              /* Flex to take up available space */
}

.price-header span {
    width: 70px;          /* Ensure both Classic and Supreme® have the same width */
    text-align: center;   /* Align prices to the center */
}

/* Style for menu items under French Tacos */
.menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-right: 20px;  /* Align with prices */
}

.menu-item span:first-child {
    text-align: left;
    flex: 1;              /* Allow the name to take up more space */
}

.menu-item span:nth-child(2), .menu-item span:nth-child(3) {
    width: 70px;
    text-align: center;    /* Center-align Classic and Supreme® prices */
}

/* Responsive adjustment for larger screens */
@media (min-width: 768px) {
    .price-header span, .menu-item span:nth-child(2), .menu-item span:nth-child(3) {
        width: 80px;       /* Slightly wider for larger screens */
    }
}
/* Styling for subcategory titles */
.subcategory-title {
    font-size: 1.5em;
    color: #fbae17;
    margin: 15px 0 5px;
    text-align: left;
}

/* Adjust styling for each menu item under subcategories */
.subcategory .menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #584224;
}