/* --- Γενικά Στοιχεία --- */
* { box-sizing: border-box; }
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
    background-color: #fcfcfc;
    overflow-x: hidden; 
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
    background-color: #25d366; color: #FFF; border-radius: 50px;
    text-align: center; font-size: 35px; box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
    z-index: 1000; display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: 0.3s;
}
.whatsapp-float:hover { background-color: #128c7e; transform: scale(1.1); color: white; }

/* Διόρθωση για τη γραμματοσειρά των εικονιδίων Brand */
.fab { 
    font-family: "Font Awesome 6 Brands" !important; 
    width: 25px; 
    text-align: center;
}

/* --- Header & Nav --- */
.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    align-items: center;
}

.logo { font-family: 'Pacifico', cursive; font-size: 28px; color: #E62020; text-decoration: none; transition: 0.3s; }
.logo:hover { opacity: 0.8; }

nav ul { list-style: none; display: flex; margin: 0; padding: 0; }
nav ul li { margin-left: 20px; }
nav ul li a { color: #1A237E; text-decoration: none; font-weight: bold; font-size: 0.9em; text-transform: uppercase; transition: 0.3s; }
nav ul li a:hover { color: #E62020; }

/* --- Hero Section (Τίτλος) --- */
.hero-section {
    padding: 30px 20px 10px 20px;
    text-align: center;
    background-color: #fff;
}
.hero-section h1 { font-size: 3.2em; color: #1A237E; margin-bottom: 10px; font-weight: 700; }
.hero-section p { font-size: 1.3em; color: #444; max-width: 800px; margin: 0 auto; }

/* --- FULL WIDTH SLIDER ΣΤΗΝ ΚΟΡΥΦΗ --- */
.top-double-slider {
    width: 100%;
    margin: 0;
    padding: 0 0 30px 0;
    background-color: #fff;
}
.hero-swiper {
    width: 100%;
    padding-bottom: 40px; 
}
.hero-swiper .swiper-slide {
    height: 450px;
    overflow: hidden;
    background-color: #fff;
}
.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ZOOM OUT: Δείχνει ολόκληρη τη φωτό χωρίς να την κόβει */
    display: block;
}
.hero-pagination {
    bottom: 0 !important;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: #E62020 !important;
}

/* --- ΥΠΗΡΕΣΙΕΣ --- */
#services { padding: 90px 0; background: #f4f6f9; text-align: center; }
#services h2 { color: #1A237E; margin-bottom: 50px; font-size: 2.8em; font-weight: 700;}

.services-swiper { 
    padding-bottom: 50px;
    padding-top: 20px;
    width: calc(100% - 130px);
    margin: 0 auto;            
}

a.premium-service-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.4s;
    border-bottom: 5px solid #E62020;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px; 
    text-decoration: none; 
}

a.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26,35,126,0.15);
    border-bottom: 5px solid #1A237E;
}

.icon-service {
    font-size: 55px;
    color: #E62020;
    margin-bottom: 25px;
    transition: 0.4s;
}

a.premium-service-card:hover .icon-service {
    color: #1A237E;
    transform: scale(1.1);
}

a.premium-service-card h3 {
    color: #1A237E;
    font-size: 1.1em;
    margin: 0;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none;
}

/* --- Mascot Banner & Gallery Carousel --- */
.mascot-banner { width: 100%; padding: 20px 0; }
.mascot-banner img { width: 100%; height: auto; display: block; }
#gallery { padding: 70px 0 90px 0; text-align: center; overflow: hidden; }

.gallery-swiper { 
    padding-bottom: 50px;
    padding-top: 20px;
    width: calc(100% - 130px); 
    margin: 0 auto;            
}

a.hero-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.4s;
}
a.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
.hero-name {
    margin: 0 0 15px 0;
    font-size: 1.4em;
    color: #1A237E;
    font-weight: 700;
}

/* --- ΓΕΝΙΚΟ ΚΟΥΤΙ ΦΩΤΟΓΡΑΦΙΑΣ --- */
.gallery-item { 
    height: 300px; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
}
.gallery-item img { 
    width: 100%; 
    height: 100%; 
    display: block;
    transition: 0.6s; 
}
a.hero-card:hover .gallery-item img { transform: scale(1.05); }

/* --- ΕΙΔΙΚΟΣ ΔΙΑΧΩΡΙΣΜΟΣ ΓΙΑ ΑΡΧΙΚΗ ΣΕΛΙΔΑ VS ΕΣΩΤΕΡΙΚΕΣ ΣΕΛΙΔΕΣ --- */

