/* --- 1. CORE STYLES --- */
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Source Sans 3', sans-serif; color: #333; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- 2. HEADER --- */
.main-header { padding: 10px 0; border-bottom: 1px solid #eee; background: #fff; }
.header-grid { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 80px; width: auto; transition: opacity 0.3s; }
.logo-link:hover { opacity: 0.8; }
.nav-group { text-align: right; }
.nav-links { list-style: none; display: flex; gap: 20px; margin: 0 0 5px 0; padding: 0; justify-content: flex-end; }
.nav-links a { text-decoration: none; color: #000; font-size: 14px; font-weight: 600; }

/* Dropdown Styles */
.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; background-color: #fff; min-width: 220px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1); z-index: 100; text-align: left; border: 1px solid #eee; top: 100%; right: 0; border-radius: 4px; overflow: hidden; }
.dropdown-content a { color: #333 !important; padding: 12px 16px; text-decoration: none; display: block; font-size: 14px; font-weight: 400 !important; border-bottom: 1px solid #f9f9f9; transition: background 0.2s; text-align: left; }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background-color: #f1f1f1; color: #007bff !important; }
.dropdown:hover .dropdown-content { display: block; }
.dropbtn::after { content: ' \25BE'; font-size: 10px; vertical-align: middle; opacity: 0.6; }
.header-contact { font-size: 13px; }
.phone-link { color: #007bff; text-decoration: underline; font-weight: bold; margin-right: 5px; }
.contact-label { color: #666; }

/* --- 3. FINAL FOOTER --- */
.main-footer { background-color: #f9f9f9; padding: 80px 0 0 0; border-top: 1px solid #eee; color: #555; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-logo { height: 60px; margin-bottom: 20px; }
.footer-col h4 { color: #111; font-family: 'Outfit', sans-serif; margin-bottom: 25px; font-size: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { text-decoration: none; color: #555; }
.footer-socials a { margin-right: 15px; color: #007bff; font-weight: bold; text-decoration: none; }
.footer-bottom { background-color: #fff; border-top: 1px solid #eee; padding: 25px 0; }
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; }
.legal-links a { margin-left: 20px; text-decoration: none; color: #999; }

/* --- WEEKLY MENU PAGE --- */
.menu-hero {
    height: 400px;
    background-image: url('../images/weekly_menu_hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-title {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-size: 48px;
    margin: 0;
    text-align: center;
}

.menu-content {
    padding: 60px 0;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.menu-content p {
    margin-bottom: 20px;
}

.menu-display {
    text-align: center;
    padding-bottom: 80px;
}

.menu-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.order-button-container {
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: #009cf0;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
}
