/* Βασικές Ρυθμίσεις & Ομαλή Κύλιση */
html { scroll-behavior: smooth; }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-tap-highlight-color: transparent; /* ΤΟ ΜΥΣΤΙΚΟ ΓΙΑ ΝΑ ΦΥΓΕΙ ΤΟ ΜΠΛΕ ΧΡΩΜΑ ΣΤΑ ΚΙΝΗΤΑ */
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* ---------------------------------
   Μενού Πλοήγησης (Navbar)
------------------------------------ */
.navbar {
    background-color: #2c2c2c;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #FFC107;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 15px; 
    text-decoration: none; 
}

.navbar .logo img {
    height: 50px; 
    width: auto;
    transition: transform 0.3s ease;
}

.navbar .logo span {
    color: #FFC107; 
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.navbar .logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

@media (hover: hover) {
    .nav-links a:hover { color: #FFC107; }
}

/* ---------------------------------
   Μενού Γλωσσών (Dropdown)
------------------------------------ */
.lang-menu {
    position: relative;
    display: inline-block;
    padding-bottom: 15px; 
    margin-bottom: -15px; 
}

.lang-btn {
    cursor: pointer;
    color: #FFC107 !important; 
    display: flex;
    align-items: center;
    gap: 6px; 
}

.lang-btn svg {
    width: 18px;
    height: 18px;
    stroke: #FFC107; 
}

.lang-content {
    display: none; 
    position: absolute;
    background-color: #2c2c2c;
    min-width: 130px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
    z-index: 1001;
    border-radius: 5px;
    top: 100%; 
    right: 0;
    overflow: hidden;
    border-top: 3px solid #FFC107;
}

.lang-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    transition: background 0.3s;
}

.lang-content a:hover {
    background-color: #1a1a1a;
    color: #FFC107;
}

.lang-menu:hover .lang-content {
    display: block;
}

/* ---------------------------------
   Μεγάλη Αρχική Εικόνα (Hero)
------------------------------------ */
.hero {
    background: linear-gradient(rgba(44, 44, 44, 0.8), rgba(44, 44, 44, 0.8)), 
                url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    overflow-x: hidden; /* ΚΛΕΙΔΩΝΕΙ ΤΑ ANIMATIONS ΣΤΗΝ ΑΡΧΙΚΗ */
}

.hero h1 { color: #FFC107; font-size: 3.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.5rem; margin-bottom: 1.5rem; color: #ddd; }
.hero .rating { font-size: 1.2rem; margin-bottom: 2rem; color: #FFC107; }

.btn {
    display: inline-block;
    background-color: #FFC107;
    color: #2c2c2c;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}
.btn:hover { background-color: #e0a800; }

/* ---------------------------------
   Γενικά για τα Sections
------------------------------------ */
section { 
    padding: 5rem 5%; 
    overflow-x: hidden; /* ΚΛΕΙΔΩΝΕΙ ΟΛΑ ΤΑ ΥΠΟΛΟΙΠΑ ANIMATIONS */
}
section h2 { text-align: center; font-size: 2.5rem; color: #2c2c2c; margin-bottom: 1rem; }
.section-subtitle { text-align: center; color: #666; margin-bottom: 3rem; font-size: 1.2rem; }

/* ---------------------------------
   Η Εταιρεία (About)
------------------------------------ */
.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-text { flex: 1; min-width: 300px; }
.about-text p { font-size: 1.1rem; color: #444; }
.about-image { flex: 1; min-width: 300px; text-align: center; }
.about-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ---------------------------------
   Υπηρεσίες (Zig-Zag Layout)
------------------------------------ */
.services-section { background-color: #fff; }
.services-header { margin-bottom: 4rem; }
.services-container { max-width: 1200px; margin: 0 auto; }

.service-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem; 
}

.service-row.reverse { flex-direction: row-reverse; }

.service-info { flex: 1; }
.service-info h3 {
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    border-left: 5px solid #FFC107;
    padding-left: 15px;
}
.service-info p { font-size: 1.15rem; color: #555; margin-bottom: 1.5rem; }
.service-info ul { list-style: none; }
.service-info ul li { font-size: 1.1rem; margin-bottom: 0.5rem; color: #333; }

.service-photo { flex: 1; text-align: center; }
.service-photo img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s;
}
.service-photo img:hover { transform: scale(1.03); }

/* ---------------------------------
   Επικοινωνία & Ωράριο
------------------------------------ */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.info-card {
    background: #fff;
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 5px solid #FFC107;
}
.info-card h3 { margin-bottom: 1.5rem; color: #2c2c2c; }
.info-card ul { list-style: none; }
.info-card li, .info-card p { margin-bottom: 0.8rem; font-size: 1.1rem; }

/* ---------------------------------
   Χάρτης (Map Section)
------------------------------------ */
.map-section { background-color: #f4f4f4; padding-top: 2rem; }
.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #fff;
}

/* ---------------------------------
   Υποσέλιδο (Footer)
------------------------------------ */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #1a1a1a;
    color: #777;
}

/* ---------------------------------
   Προσαρμοσμένη Μπάρα Κύλισης (Scrollbar)
------------------------------------ */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #2c2c2c; }
::-webkit-scrollbar-thumb { background: #FFC107; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #e0a800; }

/* ---------------------------------
   Χρυσό Badge 100 Χρόνων
------------------------------------ */
.century-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.1); 
    color: #FFD700; 
    border: 1px solid #FFC107;
    padding: 8px 25px;
    border-radius: 50px; 
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: pulseGlow 2.5s infinite; 
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(255, 193, 7, 0.2); }
    50% { box-shadow: 0 0 25px rgba(255, 193, 7, 0.8); }
    100% { box-shadow: 0 0 10px rgba(255, 193, 7, 0.2); }
}

/* ---------------------------------
   Μικρά γράμματα για αξιολογήσεις
------------------------------------ */
.hero .rating .reviews-small {
    display: block; 
    font-size: 0.9rem; 
    color: #cccccc; 
    font-weight: normal; 
    margin-top: 5px; 
}

/* ---------------------------------
   Χρυσή Επικεφαλίδα (Ιστορία)
------------------------------------ */
.golden-heading {
    font-size: 3.5rem;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-weight: 800; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1); 
}

@media (max-width: 768px) {
    .golden-heading {
        font-size: 2.2rem;
    }
}

/* ---------------------------------
   Εντυπωσιακό Banner Ιστορίας
------------------------------------ */
.history-hero-banner {
    background: linear-gradient(rgba(30, 30, 30, 0.85), rgba(30, 30, 30, 0.85)), 
                url('https://images.unsplash.com/photo-1581057404285-8012cc436f2e?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    padding: 5rem 2rem; 
    border-radius: 15px; 
    border: 2px solid #aa771c; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.2); 
    margin-bottom: 5rem;
    text-align: center;
}

.golden-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0; 
    letter-spacing: 1px;
    font-style: italic;
    margin-top: 10px;
}

/* ==========================================================================
   ΝΕΑ ΣΕΛΙΔΑ ΕΠΙΚΟΙΝΩΝΙΑΣ (Split Screen Layout - "Ζεστό" & Ισορροπημένο)
============================================================================ */
.contact-split-section {
    display: flex;
    min-height: calc(100vh - 82px);
    background-color: #faf9f6; /* "Ζεστό", αριστοκρατικό λευκό (ivory) για να μην τυφλώνει */
}

/* Αριστερή Πλευρά - Περιέχει Εικόνα ΚΑΙ Χάρτη */
.contact-split-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Η φωτογραφία πιάνει το πάνω μισό */
.contact-split-image {
    flex: 1.2; 
    /* Μπορείς να αλλάξεις το link με δική σου φωτογραφία */
    background: url('https://images.unsplash.com/photo-1562564055-71e051d33c19?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 250px;
}

/* Ο χάρτης πιάνει το κάτω μισό */
.contact-split-map {
    flex: 0.8; 
    min-height: 250px;
}
.contact-split-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Η δεξιά πλευρά με τα κείμενα */
.contact-split-content {
    flex: 1;
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-split-content .gold-subtitle {
    color: #d4a017;
    letter-spacing: 3px;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-split-content h1 {
    font-size: 3.5rem;
    color: #333333; /* Λίγο πιο "μαλακό" από το απόλυτο μαύρο */
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.1;
}

.contact-split-content p {
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    max-width: 500px;
}

/* Τα κουτάκια επικοινωνίας */
.contact-box {
    background-color: #ffffff; /* Ολόλευκα κουτιά για να κάνουν ωραία αντίθεση με το "ζεστό" φόντο */
    border: 1px solid #eaeaea; /* Πολύ διακριτικό περίγραμμα */
    padding: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 500px;
    text-decoration: none;
    display: block;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02); /* Απαλή, πολυτελής σκιά */
}

.contact-box:hover {
    border-color: #FFC107;
    transform: translateY(-5px); /* Σηκώνεται ελαφρώς */
    box-shadow: 0 12px 25px rgba(255, 193, 7, 0.15); /* Υπέροχη χρυσή σκιά στο hover */
}

.contact-box h3 {
    color: #333333;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-box span {
    color: #d4a017;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-split-footer {
    margin-top: 2rem;
    font-size: 1.05rem;
    color: #555555;
    max-width: 500px;
    line-height: 1.8;
}

/* ==========================================================================
   ΕΝΙΑΙΟ RESPONSIVE DESIGN (TABLETS & ΚΙΝΗΤΑ) - ΑΛΑΝΘΑΣΤΟ!
============================================================================ */

/* --- 1. TABLETS (iPads) - Έως 1024px --- */
@media (max-width: 1024px) {

.contact-split-content { padding: 4rem 3rem; }
    .contact-split-content h1 { font-size: 2.8rem; }

    .navbar {
        flex-direction: column;
        padding: 1rem;
        gap: 15px;
    }
    .nav-links {
        justify-content: center;
        gap: 1.2rem;
        flex-wrap: wrap;
    }
    .nav-links a { font-size: 1.05rem; }
    
    .hero h1, .golden-heading { font-size: 2.5rem !important; }
    
    .service-row, 
    .service-row.reverse, 
    .about-container, 
    .contact-container {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
    }
    
    .service-info h3 {
        border-left: none;
        border-bottom: 3px solid #FFC107;
        padding-left: 0;
        padding-bottom: 5px;
        display: inline-block;
    }
    
    img[style*="float"] {
        float: none !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto 1.5rem auto !important;
        display: block !important;
    }

    section { padding: 4rem 3% !important; }
}

/* --- 2. ΚΙΝΗΤΑ (Smartphones) - Έως 768px --- */
@media (max-width: 768px) {
    
    .contact-split-section { flex-direction: column; }
    .contact-split-left { min-height: 500px; }
    .contact-split-content { padding: 3rem 1.5rem; text-align: center; }
    .contact-box, .contact-split-footer { max-width: 100%; margin-left: auto; margin-right: auto; }

    .navbar { padding: 0.5rem; gap: 8px; }
    .navbar .logo img { height: 35px; }
    .navbar .logo span { font-size: 1.2rem; }
    .nav-links { gap: 10px; }
    .nav-links a { font-size: 0.95rem; }

    .hero h1 { font-size: 1.8rem !important; }
    .golden-heading { font-size: 1.7rem !important; letter-spacing: 1px; }
    section h2 { font-size: 1.8rem !important; }
    .hero p { font-size: 1rem !important; }
    
    .century-badge {
        font-size: 0.85rem;
        padding: 5px 12px;
        margin-bottom: 1rem;
    }

    .service-row, .service-row.reverse, .about-container, .contact-container {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .service-info h3, h3 {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
    }

    img[style*="float"] {
        max-width: 250px !important;
    }

    section, .history-hero-banner { padding: 2.5rem 1rem !important; }
}