/* --- Luxury Style Pallete --- */
:root {
    --primary-color: #0b1d3a; 
    --accent-color: #c5a880;  
    --text-light: #ffffff;
    --text-dark: #222222;
    --bg-light: #f4f6f9;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* --- Premium Navigation (Desktop Default) --- */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 29, 58, 0.98);
    padding: 15px 5%;
    box-sizing: border-box;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .logo {
    color: var(--text-light);
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar .logo span {
    color: var(--accent-color);
    font-weight: 300;
    margin-left: 5px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

/* Στυλ για τις σημαίες στο Desktop (Δεξιά πλευρά του μενού) */
.lang-switcher-desktop {
    display: flex;
    gap: 12px;
    margin-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
    align-items: center;
}

.lang-switcher-desktop a {
    font-size: 20px;
    text-decoration: none;
    line-height: 1;
    padding: 2px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    display: inline-flex;
}

.lang-switcher-desktop a.active {
    border-color: var(--accent-color);
    transform: scale(1.1);
}

/* Κρύβουμε τις mobile σημαίες και το hamburger στην desktop έκδοση */
.lang-switcher-mobile {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 4px 0;
    transition: 0.4s;
}


/* --- HERO SLIDER FIXED --- */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--primary-color);
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-light);
    z-index: 3;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #e0e0e0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 35px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}


/* --- Destination Grid --- */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.destination-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    display: block;
}

.card-info {
    padding: 25px;
}

.card-info h3 {
    margin: 0 0 15px 0;
    color: var(--primary-color);
    font-size: 20px;
}

.card-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}
/* --- Reusable layout and section styles --- */
.hero-slide-1 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('img/Lady/Photo_3.png');
}

.hero-slide-2 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('img/Lady/Photo_4.png');
}

.hero-slide-3 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('img/Lady/Photo_5.png');
}

.seo-welcome-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.seo-welcome-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-section-title {
    color: var(--primary-color);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 700;
}

.seo-divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 0 auto 25px auto;
}

.seo-section-paragraph {
    color: #444444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.seo-section-note {
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
    font-family: Arial, sans-serif;
    font-style: italic;
}

.card-img-diaporos {
    background-image: url('img/diaporos/1200x900-1.jpeg');
}

.card-img-ammouliani {
    background-image: url('img/amouliani/1000x625-1.jpeg');
}

.card-img-athos {
    background-image: url('img/oros/1024x768-1.jpeg');
}

.more-info-link {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 14px;
}

.modal-divider {
    border: 0;
    border-top: 1px solid rgba(11,29,58,0.1);
    margin: 25px 0;
}

.services-section {
    padding-top: 40px;
}

.equipment-box {
    margin-top: 25px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
}

.equipment-title {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 16px;
}

.equipment-list {
    list-style-type: square;
    padding-left: 20px;
    line-height: 1.6;
}

.equipment-note {
    font-size: 13px;
    color: #555;
    font-style: italic;
    margin-bottom: 0;
}

.custom-events-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 0;
}

.custom-events-container {
    padding: 40px 0;
}

.custom-events-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.custom-events-title {
    color: var(--accent-color);
}

.custom-events-text {
    color: rgba(255,255,255,0.8);
}

