/* --- Γενικές Ρυθμίσεις --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Arial, sans-serif; background-color: #f4f4f4; color: #333; line-height: 1.6; }

/* --- Header & Logo Fix --- */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px; /* Ύψος για να χωράνε οι 2 γραμμές κειμένου */
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    height: 75px;      
    width: 75px;       
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain !important;
}

.header-right { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.contact-info { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-end; 
    gap: 4px;
}

/* Ίδιο στυλ για Διεύθυνση και Τηλέφωνο */
.phone-link { 
    text-decoration: none; 
    color: #d35400; 
    font-weight: bold; 
    font-size: 1rem;
    white-space: nowrap;
    transition: 0.3s;
}

.phone-link:hover { color: #e67e22; }

#lang-switch {
    background: #2c3e50; color: white; border: none; padding: 8px 12px;
    border-radius: 20px; cursor: pointer; font-weight: bold; font-size: 0.8rem;
}

/* --- Slideshow (Optimized for 720x1080) --- */
.slideshow {
    margin-top: 100px;
    width: 100%;
    height: 75vh;
    background: #000;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-container { height: 100%; aspect-ratio: 720 / 1080; position: relative; }
.video-slide { position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s; }
.video-slide.active { opacity: 1; }
.prev-btn, .next-btn { position: absolute; top: 50%; background: rgba(0,0,0,0.2); color: white; border: none; padding: 15px; cursor: pointer; z-index: 10; }
.next-btn { right: 0; } .prev-btn { left: 0; }

/* --- Menu Section --- */
#menu-section { padding: 40px 5%; max-width: 1200px; margin: 0 auto; }
.cat-title { text-align: center; font-size: 2.2rem; color: #2c3e50; margin-bottom: 30px; border-bottom: 3px solid #d35400; padding-bottom: 10px; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.menu-item { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.menu-item h3 { color: #d35400; margin-bottom: 5px; }

/* --- Footer --- */
footer { text-align: center; padding: 50px 20px; background: #2c3e50; color: white; margin-top: 50px; }
.footer-link { color: #e67e22; text-decoration: none; font-weight: bold; }

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
    .main-header { height: 110px; padding: 0 10px; }
    .logo { height: 55px; width: 55px; }
    .phone-link { font-size: 0.9rem; }
    .contact-info { display: flex !important; } /* Εμφάνιση και στο κινητό */
    .header-right { gap: 8px; }
    .slideshow { margin-top: 110px; height: 60vh; }
}
