/* Custom Properties */
:root {
    --color-accent: #4BA3C3;
    --color-accent-dark: #3A829D;
    --color-bg-dark: #0f1419;
    --color-bg-light: #faf8f6;
    --color-text: #e8e6e3;
    --color-text-dark: #2d3436;
    --color-text-muted: #718096;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --container-width: 1200px;
    --section-padding: 7rem 0;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

.accent {
    color: var(--color-accent);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary, .btn-primary-sm, .btn-outline {
    display: inline-block;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
    font-weight: 600;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: #fff;
    padding: 16px 32px;
    box-shadow: 0 4px 20px rgba(75, 163, 195, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(75, 163, 195, 0.4);
    color: #fff;
}

.btn-primary-sm {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: #fff;
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-primary-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(75, 163, 195, 0.3);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 32px;
}

.btn-outline:hover {
    background: #fff;
    color: var(--color-bg-dark);
}

/* Typography Utilities */
.text-center { text-align: center; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background var(--transition-medium), padding var(--transition-medium), box-shadow var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
}

.navbar.scrolled .logo, .navbar.scrolled .nav-links a {
    color: #fff;
}

.navbar.scrolled .mobile-toggle {
    color: #fff;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.lang-switch {
    display: flex;
    gap: 10px;
    align-items: center;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 20px;
    margin-left: 10px;
}
.lang-switch a {
    color: rgba(255,255,255,0.6) !important;
    font-weight: 600;
    font-size: 0.9rem;
}
.lang-switch a.active {
    color: #fff !important;
}
.lang-switch a::after {
    display: none;
}

.nav-links a:not(.btn-primary-sm) {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    white-space: nowrap;
}

.nav-links a:not(.btn-primary-sm)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-fast);
}

.nav-links a:not(.btn-primary-sm):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.hero.loaded .hero-bg img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 50%, rgba(15,20,25,0.95) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 60px 50px;
    color: #fff;
    background: rgba(10, 15, 20, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    margin: 0 20px;
}

.hero-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

/* Sections */
.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-light {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.section-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.section-dark .section-desc {
    color: rgba(255,255,255,0.7);
}

/* 2 Column Layout */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.content-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(75, 163, 195, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.feature-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Glassmorphism Cards */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-card {
    text-align: center;
}

.amenity-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    background: rgba(75, 163, 195, 0.1);
    border-radius: 16px;
}

.amenity-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.amenity-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 20, 25, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Location Cards */
.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card .card-icon {
    color: var(--color-accent);
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-card p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

/* Contact Details */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(75, 163, 195, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    color: var(--color-text-muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-icon {
    width: 60px; height: 60px;
    background: rgba(75, 163, 195, 0.1);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.contact-text p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #0a0d10;
    color: #fff;
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    max-width: 400px;
    margin-top: 20px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox button {
    position: absolute;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2001;
}

.lightbox button:hover {
    color: #fff;
}

.lightbox-close { top: 30px; right: 30px; }
.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-2-col {
        grid-template-columns: 1fr;
    }
    
    .hero-title { font-size: 4rem; }

    .nav-links {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a { font-size: 1.5rem; }
    
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .lang-switch {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-left: 0;
        padding-top: 20px;
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    
    .hero-content {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .section-title { font-size: 2.2rem; }
    
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    
    .hero-actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
}
