/* ========================================
1.  VARIABLES & RESET
======================================== */
:root {
    --primary-color: #1F332C;    /* Dark slate green from logo */
    --secondary-color: #AA804C;  /* Bronze/Gold accent from 'O' */
    --accent-color: #AA804C;     
    --bg-color: #F2EAD6;         /* Cream background from logo */
    --surface-color: #ffffff;
    --text-main: #1F332C;
    --text-muted: #53635d;
    --nav-height: 65px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

/* Language Toggle CSS */
body.lang-en .lang-el { display: none !important; }
body:not(.lang-en) .lang-en { display: none !important; }

/* ========================================
2. HEADER & LOGO
======================================== */
.main-header {
    background: var(--bg-color);
    padding: 30px 20px 20px;
    text-align: center;
}

.logo-container {
    text-align: center;
    padding: 10px 0;
}

.text-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color); 
    margin: 0;
    line-height: 1;
    letter-spacing: 5px; 
}

.accent-o {
    color: var(--accent-color);
}

.logo-subtitle {
    font-size: 0.95rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-top: 10px;
    font-weight: 400;
}

.logo-location {
    font-size: 0.8rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-top: 2px;
}

/* Language Switcher */
.lang-switcher {
    margin-top: 20px;
    display: inline-flex;
    background: rgba(31, 51, 44, 0.1);
    border-radius: 25px;
    overflow: hidden;
}
.lang-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}
.lang-btn.active {
    background: var(--primary-color);
    color: var(--bg-color);
}

/* ========================================
3. STICKY NAVIGATION (HORIZONTAL SCROLL)
======================================== */
.category-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(242, 234, 214, 0.95); /* matching bg-color */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(31, 51, 44, 0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.nav-scroll-container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 12px 10px;
    gap: 10px;
    scrollbar-width: none; 
}
.nav-scroll-container::-webkit-scrollbar { display: none; }

.nav-item {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 25px;
    border: 1px solid rgba(31, 51, 44, 0.2);
    transition: var(--transition);
}
.nav-item.active { 
    background: var(--primary-color); 
    color: var(--bg-color); 
    border-color: var(--primary-color);
}

/* ========================================
4. MENU SECTIONS & ITEMS
======================================== */
.menu-container {
    padding: 30px 15px;
    max-width: 600px; 
    margin: 0 auto;
}

.menu-section {
    margin-bottom: 45px;
    scroll-margin-top: 80px; 
}

.section-title {
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.sub-category-title {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(31, 51, 44, 0.15);
}
.menu-item:last-child {
    border-bottom: none;
}

.info-item {
    background: rgba(170, 128, 76, 0.1);
    border-radius: 8px;
    padding: 15px;
    border: none;
    margin-top: 15px;
}

.item-info { flex: 1; padding-right: 15px; }
.item-name { 
    font-size: 1.1rem; 
    font-weight: 600; 
    margin-bottom: 4px; 
    color: var(--primary-color);
}
.item-desc { font-size: 0.9rem; color: var(--text-muted); }
.item-price { font-weight: 600; color: var(--accent-color); font-size: 1.1rem; white-space: nowrap; }

/* ========================================
5. BACK TO TOP BUTTON & FOOTER
======================================== */
.back-to-top {
    position: fixed; bottom: 25px; right: 25px; width: 50px; height: 50px;
    background-color: var(--accent-color); color: #ffffff; border: none;
    border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,0.2); cursor: pointer;
    display: flex; align-items: center; justify-content: center; z-index: 9999; 
    opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition);
}
.back-to-top svg { width: 24px; height: 24px; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.menu-footer { 
    text-align: center; 
    padding: 40px 20px 30px; 
    border-top: 1px solid rgba(31, 51, 44, 0.1); 
    background-color: var(--bg-color);
}
