/* ==========================================================================
   VAFLAKI - DIGITAL MENU CSS (No Images, Base Version with Lists)
   ========================================================================== */

/* TABLE OF CONTENTS
   --------------------------------------------------------------------------
   1. CSS Variables & Base Styles
   2. Typography
   3. Header Styles
   4. Main Layout & Grid (Mobile First + Desktop 2-column)
   5. Card Styles (Content, Bilingual Text)
   6. Make Your Own Section (Base & Lists)
   7. Footer
   ========================================================================== */

/* ==========================================================================
   1. CSS Variables & Base Styles
   ========================================================================== */
:root {
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --accent-color: #e63946;
    --border-color: #f0f0f0;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --border-radius: 15px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   2. Typography
   ========================================================================== */
h1, h2, h3 {
    font-weight: 700;
}

/* ==========================================================================
   3. Header Styles
   ========================================================================== */
.menu-header {
    text-align: center;
    padding: 2.5rem 1rem;
    background-color: #fcfcfc;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.menu-header h1 {
    font-size: 2.8rem;
    color: var(--accent-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.menu-header p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* ==========================================================================
   4. Main Layout & Grid (Mobile First)
   ========================================================================== */
.menu-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem 4rem 1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ==========================================================================
   5. Card Styles
   ========================================================================== */
.menu-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 1024px) {
    .menu-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
}

.card-content {
    padding: 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 10px;
}

.card-title {
    font-size: 1.3rem;
    color: var(--text-main);
    line-height: 1.2;
}

.card-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-color);
    white-space: nowrap; 
}

.card-desc {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.card-desc.gr {
    color: var(--text-main);
}

.card-desc.en {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0;
}

/* ==========================================================================
   6. Make Your Own Section (Base & Lists)
   ========================================================================== */
.make-your-own {
    margin-top: 4rem;
    padding: 2.5rem 1rem;
    background-color: #fcfcfc;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
}

.make-your-own h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.en-subtitle {
    font-size: 1.2rem; 
    color: var(--text-muted); 
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
}

.myo-base {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px dashed var(--accent-color);
    text-align: center;
    margin-bottom: 3rem;
}

/* Λίστες Υλικών */
.ingredients-section {
    margin-bottom: 2.5rem;
}

.ingredients-section h3 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.en-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: normal;
    font-style: italic;
}

.ingredients-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

/* Στο desktop τις λίστες των υλικών τις κάνουμε 2 στήλες */
@media (min-width: 768px) {
    .ingredients-list {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 3rem;
    }
}

.ingredient-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.ingredient-names {
    display: flex;
    flex-direction: column;
}

.ingredient-names .gr {
    font-size: 1rem;
    color: var(--text-main);
}

.ingredient-names .en {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.ingredient-price {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* --- FOOTER (Powered By) --- */
.menu-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-footer a {
    text-decoration: none;
    color: #8c8c9e;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.menu-footer a span {
    font-weight: 600;
    color: var(--accent-color);
}

.menu-footer a:hover span {
    color: var(--text-main);
}
