@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Βασικές ρυθμίσεις σελίδας */
html {
    scroll-behavior: smooth;
}
/* Βασικές ρυθμίσεις σελίδας */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; /* Η νέα, Premium γραμματοσειρά */
    color: #4a3f35;
}

body {
    background-color: #e6dfd3; /* Πλούσιο, σκούρο μπεζ της άμμου (Resort Vibe) */
}

/* Επάνω Μενού (Header) */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 45px 60px; /* Αυξήσαμε το πάνω-κάτω για να γίνει πιο φαρδιά η λωρίδα */
    background-color: #797067;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    color: #ffffff; 
    font-weight: 300; /* Αφαιρέσαμε το bold. Το 300 δίνει ένα υπέροχο, λεπτό και κομψό πάχος */
    font-size: 26px; /* Ελαφρώς πιο μαζεμένο μέγεθος για φινέτσα */
    letter-spacing: 5px; /* Το μυστικό του Luxury: Ανοίξαμε πολύ την απόσταση των γραμμάτων */
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8; /* Αντί να αλλάζει χρώμα, τώρα θα κάνει ένα ωραίο fade όταν περνάει το ποντίκι */
}

.navigation a {
    margin-left: 30px;
    text-decoration: none;
    color: #fdfbf7; /* Ανοιχτό ιβουάρ χρώμα */
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #4fd1d1; /* Η Aqua πινελιά παραμένει */
}

/* Hero Section (Ενιαία Εικόνα) */
.hero-section {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Κεντρικό Λευκό Πλαίσιο Κειμένου */
.hero-text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2ebe3;
    padding: 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(74, 63, 53, 0.15);
    width: 90%;
    max-width: 650px;
    border-radius: 4px;
}

.hero-text-box h1 {
    font-size: 34px;
    color: #332822;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text-box p {
    font-size: 17px;
    color: #4a3f35; /* Πιο σκούρο για ευανάγνωστη αντίθεση */
    letter-spacing: 1px;
    line-height: 1.5;
    margin-bottom: 35px; /* Δίνει αέρα πριν το κουμπί */
}

/* Πρωτεύον Κουμπί (CTA) - Καθαρό Aqua */
.primary-btn {
    display: inline-block;
    background-color: #4fd1d1; 
    color: #ffffff !important;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.primary-btn:hover {
    background-color: #3bbaba; 
}

/* Δευτερεύον Κουμπί (Ghost Button) - Aqua Περίγραμμα */
.ghost-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #4fd1d1; 
    color: #4fd1d1 !important; 
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.ghost-btn:hover {
    background-color: #f2ebe3;
    color: #3bbaba !important;
    border-color: #3bbaba;
}

/* Πλέγμα 4 Καταλυμάτων (2x2) */
.properties-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 60px;
    background-color: #fdfbf7;
}

.property-card {
    background-color: #ffffff;
    width: 45%;
    padding-bottom: 25px;
    box-shadow: 0 5px 15px rgba(74, 63, 53, 0.05);
    text-align: center;
    border-radius: 4px;
}

/* Εδώ είναι η διόρθωση που φτιάχνει τις σπασμένες εικόνες */
.property-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px 4px 0 0;
}

.property-card h3 {
    font-size: 20px;
    color: #4a3f35;
    margin-bottom: 10px;
}

.property-card p {
    font-size: 14px;
    color: #706254;
    margin-bottom: 25px;
    padding: 0 15px;
}

/* Το Hook στις Κάρτες (Παροχές) */
.card-hook {
    font-size: 13px;
    color: #8c7e6f;
    margin-bottom: 20px;
    font-weight: bold;
}



/* Κουμπί Μενού (Contact) */
.nav-btn {
    border: 2px solid #fdfbf7; /* Λευκό/Ιβουάρ περίγραμμα */
    padding: 8px 18px;
    border-radius: 4px;
    transition: all 0.3s ease !important;
}

.nav-btn:hover {
    border-color: #4fd1d1;
    color: #4fd1d1 !important;
}

/* Footer (Βάση Σελίδας) */
.main-footer {
    background-color: #e8ded3; /* Απαλός Πηλός (Soft Clay) */
    padding: 50px 20px 20px 20px;
    text-align: center;
    color: #706254;
    margin-top: 40px;
}

.footer-content h4 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #332822;
}

.footer-content p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #706254;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #d5c8b9;
    font-size: 12px;
    color: #8c7e6f;
}

/* --- ΣΕΛΙΔΑ ΚΑΤΑΛΥΜΑΤΟΣ --- */
.villa-title-section {
    text-align: center;
    padding: 30px 20px 20px 20px; /* Μειώσαμε αισθητά τα κενά για να γίνει πιο στενή */
    background-color: #fdfbf7;
}

.villa-title-section h1 {
    font-size: 36px;
    color: #332822;
    margin-bottom: 15px;
}

.villa-title-section p {
    font-size: 18px;
    color: #706254;
}

.villa-amenities-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 15px 0;
    margin-top: 10px;
    border-bottom: 4px solid #4fd1d1; /* Διπλασιάσαμε το πάχος από 2px σε 4px */
}

.amenity {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #4a3f35;
}

.amenity span {
    font-size: 22px;
}

/* Interactive Gallery Design */
.interactive-gallery {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 15px;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.gallery-btn:hover { background-color: rgba(102, 153, 153, 0.8); /* Aqua με διαφάνεια */ }
.left-btn { left: 10px; }
.right-btn { right: 10px; }

.thumbnail-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
}

