/* Core Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Lato', sans-serif; color: #333; line-height: 1.6; }
h1, h2, h3 { font-family: 'Playfair Display', serif; color: #4a5d23; margin-bottom: 1rem; }
.container { max-width: 1200px; margin: auto; padding: 5rem 1.5rem; }
.bg-light { background: #fdfaf4; }
.text-center { text-align: center; }

/* Responsive Navigation */
nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; background: #fff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
nav .logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #800000; font-weight: bold; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 2rem; }
nav ul li a { text-decoration: none; color: #333; font-weight: bold; transition: 0.3s; }
.menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: #800000; }

/* Hero Section */
.hero { 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Front-Entrance.webp') center/cover no-repeat;
    height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
}
.hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 4rem); }
.btn { background: #800000; color: #fff; padding: 12px 30px; text-decoration: none; border-radius: 4px; display: inline-block; margin-top: 1rem; }

/* Grid & Flex Layouts */
.flex-row { display: flex; gap: 4rem; align-items: center; flex-wrap: wrap; }
.flex-row.reverse { flex-direction: row-reverse; }
.text-block, .img-block, .contact-info, .contact-map { flex: 1; min-width: 300px; }
img { width: 100%; border-radius: 5px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.menu-item { padding: 2rem; background: #fff; border-top: 4px solid #800000; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }

/* Footer */
footer { background: #222; color: #ccc; text-align: center; padding: 3rem 1rem; font-size: 0.9rem; }

/* MOBILE RESPONSIVE QUERIES */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav ul { 
        display: none; width: 100%; position: absolute; top: 100%; left: 0; 
        background: #fff; flex-direction: column; text-align: center; padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    nav ul.active { display: flex; }
    nav ul li { margin: 1rem 0; }
    .flex-row { gap: 2rem; }
    .hero { height: 50vh; }
}

/* Menu Gallery Specifics */
.menu-gallery {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.menu-page {
    width: 100%;
    max-width: 800px; /* Keeps the menu readable and not too stretched */
    background: #fff;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #ddd;
}

.menu-page img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0; /* Menus usually look better as flat pages */
}

.caption {
    margin-top: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: #800000;
    font-size: 1.2rem;
}

/* Ensure images in the About and Contact sections still look like photos */
.img-block img, .contact-map img {
    border-radius: 8px;
}

/* Mobile Tweak for Menu */
@media (max-width: 600px) {
    .menu-page {
        padding: 5px;
    }
}

/* Responsive Google Map */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    height: 0;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0;
}

/* Ensure the contact entrance image matches the map width */
.contact-map img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}