/* --- CSS VARIABLES (Premium Sea & Sand Theme) --- */
:root {
    --primary: #023047;       /* Deep Navy Blue - Αίσθηση εμπιστοσύνης */
    --secondary: #219ebc;     /* Clear Sea Blue */
    --accent: #fb8500;        /* Warm Sand / Orange - Call to Action */
    --dark: #222222;
    --light: #f8f9fa;
    --grey: #666666;
    --white: #ffffff;
    --font: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- RESET & BASICS --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); line-height: 1.6; background: var(--white); }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 90px 0; }
.bg-light { background-color: var(--light); }
.divider { width: 60px; height: 3px; background: var(--secondary); border: none; margin: 15px 0 25px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.section-header p { color: var(--grey); font-size: 1.1rem; }
img.img-responsive { width: 100%; height: auto; border-radius: 12px; display: block; }

/* --- GRIDS --- */
.grid { display: grid; gap: 40px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.grid-about { grid-template-columns: 1.2fr 0.8fr; align-items: center; }

/* --- BUTTONS --- */
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: var(--transition); cursor: pointer; border: none; text-align: center; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--secondary); }
.btn-accent { background: var(--accent); color: var(--white); box-shadow: 0 4px 15px rgba(251, 133, 0, 0.3); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(251, 133, 0, 0.5); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-lg { font-size: 1.1rem; padding: 16px 36px; }
.btn-block { display: block; width: 100%; }

/* --- NAVBAR --- */
.navbar { background: var(--white); padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.navbar-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.6rem; font-weight: 700; color: var(--primary); text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--secondary); }
.nav-menu { display: flex; align-items: center; }
.nav-menu a { text-decoration: none; color: var(--dark); margin-left: 25px; font-weight: 500; transition: var(--transition); }
.nav-menu a:hover { color: var(--secondary); }
.nav-menu .nav-btn { color: var(--white); margin-left: 30px; padding: 10px 24px; }
.hamburger { display: none; background: none; border: none; font-size: 1.6rem; color: var(--primary); cursor: pointer; }

