* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #5a8a6f;
    --accent: #7ba891;
    --accent-light: #9cbd9f;
    --neutral-light: #f0f3f1;
    --text-primary: #2d3d35;
    --text-secondary: #617068;
    --border: #d8dfd9;
    --white: #fff;
}

html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif; color: var(--text-primary); line-height: 1.6; }

/* HEADER */
header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 900; letter-spacing: -0.05em; color: var(--primary); }
.logo .accent { color: var(--accent); }
nav { display: none; gap: 2rem; font-weight: 500; }
nav a { text-decoration: none; color: var(--text-primary); transition: color 0.3s; position: relative; }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s; }
nav a:hover::after { width: 100%; }

.nav-mobile { display: none; position: fixed; top: 60px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); flex-direction: column; gap: 0; z-index: 99; animation: slideDown 0.3s ease; }
.nav-mobile.active { display: flex; }
.nav-mobile a { display: block; padding: 1rem 1.5rem; text-decoration: none; color: var(--text-primary); border-bottom: 1px solid var(--border); transition: background 0.3s; }
.nav-mobile a:hover { background: var(--neutral-light); color: var(--accent); }

.menu-toggle { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--primary); transition: color 0.3s; }
.menu-toggle.active { color: var(--accent); }

@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* HERO */
.hero-banner { width: 100%; background: var(--primary); position: relative; }
.hero-image { width: 100%; max-height: 200px; object-fit: cover; display: block; }

/* SECTIONS */
.intro { background: linear-gradient(135deg, #5a8a6f 0%, #6d998a 100%); color: var(--white); padding: 2.5rem 1.5rem; text-align: center; }
.intro h1 { font-size: 2rem; font-weight: 900; margin-bottom: 0.5rem; }
.intro p { font-size: 1rem; margin-bottom: 1rem; color: rgba(255, 255, 255, 0.9); font-style: italic; }

.about, .menu-section, .contact, #googleMapsSection { padding: 2.5rem 1.5rem; }
.about { background: var(--neutral-light); }
.contact, #googleMapsSection { background: var(--neutral-light); }

.specials { background: var(--primary); color: var(--white); padding: 2.5rem 1.5rem; }
.specials .section-title { color: var(--white); }

.section-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--primary); }
.about-text { font-size: 0.95rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1.5rem; }
.highlight { color: var(--accent); font-weight: 600; }

.cta-button { display: inline-block; background: var(--accent); color: var(--white); padding: 0.95rem 2rem; border-radius: 4px; text-decoration: none; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s; }
.cta-button:hover { background: #6d998a; transform: translateY(-2px); box-shadow: 0 8px 16px rgba(122, 168, 145, 0.3); }

/* MENU */
.menu-grid { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
.menu-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem; cursor: pointer; transition: all 0.3s; animation: slideIn 0.5s ease-out backwards; }
.menu-card:nth-child(n) { animation-delay: calc(0.1s * var(--card-index, 1)); }
.menu-card:hover, .menu-card:active { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(122, 168, 145, 0.15); }
.card-image { width: 100%; height: 180px; object-fit: cover; border-radius: 4px; margin: -1.5rem -1.5rem 1rem -1.5rem; display: block; }
.menu-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--primary); }
.menu-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* SPECIALS */
.specials-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
.special-item { background: rgba(255, 255, 255, 0.05); border-left: 3px solid var(--accent-light); padding: 1rem; border-radius: 4px; font-size: 0.95rem; }
.special-item strong { color: var(--accent-light); display: block; margin-bottom: 0.3rem; }

