:root {
    --sunflower-yellow: #FFD700;
    --cafe-brown: #5D4037;
    --leaf-green: #4CAF50;
    --dark-black: #1A1A1A;
    --soft-cream: #FDFBF7;
    --sold-out-red: #e74c3c; /* Added for Sold Out state */
}

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

body { 
    font-family: 'Poppins', sans-serif; 
    background-color: var(--soft-cream);
    color: var(--dark-black);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: auto; }
.section { padding: 80px 0; text-align: center; }

header {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky; top: 0; z-index: 1000;
}

nav { display: flex; justify-content: space-between; align-items: center; }

.nav-logo { 
    height: 100px; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: var(--cafe-brown); font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--leaf-green); }

.hero {
    background: #e4e2d5 url('images/breakfast-bg.jpg') no-repeat center center/contain;
    height: 80vh;
    display: flex; align-items: center; justify-content: center;
}

.hero-overlay {
    background: rgba(0,0,0,0.3);
    width: 100%; height: 100%;
    display: flex; align-items: center; text-align: center; color: #fff;
}

.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--sunflower-yellow); }

/* --- MENU SECTION UPDATES --- */

.menu-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    margin-top: 40px; 
    align-items: start;
}

.menu-card { 
    background: white; 
    padding: 30px; 
    border-bottom: 5px solid var(--sunflower-yellow); 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left; /* Better for reading lists of food */
}

.menu-card h3 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: var(--cafe-brown);
    font-size: 1.8rem;
}

/* Individual Food Item Styling */
.menu-item {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

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

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item strong { color: var(--cafe-brown); font-size: 1.1rem; }
.menu-item span { color: var(--leaf-green); font-weight: 600; }
.menu-item p { font-size: 0.9rem; color: #666; margin-top: 5px; }

/* Sold Out States */
.menu-item.sold-out {
    opacity: 0.4;
    filter: grayscale(100%);
    pointer-events: none;
}

.sold-out-badge {
    background: var(--sold-out-red);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
}

.special-highlight {
    background-color: var(--sunflower-yellow) !important;
    border: 3px solid var(--cafe-brown);
    transform: scale(1.05);
    z-index: 10;
}

.badge {
    background: var(--leaf-green);
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 5px;
    text-transform: uppercase;
    display: block;
    width: fit-content;
    margin: 0 auto 15px auto;
}

/* --- CONTACT & FOOTER --- */

.contact-form { display: flex; flex-direction: column; gap: 15px; max-width: 500px; margin: auto; }
.contact-form input, .contact-form textarea { padding: 15px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; }
.btn-submit { background: var(--cafe-brown); color: white; padding: 15px; border: none; cursor: pointer; border-radius: 5px; font-weight: 600; }

footer { background: var(--dark-black); color: white; padding: 40px 0; text-align: center; margin-top: 40px; }