/* 1. Για την αρχική σελίδα (Μασκότ Καρτελάκια) */
a.hero-card .gallery-item {
    background-color: #fff; /* Λευκό φόντο */
}
a.hero-card .gallery-item img {
    object-fit: contain; /* Δεν κόβει την εικόνα, την δείχνει όλη */
}

/* 2. Για τις εσωτερικές σελίδες (Φωτογραφίες Πάρτυ/Στολισμών) */
.gallery-grid .gallery-item {
    background-color: transparent; /* Διάφανο φόντο */
}
.gallery-grid .gallery-item img {
    object-fit: cover; /* Γεμίζει όλο το κουτί χωρίς κενά */
}

/* Δουλειά Μας Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 20px;
}

/* Κοινά Styles για τα Βελάκια των Sliders */
.swiper-button-next, .swiper-button-prev {
    color: #E62020 !important; 
    background: rgba(255, 255, 255, 0.9);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    top: 50% !important; 
    margin-top: -25px !important; 
}

.swiper-button-prev { left: 5px !important; }
.swiper-button-next { right: 5px !important; }

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

/* --- Contact Page --- */
.page-header { height: 35vh; background: linear-gradient(rgba(26,35,126,0.8), rgba(26,35,126,0.8)), url('images/main.png'); background-size: cover; background-position: center; display: flex; flex-direction: column; }
.page-header nav { background: rgba(255,255,255,0.95); }
.page-title { flex: 1; display: flex; justify-content: center; align-items: center; color: #fff; }
#contact-page { padding: 80px 0; background: #f9f9f9; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: #fff; padding: 50px; border-radius: 25px; box-shadow: 0 15px 35px rgba(0,0,0,0.05); }

/* --- Footer --- */
footer { background-color: #000; color: #fff; padding: 60px 20px 20px 20px; }
.footer-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; text-align: center; }
.footer-col h4 { margin-bottom: 20px; text-transform: capitalize; color: #fff; }

/* FIX: Στοίχιση των Social Media */
.footer-col p, .footer-col a { 
    color: #ccc; 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    gap: 12px; 
    margin: 12px auto; 
    width: fit-content; 
    transition: 0.3s; 
    font-size: 0.95em;
}

.footer-col:last-child a {
    width: 125px; 
}

.footer-col i, .footer-col .fab { 
    color: #E62020; 
    font-size: 1.2em; 
    width: 25px; 
    text-align: center; 
}

.custom-social-icon {
    width: 25px !important;
    height: 25px !important;
    max-width: 25px !important;
    object-fit: contain !important;
    border-radius: 4px;
    margin: 0 !important;
}

.footer-col a:hover { color: #E62020; transform: scale(1.05); }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; margin-top: 20px; }
.footer-bottom p { color: #aaa; font-size: 0.9em; margin: 0; }

h2 { font-size: 2.8em; color: #1A237E; margin-bottom: 15px; font-weight: 700; text-align: center; }

/* ========================================================
   RESPONSIVE (ΚΙΝΗΤΑ & TABLET)
   ======================================================== */
@media screen and (max-width: 768px) {
    .container { padding: 0 15px; }
    
    /* Header / Menu */
    nav { flex-direction: column; padding: 15px 10px; text-align: center; }
    nav ul { margin-top: 15px; flex-wrap: wrap; justify-content: center; gap: 12px; }
    nav ul li { margin-left: 0; }
    nav ul li a { font-size: 0.8em; }
    .logo { font-size: 24px; }

    /* Τίτλοι και Κείμενα */
    .hero-section { padding: 30px 15px 10px 15px; }
    .hero-section h1 { font-size: 1.9em; line-height: 1.3; margin-bottom: 15px; }
    .hero-section p { font-size: 1.1em; }
    h2 { font-size: 2.1em; }

    /* Hero Slider στο Κινητό */
    .hero-swiper .swiper-slide { height: 280px; }

    /* Υπηρεσίες & Μασκότ Sliders στο Κινητό (Κρύβουμε βελάκια) */
    .services-swiper, .gallery-swiper { width: 100%; padding-left: 0; padding-right: 0; }
    .swiper-button-next, .swiper-button-prev { display: none !important; }
    a.premium-service-card { height: 220px; }
    
    a.hero-card { padding: 15px; }
    .gallery-item { height: 260px; } 

    /* Κουτιά Φωτογραφιών "Η Δουλειά Μας" */
    .gallery-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Σελίδα Επικοινωνίας */
    .page-header { height: 30vh; }
    .contact-wrapper { grid-template-columns: 1fr; padding: 25px 20px; gap: 30px; }

    /* Footer */
    .footer-container { gap: 30px; }
}