/* CONTACT */
.contact-info { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
.info-block { background: var(--white); padding: 1.5rem; border-radius: 6px; border-left: 3px solid var(--accent); }
.info-block h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.info-block p { font-size: 0.95rem; color: var(--text-secondary); }
.info-block a { color: var(--accent); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.info-block a:hover { color: #6d998a; }

/* FOOTER */
footer { background: var(--primary); color: rgba(255, 255, 255, 0.8); padding: 2rem 1.5rem; text-align: center; font-size: 0.85rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
footer p { margin-bottom: 0.5rem; }
footer a { color: var(--accent-light); text-decoration: none; }

.footer-link, .cookie-link { background: none; border: none; color: var(--accent-light); text-decoration: none; cursor: pointer; padding: 0; font-size: inherit; font-family: inherit; transition: text-decoration 0.3s; }
.footer-link:hover, .cookie-link:hover { text-decoration: underline; }

/* SCROLL TOP */
#scrollToTopBtn { position: fixed; bottom: 30px; right: 30px; background: var(--accent); color: var(--white); border: none; border-radius: 50%; width: 50px; height: 50px; font-size: 24px; cursor: pointer; display: none; z-index: 999; transition: all 0.3s; box-shadow: 0 4px 12px rgba(122, 168, 145, 0.3); }
#scrollToTopBtn.show { display: flex; align-items: center; justify-content: center; }
#scrollToTopBtn:hover { background: #6d998a; transform: translateY(-5px); }

/* COOKIE BANNER */
#cookieBanner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--primary); color: var(--white); padding: 1.5rem; z-index: 998; box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1); display: flex; justify-content: space-between; align-items: center; gap: 2rem; animation: slideUp 0.3s ease; }
#cookieBanner p { font-size: 0.9rem; line-height: 1.5; margin: 0; }
.cookie-buttons { display: flex; gap: 1rem; flex-shrink: 0; }
#cookieAccept, #cookieReject { padding: 0.6rem 1.2rem; border: none; border-radius: 4px; cursor: pointer; font-weight: 600; transition: all 0.3s; font-size: 0.9rem; }
#cookieAccept { background: var(--accent); color: var(--white); }
#cookieAccept:hover { background: #6d998a; }
#cookieReject { background: transparent; color: var(--accent-light); border: 1px solid var(--accent-light); }
#cookieReject:hover { background: rgba(156, 189, 159, 0.1); }

/* MODALS */
.modal, .menu-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); z-index: 1001; overflow-y: auto; }
.modal.active, .menu-modal.active { display: flex; align-items: center; justify-content: center; padding: 2rem 1rem; }
.modal-content, .menu-modal-content { background: var(--white); border-radius: 8px; max-width: 600px; width: 100%; max-height: 80vh; overflow-y: auto; padding: 2rem; position: relative; }
.menu-modal-content { max-width: 900px; max-height: 90vh; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--primary); transition: color 0.3s; }
.modal-close:hover { color: var(--accent); }

.modal-content h2 { font-size: 1.8rem; color: var(--primary); margin-bottom: 1rem; margin-top: 0; }
.modal-content h3 { font-size: 1.2rem; color: var(--primary); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.modal-content p { font-size: 0.95rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1rem; }
.modal-content a { color: var(--accent); text-decoration: none; }
.modal-content a:hover { text-decoration: underline; }

.menu-modal .category-header { background: linear-gradient(135deg, #5a8a6f 0%, #6d998a 100%); color: var(--white); padding: 2rem 1.5rem; border-radius: 8px 8px 0 0; margin: 0; text-align: center; }
.menu-modal .category-header h1 { font-size: 1.8rem; font-weight: 900; margin-bottom: 0.5rem; margin-top: 0; }
.menu-modal .category-header p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.9); font-style: italic; margin: 0; }
.menu-modal .menu-items { padding: 2rem 1.5rem; display: grid; gap: 1.5rem; }

.menu-item { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem; border-left: 4px solid var(--accent); transition: all 0.3s; }
.menu-item:hover { box-shadow: 0 4px 12px rgba(90, 138, 111, 0.1); border-left-color: #6d998a; }
.item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.75rem; gap: 1rem; }
.menu-item h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 0; }
.price { font-size: 1.3rem; font-weight: 700; color: var(--accent); white-space: nowrap; flex-shrink: 0; }
.item-description { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.item-allergies { font-size: 0.85rem; color: #d9534f; font-weight: 600; margin: 0.5rem 0 0 0; padding-top: 0.5rem; border-top: 1px solid var(--border); }

#googleMapsContainer { margin-top: 1.5rem; border-radius: 8px; overflow: hidden; }
#googleMapsContainer iframe { border: none; width: 100%; height: 450px; }

.allergen-legend { margin-top: 2rem; padding: 1rem; background: #f0f0f0; border-radius: 6px; font-size: 0.85rem; color: var(--text-secondary); }
.allergen-legend p { margin: 0.3rem 0; }

/* ANIMATIONS */
@keyframes slideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (min-width: 768px) {
    header { padding: 1.25rem 3rem; }
    .logo { font-size: 2rem; }
    .nav-desktop { display: flex; }
    .nav-mobile { display: none !important; }
    .menu-toggle { display: none; }
    .hero-image { max-height: 250px; }
    .facebook-link { width: 140px; height: 60px; }
    .intro, .about, .menu-section, .specials, .contact, #googleMapsSection { padding: 4rem 3rem; }
    .intro h1 { font-size: 3rem; }
    .intro p { font-size: 1.15rem; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .specials-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .contact-info { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .section-title { font-size: 2.2rem; }
    #cookieBanner { padding: 2rem 3rem; }
    .modal-content { padding: 3rem; }
    #scrollToTopBtn { width: 60px; height: 60px; font-size: 28px; }
    .menu-modal .menu-items { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (min-width: 1200px) {
    header { padding: 1.5rem 5rem; }
    .hero-image { max-height: 300px; }
    .intro, .about, .menu-section, .specials, .contact, #googleMapsSection { padding: 5rem; }
    .intro h1 { font-size: 3.5rem; }
    .intro p { font-size: 1.25rem; }
    .menu-grid { grid-template-columns: repeat(3, 1fr); }
    .specials-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-info { grid-template-columns: repeat(3, 1fr); }
    .menu-modal .menu-items { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}