/* --- HERO & SLIDESHOW --- */
.hero { height: 85vh; display: flex; align-items: center; color: var(--white); background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; transition: background-image 1.2s ease-in-out; position: relative; }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-content h1 { font-size: 3.8rem; line-height: 1.2; margin-bottom: 20px; text-shadow: 0 3px 15px rgba(0,0,0,0.4); }
.hero-content p { font-size: 1.4rem; margin-bottom: 40px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

/* --- BOOKING BAR --- */
.booking-bar { background: var(--white); padding: 25px; margin-top: -50px; position: relative; z-index: 10; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-bottom: 4px solid var(--secondary); }
.booking-channels { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.booking-title { font-weight: 700; color: var(--primary); font-size: 1.1rem; }
.channel-link { text-decoration: none; padding: 12px 25px; border-radius: 8px; font-weight: 600; color: var(--white); transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.channel-link.airbnb { background: #FF5A5F; }
.channel-link.booking { background: #003580; }
.channel-link.direct { background: var(--primary); }
.channel-link:hover { transform: translateY(-2px); opacity: 0.9; }

/* --- ABOUT --- */
.property-meta { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.meta-item { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; }
.meta-item i { color: var(--secondary); width: 20px; }

/* --- CARDS & ROOMS --- */
.card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.04); transition: var(--transition); border: 1px solid #eee; }
.card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.card-img { height: 240px; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 25px; }
.card-body h3 { color: var(--primary); margin-bottom: 12px; font-size: 1.3rem; }
.card-body p { color: var(--grey); font-size: 0.95rem; }

/* --- AMENITIES --- */
.amenity-item { background: var(--light); padding: 25px 15px; border-radius: 10px; text-align: center; border: 1px solid #eaeaea; transition: var(--transition); }
.amenity-item:hover { background: var(--white); border-color: var(--secondary); transform: scale(1.03); }
.amenity-item i { font-size: 2.2rem; color: var(--secondary); margin-bottom: 12px; display: block; }
.amenity-item h3 { font-size: 1rem; color: var(--primary); font-weight: 600; }

/* --- GALLERY --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; transition: var(--transition); }
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

/* --- LOCATION --- */
.location-list { list-style: none; margin-top: 20px; }
.location-list li { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 12px; }
.location-list li i { color: var(--secondary); }
.map-box { min-height: 300px; background: #e5e3df; border-radius: 12px; overflow: hidden; position: relative; }
.map-placeholder { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: var(--primary); }
.map-placeholder i { font-size: 3.5rem; margin-bottom: 10px; }

/* --- FAQ --- */
.faq-wrapper { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: var(--white); border-radius: 8px; border: 1px solid #e2e8f0; overflow: hidden; }
.faq-question { padding: 20px; font-weight: 600; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-question i { transition: var(--transition); font-size: 0.9rem; }
.faq-item.active .faq-question { background: var(--primary); color: var(--white); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s ease-out; color: var(--grey); font-size: 0.95rem; }
.faq-item.active .faq-answer { padding: 20px; max-height: 200px; border-top: 1px solid #e2e8f0; }

/* --- CONTACT --- */
.contact-details { margin: 30px 0; }
.contact-details p { font-size: 1.2rem; margin-bottom: 15px; }
.contact-details a { color: var(--dark); text-decoration: none; font-weight: 600; }
.contact-details i { color: var(--secondary); margin-right: 10px; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { width: 45px; height: 45px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); text-decoration: none; transition: var(--transition); font-size: 1.2rem; }
.social-icons a:hover { background: var(--primary); color: var(--white); }
.contact-form-container { background: var(--light); padding: 40px; border-radius: 12px; }
.main-contact-form input, .main-contact-form textarea { width: 100%; padding: 14px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font); font-size: 1rem; }
.main-contact-form input:focus, .main-contact-form textarea:focus { border-color: var(--secondary); outline: none; }
/* ==========================================================================
   CONTACT FORM SUBMIT BUTTON STYLES
   ========================================================================== */
#submitBtn {
    width: 100% !important; /* Πιάνει όλο το πλάτος της φόρμας όπως τα inputs */
    padding: 14px 20px !important;
    background-color: var(--primary, #023047) !important; /* Χρησιμοποιεί το κύριο σκούρο μπλε του site σου */
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important; /* Ίδια κλίση στις γωνίες με τα input fields */
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
    text-transform: uppercase !important; /* Κάνει τα γράμματα κεφαλαία για πιο clean/modern look */
    letter-spacing: 1px !important;
}

/* Εφέ όταν ο χρήστης περνάει το ποντίκι από πάνω (Hover) */
#submitBtn:hover {
    background-color: var(--secondary, #ffb703) !important; /* Αλλάζει στο χαρακτηριστικό πορτοκαλί/κίτρινο στο hover */
    color: #023047 !important; /* Σκούρα γράμματα για να κάνει αντίθεση με το κίτρινο */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Εφέ όταν το κουμπί είναι πατημένο (Active) */
#submitBtn:active {
    transform: scale(0.98) !important; /* Μικραίνει ανεπαίσθητα δίνοντας την αίσθηση αληθινού κλικ */
}

/* Όταν το κουμπί είναι απενεργοποιημένο κατά την αποστολή (Disabled) */
#submitBtn:disabled {
    background-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* --- LIGHTBOX MODAL --- */
.lightbox-trigger { cursor: pointer; }
.lightbox-modal { display: none; position: fixed; z-index: 2000; padding-top: 40px; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.92); backdrop-filter: blur(4px); }
.lightbox-content { margin: auto; display: block; max-width: 85%; max-height: 82vh; object-fit: contain; border-radius: 6px; transform: scale(0.95); transition: transform 0.3s ease; }
.lightbox-modal.show .lightbox-content { transform: scale(1); }
.lightbox-close { position: absolute; top: 20px; right: 35px; color: var(--white); font-size: 45px; font-weight: bold; cursor: pointer; transition: var(--transition); }
.lightbox-close:hover { color: var(--accent); }

/* --- FOOTER --- */
footer { background: var(--primary); color: rgba(255,255,255,0.7); padding: 40px 0; text-align: center; border-top: 3px solid var(--accent); }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .grid-about { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); padding: 30px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .nav-menu.active { display: flex; }
    .nav-menu a { margin: 15px 0; margin-left: 0; font-size: 1.1rem; width: 100%; text-align: center; }
    .nav-menu .nav-btn { margin-left: 0; width: 100%; }
    .booking-bar { margin-top: -20px; padding: 20px; }
    .hero-content h1 { font-size: 2.3rem; }
    .hero-content p { font-size: 1.1rem; }
    .section { padding: 60px 0; }
    .footer-content { flex-direction: column; gap: 10px; }
}
/* Ομαλό transition για την εναλλαγή εικόνων στα δωμάτια */
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.25s ease-in-out, transform 0.3s ease;
}

/* Στυλ για το Dropdown της Γλώσσας στο Navbar */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 25px;
    color: var(--primary);
}

.lang-switcher select {
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 20px;
    font-family: var(--font);
    cursor: pointer;
    background: var(--white);
    font-weight: 500;
}

.lang-switcher select:focus {
    outline: none;
    border-color: var(--secondary);
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
}
/* Στυλ για τα βελάκια πλοήγησης στο Lightbox */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 15px;
    user-select: none;
    transition: color 0.2s ease;
    z-index: 1001;
}

.lightbox-nav:hover {
    color: var(--secondary, #ffb703);
}

.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

@media (max-width: 768px) {
    .lightbox-nav { font-size: 30px; padding: 10px; }
    .lightbox-nav.prev { left: 5px; }
    .lightbox-nav.next { right: 5px; }
}

/* Floating Chat Container */
.floating-chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Αν θες να πάνε αριστερά, άλλαξέ το σε left: 20px; */
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999; /* Για να είναι πάντα πάνω από φωτογραφίες και Lightbox */
}

/* ==========================================================================
   FLOATING CHAT BUTTONS (WhatsApp & Viber Fixed Position)
   ========================================================================== */

/* Το container που κρατάει και τα δύο κουμπιά */
/* Το container που κρατάει και τα δύο κουμπιά */
.floating-chat-container {
    position: fixed !important;
    top: 50% !important;     /* Τοποθέτηση στο 50% από την κορυφή της οθόνης */
    right: 5px !important;  /* Αν θες να πάνε αριστερά, άλλαξέ το σε left: 30px !important; */
    transform: translateY(-50%) !important; /* Μετακίνηση κατά το μισό του ύψους του για τέλεια κεντράρισμα */
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    z-index: 99999 !important; /* Πάνω από όλο το περιεχόμενο */
}

/* Κοινό στυλ για τα δύο στρογγυλά κουμπιά */
.chat-btn {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 28px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    text-decoration: none !important;
}

/* Εφέ όταν ο χρήστης ακουμπάει το ποντίκι (Hover) */
.chat-btn:hover {
    transform: scale(1.1) translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
}

/* Χαρακτηριστικό πράσινο χρώμα του WhatsApp */
.whatsapp-btn {
    background-color: #25D366 !important;
}

/* Χαρακτηριστικό μοβ χρώμα του Viber */
.viber-btn {
    background-color: #7360F2 !important;
}

/* Σωστή προσαρμογή για οθόνες κινητών (Responsive) */
@media (max-width: 480px) {
    .floating-chat-container {
        bottom: 20px !important;
        right: 20px !important; /* Ή left: 20px !important; αν επέλεξες αριστερά */
    }
    .chat-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }
}

/* 1. Ενεργοποίηση Smooth Scroll για όλο το site */
html {
    /*scroll-behavior: smooth;*/
}

/* Αν το μενού σου είναι σταθερό (fixed) στην κορυφή, προσθέτουμε ένα offset 
   για να μην κρύβεται ο τίτλος του κάθε section πίσω από το μενού */
section {
    scroll-margin-top: 80px; /* Προσάρμοσε τα pixels ανάλογα με το ύψος του navigation σου */
}

/* 2. Στυλ για το Κουμπί Back to Top */
.back-to-top {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important; /* Το βάζουμε αριστερά για να μην πέσει πάνω στα WhatsApp/Viber που είναι δεξιά */
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background-color: var(--primary, #023047) !important; /* Χρησιμοποιεί το κύριο χρώμα σου ή σκούρο μπλε */
    color: #ffffff !important;
    border: none !important;
    font-size: 20px !important;
    cursor: pointer !important;
    opacity: 0 !important; /* Κρυφό αρχικά */
    visibility: hidden !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Εφέ όταν ο χρήστης περνάει το ποντίκι */
.back-to-top:hover {
    transform: scale(1.1) translateY(-3px) !important;
    background-color: var(--secondary, #ffb703) !important; /* Αλλάζει στο πορτοκαλί/κίτρινο σου στο hover */
    color: #023047 !important;
}

/* Εμφάνιση κουμπιού (θα ενεργοποιείται μέσω JS) */
.back-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Προσαρμογή για κινητά */
@media (max-width: 480px) {
    .back-to-top {
        bottom: 20px !important;
        left: 20px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
}

/* ==========================================================================
   LOCATION SECTION STYLES
   ========================================================================== */
.location-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Ελαφρύ γκρι για να ξεχωρίζει από τα υπόλοιπα λευκά sections */
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: center;
}

/* Κάρτες Πληροφοριών */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary, #023047); /* Μια κομψή γραμμή στο πλάι */
}

.info-card i {
    font-size: 24px;
    color: var(--secondary, #ffb703);
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 18px;
    color: var(--primary, #023047);
    margin-bottom: 8px;
}

.info-card p, .info-card ul {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

.info-card ul li::before {
    content: "•";
    color: var(--secondary, #ffb703);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Στυλ Χάρτη */
.location-map {
    border-radius: 15px;
    overflow: hidden; /* Για να στρογγυλέψουν οι γωνίες του χάρτη */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

/* Responsive σχεδιασμός για κινητά και tablet */
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr; /* Γίνεται μονόστηλο στις μικρές οθόνες */
        gap: 30px;
    }
    
    .location-map {
        height: 350px; /* Μειώνουμε λίγο το ύψος στα κινητά */
    }
}
