:root {
    --primary-red: #D32F2F;
    --accent-yellow: #FBC02D;
    --fresh-green: #388E3C;
    --dark-text: #2c3e50;
    --light-bg: #ffffff;
    --white: #ffffff;
    
    --efood: #e20613;
    --wolt: #009de0;
    --box: #ff6600;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Roboto', sans-serif; background-color: var(--light-bg); color: var(--dark-text); line-height: 1.6; overflow-x: hidden; scroll-behavior: smooth; }

/* --- HEADER --- */
header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.3s;
}

/* --- ΚΥΡΙΑ ΑΛΛΑΓΗ ΓΙΑ ΤΟ ΚΕΝΟ --- */
.header-container {
    display: flex;
    justify-content: center; /* Τα βάζουμε όλα στη μέση */
    align-items: center;
    width: 100%; 
    gap: 60px; /* ΕΔΩ ΡΥΘΜΙΖΕΙΣ ΤΗΝ ΑΠΟΣΤΑΣΗ (60px είναι μια καλή απόσταση) */
    padding: 0 20px;
}

.logo-link { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 120px; width: auto; display: block; transition: transform 0.3s; }
.logo-link:hover .logo-img { transform: scale(1.05); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    flex-wrap: nowrap; 
}

/* --- SHOP STATUS (LIVE) --- */
.shop-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 0.95rem;
    margin-right: 10px;
    white-space: nowrap; 
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    display: inline-block;
}

.status-dot.open {
    background-color: var(--fresh-green);
    box-shadow: 0 0 0 0 rgba(56, 142, 60, 0.7);
    animation: pulseGreen 2s infinite;
}

.status-dot.closed {
    background-color: var(--primary-red);
}

@keyframes pulseGreen {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 142, 60, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(56, 142, 60, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 142, 60, 0); }
}

/* --- BUTTONS (HEADER) --- */
.lang-btn {
    background: none;
    border: 2px solid var(--dark-text);
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: 0.3s;
}
.lang-btn:hover { background: var(--dark-text); color: white; }

