/* Βασικές Ρυθμίσεις Παλέτας */
:root {
    --primary: #2c302e;       /* Σκούρο ανθρακί  */
    --bg-color: #F5F2EB;      /* Beige για background */
    --accent: #606c38;        /* Λαδί για τα highlights */
    --grey: #707571;          /* Αχνό γκρι-πράσινο για τις περιγραφές */
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--primary);
}

/* Header (Banner & Logo) */
.header-container {
    position: relative;
    padding-bottom: 20px;
    z-index: 10;
}

.banner {
    width: 100%;
    height: 200px;
    background-image: linear-gradient(rgba(245, 242, 235, 0.5), rgba(245, 242, 235, 0.5)), url('images/banner.jpg'); 
    border-radius: 0 0 20px 20px;
    background-size: cover;
    background-position: center;
}

.logo {
    position: absolute;
    bottom: 80px; 
    left: 20px;
    width: 120px; 
    height: 120px; 
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    background-image: url('images/Logo.png'); 
    background-size: cover;
    border: 2px solid #fff;
}

/* Κουμπιά (Τηλέφωνο, Χάρτες, Γλώσσα) */
.action-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 20px 0 0;
}

.btn {
    padding: 8px 14px;
    border: 1px solid #dcd7cc;
    border-radius: 20px;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn i {
    color: var(--accent);
    font-size: 14px;
}

.btn:active {
    background-color: #eae5da;
}

/* Sticky Μπάρα Κατηγοριών */
.sticky-nav {
    position: sticky;
    top: 0;
    background-color: rgba(245, 242, 235, 0.98); 
    backdrop-filter: blur(8px);
    padding: 15px 15px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    z-index: 1000;
    gap: 15px;
    border-bottom: 1px solid #eae5da;
}

.sticky-nav::-webkit-scrollbar {
    display: none;
}

.category-btn {
    background: none;
    border: none;
    padding: 5px 5px;
    font-size: 16px;
    font-weight: 500;
    color: var(--grey);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s;
}

/* Η ενεργή κατηγορία υπογραμμίζεται με λαδί */
.category-btn.active {
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    font-weight: 700;
}

/* Το περιεχόμενο του Μενού */
.menu-content,
#menu-container {
    position: relative;
    z-index: 10; 
    padding: 20px;
}

.category-section {
    padding-top: 80px; 
    margin-top: -60px;
    margin-bottom: 40px;
}

.category-title {
    font-size: 22px;
    border-bottom: 2px solid #eae5da;
    padding-bottom: 8px;
    margin-bottom: 20px;
    color: var(--primary);
}

.menu-item {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    border: 1px solid #eae5da;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.item-name-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-name {
    font-weight: 700;
    font-size: 17px;
    margin: 0;
    color: var(--primary);
}

.item-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 17px;
    white-space: nowrap;
}

.item-desc {
    color: var(--grey);
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.4;
}

/* Διπλές Τιμές (Καλαμάκι / Τυλιχτό) */
.dual-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 13px;
    color: var(--grey);
}

.price-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-row b {
    color: var(--accent);
    font-size: 16px;
    min-width: 50px;
    text-align: right;
}

/* Κλάσεις για το Μη Διαθέσιμο */
.sold-out {
    opacity: 0.5;
    background-color: #faf9f6;
}

.sold-out .item-name {
    color: var(--grey);
    text-decoration: line-through;
}

/* Ταμπελάκια (Badges / Pills)  */
.unavailable-badge {
    display: inline-block;
    font-size: 11px;
    background-color: #f0f2eb; 
    color: var(--accent);       
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 4px;
    width: fit-content;
    border: 1px solid #d0d7c5;
}

.pill-sunday {
    background-color: var(--accent); 
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-top: 8px;
}

.pill-special {
    background-color: var(--accent); 
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-top: 6px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Υπότιτλος για τα Πιάτα ημέρας */
.category-subtitle {
    font-size: 16px;
    color: var(--accent);
    margin-top: -15px;
    margin-bottom: 25px;
    font-weight: 600;
    opacity: 0.9;
}

/* WATERMARKS) */
.bg-watermarks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;          
    pointer-events: none; 
    
    opacity: 0.35; 
    
    background-image: 
        url('images/elia.png'), 
        url('images/trapezi.png'), 
        url('images/revithi.png');
        
    background-position: 
        right -20px top 8%,      /* Ελιά: Πάνω δεξιά */
        left -20px bottom 2%,    /* Τραπέζι: Κάτω αριστερά */
        right -10px top 60%;     /* Ρεβύθι: Μέση δεξιά */
        
    background-repeat: no-repeat;
    
    background-size: 
        clamp(180px, 35vw, 300px) auto,  /* Ελιά: Ξεκινάει από 180px στο κινητό */
        clamp(200px, 45vw, 350px) auto,  /* Τραπέζι: Ξεκινάει από 200px στο κινητό */
        clamp(120px, 20vw, 200px) auto;  /* Ρεβύθι: Ξεκινάει από 120px στο κινητό */
}