.custom-events-card {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.custom-events-card h3 {
    color: var(--accent-color);
}

.custom-events-card p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.booking-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.booking-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.booking-contact-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.booking-contact-title {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-contact-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.booking-contact-item {
    margin-bottom: 20px;
}

.booking-contact-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: bold;
    letter-spacing: 1px;
}

.booking-contact-link {
    font-size: 18px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.booking-contact-link.email {
    font-size: 16px;
    word-break: break-all;
}

.booking-map {
    width: 100%;
    margin-top: 20px;
}

.booking-map iframe {
    width: 100%;
    height: 350px;
    max-width: 100%;
    border: 0;
    display: block;
}

.booking-form-card {
    flex: 1.5;
    min-width: 300px;
    margin-top: 0;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.booking-form-title {
    margin-top: 0;
    color: var(--primary-color);
    text-align: left;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-form {
    margin-top: 20px;
}

.booking-form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.booking-form-col {
    flex: 1;
    min-width: 140px;
}

.booking-select {
    margin-bottom: 15px;
}

.booking-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
}

.booking-hidden-field {
    display: none !important;
}

.booking-submit {
    width: 100%;
    margin-top: 20px;
}

.site-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-link {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 15px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* --- PREMIUM MODAL WINDOWS FIXED --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(11, 29, 58, 0.85);
    z-index: 2000;
    display: none; /* Αρχικά κρυφό */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Ενεργοποίηση Modal */
.modal-overlay.active {
    display: flex !important;
    opacity: 1 !important;
}

.modal-wrapper {
    background: #ffffff;
    width: 90%;
    max-width: 850px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-radius: 4px;
    transform: translateY(-30px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal-wrapper {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 32px;
    color: var(--primary-color);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.2s;
}

.close-modal-btn:hover {
    color: var(--accent-color);
}

.modal-title {
    color: var(--primary-color);
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.modal-gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.modal-gallery-grid img:hover {
    opacity: 0.9;
}


/* --- Luxury Form Elements --- */
.form-container {
    max-width: 600px;
    margin: 60px auto;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 4px;
}

.luxury-form label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: bold;
}

.luxury-form input, 
.luxury-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    color: var(--text-dark);
    box-sizing: border-box;
    border-radius: 4px;
}

.luxury-form input:focus, 
.luxury-form select:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* --- Layout για την About Section & Services --- */
.flex-container {
    display: flex;
    gap: 40px;
    align-items: center;
}
.about-text, .dining-text { flex: 1; }
.about-gallery, .dining-gallery { flex: 1; }
.img-large, .img-fluid { width: 100%; height: auto; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* --- Mobile Language Selector --- */
.mobile-lang-selector {
    display: none;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 12px 0;
    background: rgba(11, 29, 58, 0.95);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    position: fixed;
    top: 53px;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-lang-selector a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-lang-selector a.active {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.05);
}

.mobile-lang-selector a:hover {
    background: rgba(197, 168, 128, 0.1);
}

.lang-switcher-desktop {
    display: flex;
}

/* ==========================================================================
   ΕΝΙΑΙΟ, ΚΑΘΑΡΟ MEDIA QUERY ΓΙΑ ΚΙΝΗΤΑ (MAX-WIDTH: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .flex-container {
        flex-direction: column;
    }

    .navbar {
        padding: 10px 15px;
        flex-wrap: wrap;
    }

    .navbar .logo {
        font-size: 18px;
        flex: 1;
    }

    /* Εμφάνιση των mobile σημαιών ανάμεσα σε logo και hamburger */
    .lang-switcher-mobile {
        display: flex;
        gap: 12px;
        margin-left: auto;
        margin-right: 15px;
        align-items: center;
    }

    .lang-switcher-mobile a {
        text-decoration: none;
        font-size: 22px; 
        line-height: 1;
        padding: 3px;
        border-radius: 50%;
        border: 2px solid transparent;
        display: inline-flex;
    }

    .lang-switcher-mobile a.active {
        border-color: var(--accent-color);
        transform: scale(1.1);
    }

    /* ΚΡΥΒΟΥΜΕ τις desktop σημαίες στα κινητά */
    .lang-switcher-desktop {
        display: none !important;
    }

    /* Εμφάνιση του mobile language selector */
    .mobile-lang-selector {
       display: flex !important;
    }

    /* Ενεργοποίηση Hamburger Menu */
    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: fixed;
        top: 58px;
        left: 0;
        right: 0;
        background: rgba(11, 29, 58, 0.98);
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        gap: 20px;
        max-height: calc(100vh - 58px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .modal-wrapper {
        padding: 25px;
        max-height: 90vh;
    }

    .modal-gallery-grid {
        grid-template-columns: 1fr;
    }

    .modal-gallery-grid img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Ajustes para imagens de cards */
    .card-img {
        height: 200px;
        width: 100%;
    }

    .card-img-diaporos,
    .card-img-ammouliani,
    .card-img-athos {
        background-attachment: scroll;
    }

    /* Ajustes para galeria sobre */
    .about-gallery img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Ajustes para serviços */
    .dining-gallery img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Ajustes para hero slider */
    .slider-container {
        height: 60vh;
    }

    .hero-slide-1,
    .hero-slide-2,
    .hero-slide-3 {
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    /* Ajustes para container */
    .container {
        width: 95%;
        padding: 30px 0;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-content {
        flex-direction: column !important;
        gap: 20px;
    }

    .booking-contact-card,
    .booking-form-card {
        width: 100% !important;
        min-width: 0;
        padding: 24px;
        flex: none !important;
    }

    .booking-map iframe {
        height: 450px;
    }
}
/* === EXTRA SMALL PHONES (480px and below) === */
@media (max-width: 480px) {
    .container {
        width: 98% !important;
        padding: 20px 0 !important;
        max-width: 100% !important;
    }

    .navbar {
        padding: 8px 10px !important;
    }

    .navbar .logo {
        font-size: 16px !important;
    }

    .hero-content h1 {
        font-size: 24px !important;
    }

    .hero-content p {
        font-size: 12px !important;
    }

    .booking-contact-card,
    .booking-form-card {
        padding: 15px !important;
    }

    .modal-wrapper {
        width: 95% !important;
        padding: 20px !important;
    }

    .destinations-grid {
        gap: 15px !important;
    }
}
