/* =========================================
   1. RESET & BASICS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #fdfbf7;
    color: #333;
    line-height: 1.6;
}

/* =========================================
   2. COLORS & VARIABLES
   ========================================= */
:root {
    --primary-blue: #102A43;  /* Deep Navy */
    --accent-orange: #D35400; /* Burnt Orange */
    --gold: #F1C40F;          /* Sun Gold */
    --light-bg: #F0F4F8;      /* Light Gray */
    --card-bg: #FFF8E1;       /* Warm Cream */
}

/* =========================================
   3. TYPOGRAPHY
   ========================================= */
h1, h2, h3, .logo-text {
    font-family: 'Rye', serif;
    text-transform: uppercase;
}

/* =========================================
   4. LAYOUT UTILITIES
   ========================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   5. NAVIGATION BAR
   ========================================= */
.navbar {
    background-color: var(--primary-blue);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo-text {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    letter-spacing: 1px;
    margin-right: auto; 
    white-space: nowrap; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-right: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.lang-switch {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
    font-size: 0.9rem;
    padding: 5px;
}

.lang-switch:hover {
    color: var(--accent-orange);
}

.btn-nav {
    background-color: var(--accent-orange);
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-nav:hover {
    background-color: #e67e22;
}

/* =========================================
   6. HERO SECTION
   ========================================= */
.hero {
    background: linear-gradient(rgba(16, 42, 67, 0.8), rgba(16, 42, 67, 0.6)), url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-logo {
    max-width: 250px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: var(--accent-orange);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.1rem;
}

/* =========================================
   7. GENERAL SECTIONS
   ========================================= */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-blue);
    display: block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    margin: 10px auto;
}

/* =========================================
   8. MENU GRID & LISTS
   ========================================= */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid #e0d0b0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 5px solid var(--primary-blue);
}

.menu-card h3 {
    color: var(--accent-orange);
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.price {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-secondary {
    color: var(--primary-blue);
    text-decoration: none;
    border: 2px solid var(--primary-blue);
    padding: 10px 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

/* Full Menu List Styles */
.menu-list {
    list-style: none;
    text-align: left;
    padding: 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    border-bottom: 1px dashed #e0d0b0;
    padding-bottom: 5px;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: bold;
    color: var(--primary-blue);
}

.item-price {
    font-weight: bold;
    color: var(--accent-orange);
    white-space: nowrap;
    margin-left: 10px;
}

.item-desc {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-bottom: 12px;
    margin-top: -5px;
    text-align: left;
}

/* =========================================
   9. ABOUT SECTION
   ========================================= */
.bg-light {
    background-color: var(--light-bg);
}

.split {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-block { flex: 1; }
.image-block { flex: 1; }

/* =========================================
   10. FOOTER
   ========================================= */
footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    display: inline-block;
}

.map-container iframe {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    display: inline-block;
    color: white;
    background-color: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--accent-orange);
    color: white;
    transform: translateY(-3px);
}

.btn-footer {
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
}

.btn-footer:hover {
    background-color: var(--accent-orange);
    color: white;
}

.copyright {
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* =========================================
   11. MOBILE RESPONSIVENESS (FIXED)
   ========================================= */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 15px;
    }
    .logo-text {
        margin-right: 0;
        font-size: 1.4rem;
        white-space: nowrap;
    }
    .nav-actions {
        width: 100%;
        justify-content: center;
    }
    .nav-links { display: none; }
    .hero h1 { font-size: 2rem; }
    .split { flex-direction: column; }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-col h3 {
        display: block;
        border-bottom: none;
    }
}

/* =========================================
   13. LEGAL DISCLAIMERS
   ========================================= */
.disclaimer-box {
    background-color: #fdfbf7;
    border-top: 2px solid #e0d0b0;
    padding: 30px 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

.disclaimer-box p {
    margin-bottom: 10px;
    line-height: 1.4;
}

.warning-icon {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1rem;
    margin-right: 5px;
}

/* =========================================
   14. MENU CARD IMAGES
   ========================================= */
.menu-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e0d0b0;
    display: block;
}

/* =========================================
   14. MENU CARD IMAGES (FIXED)
   ========================================= */
.menu-card {
    /* This ensures nothing sticks out of the box */
    overflow: hidden; 
}

.menu-card-img {
    width: 100%;
    max-width: 100%; /* Forces image to fit container width */
    height: 200px;   /* Forces consistent height */
    object-fit: cover; /* Crops image neatly */
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e0d0b0;
    display: block;
}