.thumb {
    width: 100px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0.5;
    transition: 0.3s;
}

.thumb:hover { opacity: 0.8; }
.thumb.active {
    opacity: 1;
    border: 3px solid #4fd1d1;
}
/* --- ΣΕΛΙΔΑ ΕΠΙΚΟΙΝΩΝΙΑΣ (CONTACT PAGE) --- */
.contact-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.contact-section h1 {
    font-size: 36px;
    color: #332822;
    margin-bottom: 15px;
}

.contact-section > p {
    font-size: 16px;
    color: #706254;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    gap: 50px;
    text-align: left;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e8ded3;
    background-color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #669999; /* Το Aqua χρώμα όταν ο χρήστης πληκτρολογεί */
}

.contact-info {
    flex: 1;
    background-color: #f2ebe3; /* Warm Beige πλαίσιο */
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info h3 {
    color: #332822;
    font-size: 22px;
    margin-bottom: 5px;
}

.contact-info p {
    font-size: 15px;
    color: #4a3f35;
}
/* --- FULLSCREEN IMAGE MODAL --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 40, 34, 0.95);
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fdfbf7;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #669999;
}

/* --- ΚΕΙΜΕΝΑ (SHORT / LONG) --- */
.lead-text {
    font-size: 18px !important;
    font-weight: bold;
    color: #332822 !important;
    line-height: 1.6;
    margin-bottom: 25px;
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: #e8ded3;
    margin: 30px 0;
}

/* --- ΠΕΡΙΓΡΑΦΗ ΔΩΜΑΤΙΟΥ & ΚΡΑΤΗΣΗ (PROPERTY DETAILS) --- */
.property-details {
    max-width: 900px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.details-content {
    flex: 2; /* Πιάνει περισσότερο χώρο */
}

.details-content h2 {
    font-size: 24px;
    color: #332822;
    margin-bottom: 15px;
}

.details-content p {
    font-size: 15px;
    color: #706254;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* --- STICKY BOOKING CARD (AIRBNB STYLE) --- */
.booking-card {
    flex: 1; 
    background-color: #f2ebe3;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border-top: 8px solid #4fd1d1; /* Διπλασιάσαμε το πάχος από 4px σε 8px */
    position: sticky; 
    top: 40px; 
}

.booking-card h3 {
    font-size: 20px;
    color: #332822;
    margin-bottom: 10px;
}

.booking-card p {
    font-size: 14px;
    color: #706254;
    margin-bottom: 25px;
}

.booking-btn {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}
/* --- Responsive Design: Ρυθμίσεις για Tablets & Split-Screen (Οθόνες έως 1024px) --- */
@media (max-width: 1024px) {
    .main-header {
        flex-direction: column; /* Βάζει το μενού κάτω από το λογότυπο */
        padding: 25px 20px;
        gap: 20px; /* Δίνει αέρα ανάμεσα στο λογότυπο και το μενού */
    }
    
    .navigation {
        display: flex;
        flex-wrap: wrap; /* Επιτρέπει στα κουμπιά να αλλάξουν γραμμή αρμονικά αν χρειαστεί */
        justify-content: center;
        align-items: center;
    }
    
    .navigation a {
        margin-left: 15px; /* Ισορροπεί τα κενά αριστερά και δεξιά */
        margin-right: 15px;
        margin-bottom: 10px; /* Δίνει αέρα αν το "Contact" αλλάξει γραμμή */
    }
}
/* Responsive Design: Ρυθμίσεις για Κινητά */
@media (max-width: 768px) {
    
    /* --- ΝΕΟΣ ΚΩΔΙΚΑΣ: Διόρθωση Λογότυπου στα Κινητά --- */
    .logo {
        font-size: 16px; /* Μικραίνουμε λίγο τα γράμματα */
        letter-spacing: 1px; /* Μειώνουμε το κενό ανάμεσα στα γράμματα */
        text-align: center;
        margin-bottom: 5px; /* Δίνει λίγο αέρα από το μενού που ακολουθεί */
    }

    .logo a {
        display: inline-block; /* Κρατάει το φόντο σε ενιαίο, όμορφο ορθογώνιο */
        padding: 8px 12px;
    }

    .main-header {
        flex-direction: column;
        padding: 20px;
    }
    
    .navigation {
        margin-top: 15px;
    }
    .navigation a {
        margin: 0 10px;
        font-size: 12px;
    }
    .hero-section {
        height: 60vh; /* Ελαφρώς μικρότερο ύψος στο κινητό */
    }
    .hero-text-box {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        padding: 30px 20px;
        box-shadow: none;
    }
    .properties-grid {
        flex-direction: column;
        padding: 30px 20px;
    }
    .property-card {
        width: 100%;
        margin-bottom: 30px;
    }
    .villa-title-section {
        padding: 50px 15px 30px 15px;
    }
    .villa-title-section h1 {
        font-size: 28px;
    }
    .villa-amenities {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 15px;
    }
    .main-image-container {
        height: 300px;
    }
    .thumb {
        width: 80px;
        height: 60px;
    }
    .gallery-btn {
        padding: 5px 10px;
        font-size: 18px;
    }
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
    .property-details {
        flex-direction: column; /* Στοιβάζει την κάρτα κράτησης κάτω από το κείμενο */
    }
    .booking-card {
        width: 100%;
    }
}