.nav-menu-btn {
    background-color: var(--accent-yellow);
    color: #222;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(251, 192, 45, 0.3);
    white-space: nowrap;
}
.nav-menu-btn:hover { background-color: #f9a825; transform: translateY(-2px); }

.nav-phone {
    background-color: var(--primary-red);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2);
    white-space: nowrap;
}
.nav-phone:hover { background-color: #b71c1c; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(211, 47, 47, 0.4); }

/* ΔΕΥΤΕΡΟ ΤΗΛΕΦΩΝΟ (ΚΙΝΗΤΟ) */
.mobile-num {
    background-color: #2c3e50; 
}
.mobile-num:hover {
    background-color: #1a252f;
}

/* --- CATALOG CTA SECTION --- */
.catalog-cta-section {
    background-color: #fff9c4; 
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-text h3 {
    color: var(--dark-text);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.cta-text p {
    color: #666;
    font-size: 1rem;
}

.view-catalog-btn-large {
    background-color: var(--dark-text);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.view-catalog-btn-large:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1574071318508-1cdbab80d002?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: inherit;
    background-size: cover;
    animation: zoomHero 20s infinite alternate;
    z-index: 0;
}

@keyframes zoomHero {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.35); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }

.hero-title { font-family: 'Pacifico', cursive; font-size: 4rem; margin-bottom: 10px; line-height: 1.2; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-subtitle { font-size: 1.4rem; margin-bottom: 40px; font-weight: 300; opacity: 1; letter-spacing: 1px; text-shadow: 1px 1px 5px rgba(0,0,0,0.6); }

.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 25px; }

/* Phones Group in Hero */
.phones-hero {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-main-cta {
    background-color: var(--accent-yellow); color: #222; padding: 18px 45px; font-size: 1.2rem; border-radius: 50px;
    text-decoration: none; font-weight: 900; text-transform: uppercase; box-shadow: 0 4px 20px rgba(251, 192, 45, 0.4);
    transition: 0.3s; letter-spacing: 1px;
}
.btn-main-cta:hover { background-color: #f9a825; transform: translateY(-3px); box-shadow: 0 6px 25px rgba(251, 192, 45, 0.6); }

.btn-mobile {
    background-color: white;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}
.btn-mobile:hover {
    background-color: var(--primary-red);
    color: white;
}

.divider { display: flex; align-items: center; width: 100%; color: rgba(255,255,255,1); font-size: 0.9rem; margin: 10px 0; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.divider::before, .divider::after { content: ""; flex: 1; border-bottom: 1px solid rgba(255,255,255,0.6); }
.divider span { padding: 0 10px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

.delivery-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.app-btn { display: flex; align-items: center; gap: 8px; padding: 12px 25px; border-radius: 8px; color: white; text-decoration: none; font-weight: bold; font-size: 1rem; transition: all 0.2s ease; min-width: 120px; justify-content: center; box-shadow: 0 4px 6px rgba(0,0,0,0.2); }
.app-btn:hover { transform: translateY(-3px); filter: brightness(1.1); }
.btn-efood { background-color: var(--efood); }
.btn-wolt { background-color: var(--wolt); }
.btn-box { background-color: var(--box); }
.btn-icon { font-family: serif; font-weight: 900; background: rgba(255,255,255,0.2); width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.8rem; }

.section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-red); font-family: 'Pacifico', cursive; }

.menu-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn {
    background: none; border: 2px solid var(--primary-red); color: var(--primary-red); padding: 10px 30px;
    font-size: 1.1rem; border-radius: 50px; cursor: pointer; transition: 0.3s; font-family: 'Roboto', sans-serif; font-weight: bold;
}
.tab-btn:hover, .tab-btn.active { background-color: var(--primary-red); color: white; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2); }

.menu-content { display: none; }
.menu-content.active-content { display: block; animation: fadeIn 0.5s ease-in; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- MENU LIST STYLES (ΜΕΓΑΛΑ ΚΟΥΤΙΑ) --- */
.menu-list { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
    gap: 30px; 
    width: 95%; 
    max-width: 1300px; 
    margin: auto; 
}

.menu-item { 
    background: white; 
    padding: 40px;
    border-radius: 15px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); 
    border-left: 6px solid var(--accent-yellow); 
    transition: 0.3s; 
    min-height: 200px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }

.item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #eee; }
.item-name { font-weight: bold; font-size: 1.2rem; color: #222; }
.item-desc { color: #666; font-size: 0.95rem; }

/* PIZZA SIZE GUIDE & PRICES - NEW STYLE (CARDS) */
.pizza-size-guide {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 95%;
    max-width: 1000px;
    margin: 0 auto 30px auto;
    flex-wrap: wrap;
}

.size-card {
    background: white;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.size-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.large-card { border-left: 5px solid var(--primary-red); }
.large-card .card-icon { background-color: rgba(211, 47, 47, 0.1); color: var(--primary-red); }
.large-card .size-title { color: var(--primary-red); }

.xlarge-card { border-left: 5px solid var(--accent-yellow); }
.xlarge-card .card-icon { background-color: rgba(251, 192, 45, 0.15); color: #f57f17; }
.xlarge-card .size-title { color: #f57f17; }

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-info { display: flex; flex-direction: column; }

.size-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.size-details {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: #555;
    gap: 2px;
}

.pieces {
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dough-label {
    font-size: 0.9rem; 
    font-weight: 700;  
    color: #333;       
    font-style: normal;
}

/* Pizza Prices Tags */
.pizza-prices { display: flex; gap: 10px; }

.p-tag {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1rem;
    min-width: 65px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.p-tag.l { color: var(--primary-red); border: 1px solid var(--primary-red); background: #fff5f5; }
.p-tag.xl { color: #e65100; border: 1px solid var(--accent-yellow); background: #fffde7; }

/* CREATE YOUR OWN STYLES */
.create-own {
    grid-column: 1 / -1;
    background: #fffcf5;
    border: 2px dashed var(--accent-yellow);
    border-left: none;
    margin-top: 20px;
}

.create-header { text-align: center; margin-bottom: 20px; }
.create-title { color: var(--primary-red); font-size: 1.5rem; margin-bottom: 10px; }
.create-prices { display: flex; justify-content: center; gap: 20px; margin-top: 10px; color: #333; }

.extras-table { display: grid; gap: 10px; }

.extra-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 8px 0;
    border-bottom: 1px dotted #ccc;
    font-size: 0.95rem;
}

.header-row { font-weight: bold; color: var(--primary-red); border-bottom: 2px solid var(--primary-red); }
.price-col { text-align: center; font-weight: bold; }

/* Other item prices (non-pizza) */
.item-price { color: var(--primary-red); font-weight: bold; font-size: 1.1rem; }

.bg-pattern { background-color: #ffffff; }
.split-container { display: flex; align-items: center; gap: 50px; width: 90%; max-width: 1100px; margin: auto; }
.story-text { flex: 1; }
.story-image { flex: 1; }
.story-image img { width: 100%; border-radius: 12px; box-shadow: 15px 15px 0 var(--accent-yellow); transition: transform 0.3s; }
.story-image img:hover { transform: scale(1.02); }

.location-section { text-align: center; padding: 60px 0; background: white; }
.map-wrapper { width: 90%; max-width: 1000px; height: 350px; margin: 20px auto 0; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

footer { background: var(--primary-red); color: white; text-align: center; padding: 40px 0; font-size: 1rem; }
.footer-content { display: flex; flex-direction: column; gap: 15px; align-items: center; }
.social-icon { color: white; text-decoration: none; font-weight: bold; font-size: 1.1rem; display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; border: 2px solid rgba(255,255,255,0.3); border-radius: 50px; transition: 0.3s; }
.social-icon:hover { background-color: white; color: var(--primary-red); border-color: white; }

.floating-call { display: none; position: fixed; bottom: 20px; right: 20px; background: var(--fresh-green); color: white; width: 60px; height: 60px; border-radius: 50%; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 2000; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(56, 142, 60, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(56, 142, 60, 0); } 100% { box-shadow: 0 0 0 0 rgba(56, 142, 60, 0); } }

/* --- CATALOG MODAL (FULLSCREEN) --- */
.catalog-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: 5% auto;
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.close-modal {
    color: #f1f1f1;
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
    transition: 0.3s;
}
.close-modal:hover { color: var(--primary-red); }

/* --- MOBILE RESPONSIVE FIXES (ΒΕΛΤΙΩΣΗ ΓΙΑ ΚΙΝΗΤΑ) --- */
@media (max-width: 768px) {
    /* 1. Header & Logo */
    header {
        padding: 5px 0; /* Μικρότερο padding πάνω-κάτω */
    }
    .header-container { 
        width: 98%; 
        flex-direction: column; 
        gap: 5px; /* Μικρότερο κενό ανάμεσα σε λογότυπο και κουμπιά */
    }
    .logo-img {
        height: 60px; /* Πολύ μικρότερο λογότυπο για να κερδίσουμε χώρο */
    }

    /* 2. Τακτοποίηση Κουμπιών Header */
    .header-actions { 
        width: 100%; 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 6px; 
    }
    
    .shop-status { 
        width: 100%; 
        justify-content: center; 
        margin-right: 0; 
        margin-bottom: 2px; 
        font-size: 0.8rem; /* Μικρότερα γράμματα */
    }

    /* Μικρότερα κουμπιά στο μενού για να χωράνε */
    .nav-menu-btn, .nav-phone, .lang-btn {
        padding: 6px 10px;
        font-size: 0.85rem;
        height: 36px; /* Σταθερό ύψος για ομοιομορφία */
        display: flex;
        align-items: center;
    }
    .nav-phone span { display: block; }
    
    /* 3. Hero Section (Κεντρική Εικόνα) - ΠΙΟ ΚΟΝΤΗ */
    .hero {
        height: auto; /* Όχι σταθερό ύψος, να προσαρμόζεται στο περιεχόμενο */
        min-height: 300px; /* Ελάχιστο ύψος για να μη φαίνεται 'πατημένο' */
        padding: 40px 0; /* Λίγο 'αέρα' πάνω κάτω */
        background-position: center bottom; /* Να εστιάζει στο κέντρο/κάτω της φώτο */
    }
    .hero-title { 
        font-size: 2.2rem; 
        margin-bottom: 5px;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    /* Κουμπιά μέσα στην εικόνα */
    .phones-hero {
        gap: 8px;
    }
    .btn-main-cta {
        padding: 10px 20px;
        font-size: 0.95rem;
        width: 100%; /* Να πιάνουν όλο το πλάτος στο κινητό για ευκολία */
        max-width: 280px; /* Αλλά όχι τεράστια */
        box-sizing: border-box;
    }

    .delivery-buttons {
        gap: 8px;
    }
    .app-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
        min-width: auto;
        flex: 1; /* Να μοιράζονται το χώρο */
    }

    /* 4. Διόρθωση Κουτιών Μενού */
    .menu-list {
        grid-template-columns: 1fr; 
        gap: 15px;
        width: 100%;
        padding: 0 10px;
    }

    .menu-item {
        padding: 20px;
        min-height: auto; 
    }

    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .item-name {
        font-size: 1.1rem;
    }

    /* 5. Mobile Cards for Size Guide */
    .pizza-size-guide {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .size-card {
        width: 100%;
        min-width: auto;
        padding: 15px;
    }

    .pizza-prices {
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
        margin-top: 5px;
    }

    /* 6. Footer & Floating */
    .floating-call { display: flex; }
    
    .split-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px;
    }
    .story-image img { 
        box-shadow: 10px 10px 0 var(--accent-yellow); 
    }
    
    /* 7. Catalog CTA (Κίτρινο κουτί) */
    .catalog-cta-section {
        padding: 20px 10px;
    }
    .cta-text h3 { font-size: 1.2rem; }
    .cta-text p { font-size: 0.9rem; }
}

.scroll-element { opacity: 0; transition: all 1s ease-out; }
.scroll-element.fade-up { transform: translateY(50px); }
.scroll-element.scrolled { opacity: 1; transform: translateY(0); }}