/* =========================================
   1. GLOBAL VARIABLES
   ========================================= */
:root {
    --primary-blue: #004A7C;    /* Deep Aegean Blue */
    --accent-sand: #f4f1ea;     /* Warm Greek Sand */
    --dark-slate: #2c3e50;      /* Dark Mediterranean Slate */
    --white: #ffffff;
    --text-main: #444444;
    --text-light: #666666;
    --gold-accent: #c5a059;     /* Sunset Gold */
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--accent-sand);
    color: var(--text-main);
    line-height: 1.6;
}

/* =========================================
   2. GENERAL COMPONENTS
   ========================================= */
.section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
    margin-bottom: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.bg-dark {
    background: var(--dark-slate);
    color: var(--white);
}

.bg-sky {
    background-color: var(--accent-sand);
}

/* =========================================
   3. NAVIGATION (Clean style - no underline)
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 80px; 
    height: auto;
    padding: 10px 0; 
    background: var(--white);
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow);
    /* Border-bottom removed for a cleaner look */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

@media (max-width: 768px) {
    .nav-container {
        display: block;
        position: relative;
    }
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none; /* Ensure no text underline */
}

.logo-top {
    color: var(--primary-blue);
    font-size: 1.6rem;
    text-transform: uppercase;
}

.logo-sub {
    color: #333333;
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-slate);
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1506929199175-6184e055ed99?auto=format&fit=crop&w=1600&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.btn-main {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-main:hover {
    background: var(--gold-accent);
    transform: translateY(-2px);
}

/* =========================================
   5. AMENITIES
   ========================================= */
.image-box img {
    width: 100%;
    border-radius: 10px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.amenity-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.amenity-card i {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 15px;
}

/* =========================================
   6. PRICING
   ========================================= */
.pricing-container {
    max-width: 1275px;
    margin: 0 auto;
}

.pricing-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 74, 124, 0.1);
    border: 1px solid rgba(0, 74, 124, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.pricing-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 40px 20px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
}

.pricing-body {
    padding: 40px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    display: inline-block;
}

.pricing-features li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #444;
}

.pricing-features li i {
    color: var(--gold-accent);
    margin-right: 15px;
    font-size: 1.3rem;
}

/* =========================================
   7. GALLERY
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.lb-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.lb-img:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

/* =========================================
   8. LIGHTBOX
   ========================================= */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    border: 4px solid var(--white);
    border-radius: 5px;
}

.close, .prev, .next {
    position: absolute;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

.close { top: 20px; right: 35px; }
.prev { left: 20px; padding: 10px; }
.next { right: 20px; padding: 10px; }

.close:hover, .prev:hover, .next:hover {
    color: var(--gold-accent);
}

/* =========================================
   9. FOOTER
   ========================================= */
.footer {
    padding: 30px;
    text-align: center;
    background: #1a1a1a;
    color: #888;
    font-size: 0.9rem;
}

/* =========================================
   10. MEDIA QUERIES
   ========================================= */

/* Tablets */
@media (max-width: 768px) {
    .grid-2, 
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Phones */
@media (max-width: 600px) {
    .price { font-size: 2.8rem; }
    .pricing-body { padding: 25px; }
    .section { padding: 60px 0; }
}

/* FOOTER CONTACT GRID */
.footer-style-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}

.contact-col h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.contact-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold-accent);
}

.contact-col p {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.contact-col i {
    color: var(--gold-accent);
    margin-right: 10px;
    width: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.map-mini {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #333;
    line-height: 0;
}

@media (max-width: 992px) {
    .footer-style-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .footer-style-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* LOCATION SECTION STYLES */
.bg-white {
    background-color: var(--white);
}

.grid-2-location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-text-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-slate);
}

.location-description h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.location-description p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 500px;
}

.location-points {
    list-style: none;
    margin-top: 20px;
}

.location-points li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-main);
    font-weight: 600;
}

.location-points li i {
    color: var(--primary-blue);
    margin-right: 15px;
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

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

.map-wrapper-blue {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid var(--accent-sand);
    transition: all 0.5s ease;
}

@media (max-width: 992px) {
    .grid-2-location {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .location-description p {
        margin: 0 auto 25px;
    }
    
    .location-points li {
        justify-content: center;
    }
}

/* LANGUAGE DROPDOWN */
.lang-dropdown {
    position: relative;
    cursor: pointer;
    margin-left: 20px;
}

.lang-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.lang-selected img {
    width: 20px;
}

.lang-options {
    position: absolute;
    top: 35px;
    right: 0;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
    display: none;
    min-width: 160px;
    z-index: 999;
}

.lang-options div {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.lang-options div:hover {
    background: var(--accent-sand);
}

.lang-options img {
    width: 20px;
}

.lang-dropdown.active .lang-options {
    display: block;
}

/* HIDE GOOGLE TRANSLATE UI */
.goog-te-banner-frame.skiptranslate,
.goog-te-combo,
.goog-logo-link,
.goog-te-gadget span,
iframe.goog-te-banner-frame,
.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

body {
    top: 0 !important;
    position: static !important;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--primary-blue);
    z-index: 1002;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .navbar {
        height: auto !important;
        min-height: 80px;
        padding: 10px 0;
        display: flex;
        align-items: center;
        /* Line removed here as well */
    }

    .nav-container {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0 15px;
        position: relative;
    }

    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .logo-top {
        font-size: 1.3rem;
        display: block;
        line-height: 1.2;
    }

    .logo-sub {
        font-size: 0.8rem;
        display: block;
        font-weight: 400;
    }

    .menu-toggle {
        display: block !important;
        position: absolute;
        left: 20px; 
        right: auto;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.8rem;
        color: var(--primary-blue);
        z-index: 1100;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: -100%;
        transition: 0.4s ease-in-out;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        padding: 40px 0;
        z-index: 1050;
        text-align: center;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

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

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        margin-left: 0 !important;
        font-size: 1.3rem;
    }

    .lang-dropdown {
        margin-left: 0;
        margin-top: 10px;
        display: flex;
        justify-content: center;
    }

    .lang-options {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }
}

/* PRICING GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .pricing-grid { grid-template-columns: 1fr; }
}