/* --- Urban Minimal Theme & Earthy Colors --- */
:root {
    --primary-bg: #F8F5F2; 
    --secondary-bg: #FFFFFF; 
    --text-color: #4E423D; 
    --accent-color: #D87C49; 
    --hover-color: #C16634; 
    --border-color: #EAE2DB; 
    --tag-bg: #F4A261; 
    --tag-text: #FFFFFF;
}

/* --- Basic Setup --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.7; color: var(--text-color); background-color: var(--primary-bg); }
.container { max-width: 1200px; margin: auto; padding: 0 20px; }
section { padding: 80px 0; border-bottom: 1px solid var(--border-color); }
section:last-of-type { border-bottom: none; }
h1, h2, h3, h4 { text-align: center; margin-bottom: 20px; font-weight: 500; }
h2 { font-size: 2.2rem; font-weight: 700; }

/* --- Header & Navigation (Desktop Layout) --- */
#header { 
    background: rgba(248, 245, 242, 0.85); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid var(--border-color); 
    position: fixed; 
    width: 100%; 
    top: 0; 
    left: 0; 
    z-index: 1000; 
    transition: background 0.3s ease, box-shadow 0.3s ease; 
}

#header .container { 
    display: flex; 
    justify-content: space-between; /* Σπρώχνει το Logo στην αρχή και το Nav στο τέλος */
    align-items: center; 
    height: 80px; 
}

.logo a { 
    text-decoration: none; 
    color: var(--text-color); 
    font-size: 1.5rem; 
    font-weight: 700; 
}

.logo span { 
    font-weight: 400; 
    color: #8A817C; 
}

/* Το Wrapper που περιέχει τα Links και το Κουμπί */
.nav-links {
    display: flex;
    align-items: center;
    flex-grow: 1; /* Πιάνει όλο τον χώρο ανάμεσα στο Logo και την άκρη */
}

/* Η λίστα με τα links (Home, Amenities κλπ) */
.nav-links ul { 
    list-style: none; 
    display: flex; 
    margin: 0 auto; /* Κεντράρει τη λίστα ανάμεσα στο Logo και το Κουμπί */
    gap: 30px; /* Απόσταση μεταξύ των links */
    padding: 0;
}

.nav-links ul li { 
    margin: 0; 
}

.nav-links ul li a { 
    text-decoration: none; 
    color: var(--text-color); 
    font-weight: 500; 
    transition: color 0.3s ease; 
}

.nav-links ul li a:hover { 
    color: var(--accent-color); 
}

/* Το κουμπί Book Your Stay (Δεξιά) */
.btn-book-nav { 
    background: var(--accent-color); 
    color: white; 
    padding: 10px 20px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    transition: all 0.3s ease; 
    margin-left: 0;
    white-space: nowrap; /* Για να μην σπάει σε 2 γραμμές */
}

.btn-book-nav:hover { 
    background: var(--hover-color); 
    transform: translateY(-2px); 
}

/* --- Hero Section --- ΕΝΗΜΕΡΩΜΕΝΟ --- */
/* --- Hero Section (Με Animation & Σκίαση) --- */
#hero {
    /* Προσθέσαμε ένα linear-gradient για να σκουρύνει λίγο η εικόνα */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('hero-bg.JPG') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    padding-top: 80px;
}

.hero-text {
    padding-left: 5%;
    max-width: 700px; /* Λίγο μεγαλύτερο πλάτος */
}

/* Στυλ για τον Τίτλο (H1) */
.hero-text h1 {
    font-size: 4.5rem;
    color: #FFFFFF; /* Καθαρό λευκό */
    line-height: 1.1;
    margin-bottom: 20px;
    
    /* ΕΦΕ ΣΚΙΑΣΗΣ (Το "Fade" γύρω από τα γράμματα) */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6); 
    
    /* ANIMATION: Ξεκινάει αόρατο */
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards; /* Διάρκεια 1 δευτερόλεπτο */
}

/* Στυλ για την Περιγραφή (P) */
.hero-text p {
    font-size: 1.2rem;
    color: #F8F5F2; /* Σπασμένο λευκό */
    font-weight: 500;
    
    /* ΕΦΕ ΣΚΙΑΣΗΣ */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    
    /* ANIMATION: Ξεκινάει αόρατο και περιμένει */
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards; /* 0.6s καθυστέρηση για να βγει μετά τον τίτλο */
}

/* --- ΟΡΙΣΜΟΣ ΤΗΣ ΚΙΝΗΣΗΣ (Keyframes) --- */
/* Αυτός ο κώδικας δημιουργεί την κίνηση από κάτω προς τα πάνω */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px); /* Ξεκινάει 40px πιο κάτω */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Καταλήγει στην κανονική θέση */
    }
}
/* --- ΤΕΛΟΣ ΕΝΗΜΕΡΩΣΗΣ HERO --- */

/* --- Tour & Gallery --- */
.matterport-embed, .slideshow-container { border-radius: 10px; overflow: hidden; margin-top: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
/* --- Slideshow Gallery --- */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: 30px auto; /* Κεντράρισμα */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    
    /* ΣΤΑΘΕΡΟ ΥΨΟΣ ΓΙΑ ΝΑ ΜΗΝ ΧΟΡΟΠΗΔΑΕΙ */
    height: 500px; /* Ρυθμίζεις το ύψος όπως θες */
    background-color: #f0f0f0; /* Χρώμα φόντου μέχρι να φορτώσει η εικόνα */
}

.mySlides {
    display: none;
    height: 100%; /* Πιάνει όλο το ύψος του container */
}

/* Στυλ για τις εικόνες μέσα στο slider */
.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ΚΛΕΙΔΙ: Κόβει λίγο γύρω-γύρω για να γεμίσει το κουτί χωρίς να παραμορφωθεί */
    object-position: center; /* Κεντράρισμα της εικόνας */
}

/* Βελάκια */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* --- Mobile Fix --- */
@media (max-width: 768px) {
    .slideshow-container {
        height: 300px; /* Πιο κοντό στο κινητό */
    }
}

/* --- Amenities & About --- */
#amenities, #about { background: var(--secondary-bg); }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 40px; }
.amenity-card { padding: 25px; text-align: center; border: 1px solid var(--border-color); border-radius: 8px; }
.amenity-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.about-text { text-align: left; }

/* --- Parking Section --- */
.area-intro { text-align: center; max-width: 800px; margin: 0 auto 40px auto; }
.map-container { position: relative; overflow: hidden; width: 100%; padding-top: 56.25%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); margin-bottom: 40px; }
.map-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
.area-card { background: var(--secondary-bg); border: 1px solid var(--border-color); padding: 25px; border-radius: 10px; transition: box-shadow 0.3s, transform 0.3s; }
.area-card:hover { transform: translateY(-5px); box-shadow: 0 5px 20px rgba(0,0,0,0.07); }
.area-card h4 { font-size: 1.25rem; text-align: left; margin-bottom: 15px; }
.area-card p { display: flex; align-items: center; gap: 8px; text-align: left; margin-bottom: 5px; color: #6c757d; }
.area-card ion-icon { font-size: 1.1rem; color: var(--accent-color); }
.area-card a { display: inline-flex; align-items: center; gap: 5px; margin-top: 15px; color: var(--accent-color); text-decoration: none; font-weight: 500; }
.area-card a ion-icon { font-size: 1rem; }

/* --- Contact / Booking Section --- */
#contact { background: var(--secondary-bg); }
.booking-options { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.booking-card { background: #fff; border: 1px solid var(--border-color); padding: 30px; border-radius: 10px; text-align: center; }
.booking-card.direct-contact { border: 2px solid var(--accent-color); }
.booking-card h3 { margin-bottom: 15px; }
.btn-book-main { background: var(--accent-color); color: white; padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; display: inline-block; margin-top: 20px; border: none; cursor: pointer; }
.btn-book-main:hover { background: var(--hover-color); transform: translateY(-2px); }

/* --- Footer --- */
footer { background: #333; color: white; text-align: center; padding: 20px 0; border: none; }

/* --- MOBILE RESPONSIVENESS --- */
/* Πρόσθεσε αυτό στο ΤΕΛΟΣ του style.css */

/* --- MOBILE MENU (HAMBURGER) --- */

/* 1. Ρυθμίσεις για το εικονίδιο (κρυμμένο σε PC, ορατό σε κινητό) */
.hamburger-menu {
    display: none; /* Κρυμμένο στα PC */
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
}

/* 2. Ρυθμίσεις όταν η οθόνη είναι μικρή (Κινητά/Tablet) */
@media (max-width: 900px) {
    
    .hamburger-menu {
        display: block; /* Εμφάνιση του κουμπιού Menu */
    }

    /* Απόκρυψη του κανονικού μενού */
    .nav-links {
        position: fixed;
        top: 80px; /* Όσο είναι το ύψος του header */
        right: -100%; /* Το κρύβουμε έξω από την οθόνη δεξιά */
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-bg); /* Το χρώμα του φόντου */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease; /* Εφέ κύλισης */
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    /* Όταν προστεθεί η κλάση 'active', το μενού εμφανίζεται */
    .nav-links.active {
        right: 0; 
    }

    .nav-links ul {
        flex-direction: column;
        gap: 30px; /* Απόσταση μεταξύ των links */
        text-align: center;
        padding: 0;
    }

    .nav-links ul li {
        margin: 0;
    }

    .nav-links ul li a {
        font-size: 1.5rem; /* Μεγαλύτερα γράμματα στο κινητό */
    }

    /* Προσαρμογή του Header Container */
    #header .container {
        justify-content: space-between;
        padding: 0 20px;
    }
    
    /* Hero Text Fix (όπως το είχαμε) */
    .hero-text h1 { font-size: 2.5rem; }
    #hero { justify-content: center; padding-top: 150px; }
    
    /* Amenities & Parking Grid Fix */
    .amenities-grid, .area-grid, .about-content, .booking-options {
        grid-template-columns: 1fr;
    }
}






