/* --- CSS Reset & General --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Prevent body scroll when mobile menu is open */
body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Animations --- */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Enhanced Scroll Reveal Utility Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95) translateY(30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- Top Bar --- */
.top-bar {
    background-color: #0a0a0a;
    color: #eeeeee;
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    position: relative;
    z-index: 20;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-left i {
    margin-right: 6px;
    color: #d4af37;
}

/* --- Glassmorphism Navigation --- */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.nav-group {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-group.left { justify-content: flex-start; }
.nav-group.right { justify-content: flex-end; gap: 30px; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
}

.nav-links li a {
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links li a:hover { color: #d4af37; }

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Brand Logo */
.brand-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    flex: 0 0 auto;
    position: relative;
    z-index: 101; /* Stay above mobile menu */
}

.brand-logo h1 {
    font-weight: 400;
    font-size: 19px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #111;
}

.brand-logo span {
    font-size: 9px;
    letter-spacing: 8px;
    margin-top: 6px;
    color: #777;
}

/* Modern Button */
.btn-reserve {
    border: 1px solid #111;
    background: transparent;
    color: #111;
    padding: 12px 28px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    white-space: nowrap;
}

.btn-reserve::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #111;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-reserve:hover::before { left: 0; }
.btn-reserve:hover { color: #fff; border-color: #111; }

/* --- Mobile Navigation & Hamburger --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 102; /* Stay above mobile menu */
    padding: 0;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #111;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(15px); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.mobile-nav-links li {
    margin: 25px 0;
    overflow: hidden;
}

.mobile-nav-links li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #111;
    text-transform: uppercase;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding-bottom: 5px;
    position: relative;
}

/* Staggered Animation for Mobile Links */
.mobile-menu.active .mobile-nav-links li a {
    transform: translateY(0);
    opacity: 1;
}
.mobile-menu.active .mobile-nav-links li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) a { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) a { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) a { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(6) a { transition-delay: 0.35s; }
.mobile-menu.active .mobile-nav-links li:nth-child(7) a { transition-delay: 0.4s; }

.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
    color: #d4af37;
}

.mobile-menu .btn-reserve {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    font-size: 13px;
    padding: 15px 40px;
}

.mobile-menu.active .btn-reserve {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* --- Gallery Hero Section --- */
.hero-gallery {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s linear infinite alternate;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-text-container {
    position: relative;
    text-align: center;
    color: #ffffff;
    z-index: 3;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-size: 45px;
    letter-spacing: 10px;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    opacity: 0;
    text-transform: uppercase;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

/* --- Intro Section --- */
.gallery-intro {
    text-align: center;
    padding: 100px 20px 60px;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-intro h2 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 25px;
}

.gallery-intro p {
    font-size: 13px;
    line-height: 2;
    color: #555;
    font-weight: 400;
}

/* --- Modern Asymmetrical Grid Layout --- */
.modern-gallery-container {
    padding: 0 5% 100px;
    background-color: #ffffff;
    max-width: 1600px;
    margin: 0 auto;
}

.modern-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 15px;
}

.gal-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gal-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gal-item:hover::after {
    opacity: 1;
}

/* Grid Spanning Classes for the Collage Look */
.gal-large {
    grid-column: span 2;
    grid-row: span 2;
}
.gal-tall {
    grid-column: span 1;
    grid-row: span 2;
}
.gal-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* --- Instagram/Gallery Footer Section --- */
.gallery-section {
    background-color: #faf9f6;
    padding: 80px 0 0; 
    border-top: 1px solid #f0f0f0;
}

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

.gallery-header h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #111;
    text-transform: uppercase;
    transition: color 0.3s ease;
    cursor: pointer;
}

.gallery-header h3:hover {
    color: #d4af37;
}

.gallery-grid {
    display: flex;
    width: 100%;
    height: 400px;
}

.gallery-bottom-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid #ffffff;
}
.gallery-bottom-item:last-child { border-right: none; }

.gallery-bottom-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 32px;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.gallery-bottom-item:hover .gallery-play-icon {
    transform: translate(-50%, -50%) scale(1.15);
    color: #d4af37;
}

/* --- Modern Dark Footer --- */
.site-footer {
    background-color: #050505;
    color: #aaaaaa;
    padding: 80px 40px 30px;
    font-size: 11px;
    line-height: 1.8;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col { flex: 1; min-width: 220px; }
.footer-col.brand { flex: 1.5; }

.footer-col h4 {
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
}

.footer-logo span {
    display: block;
    font-size: 8px;
    letter-spacing: 6px;
    margin-top: 5px;
    color: #777;
    text-align: center;
}

.footer-col p { margin-bottom: 15px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
}
.footer-links a:hover { color: #d4af37; }

.footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #ffffff;
}
.footer-socials a { transition: color 0.3s ease; }
.footer-socials a:hover { color: #d4af37; }

.newsletter-form {
    display: flex;
    margin-top: 15px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.newsletter-input {
    flex: 1;
    padding: 8px 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 11px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}
.newsletter-input::placeholder { color: #777; }

.newsletter-btn {
    background: transparent;
    color: #ffffff;
    border: none;
    font-size: 12px;
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.3s ease;
}
.newsletter-btn:hover { color: #d4af37; }

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    max-width: 1400px;
    margin: 60px auto 0;
    padding-top: 25px;
    text-align: center;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #555;
    text-transform: uppercase;
}

/* --- Floating Widgets --- */
.whatsapp-widget {
    position: fixed; 
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 90;
    transition: transform 0.3s ease;
    animation: pulseGlow 2s infinite;
}

.whatsapp-widget:hover { transform: translateY(-5px) scale(1.05); }

.language-selector {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 90;
    transition: all 0.3s ease;
    color: #333;
}

.language-selector:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.language-selector img {
    width: 18px;
    border-radius: 2px;
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .nav-group { display: none; } /* Hide all desktop links */
    .navbar { 
        justify-content: center; 
        padding: 15px 25px; 
        position: relative; /* Context for absolutely positioned hamburger */
        min-height: 75px;
    }
    .brand-logo { margin: 0 auto; z-index: 102; max-width: calc(100% - 90px); }
    .hamburger { 
        display: flex; 
        position: absolute; 
        right: 25px; 
        top: 50%; 
        transform: translateY(-50%); 
    }
}

@media (max-width: 992px) {
    .modern-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    .gal-large { grid-column: span 2; }
    .gallery-grid { flex-wrap: wrap; height: auto; }
    .gallery-bottom-item { flex: 0 0 50%; height: 300px; border-bottom: 1px solid #fff; }
}

@media (max-width: 768px) {
    .top-bar { flex-direction: column; gap: 8px; text-align: center; padding: 10px 15px; }
    .top-bar-left { justify-content: center; gap: 10px; }
    .top-bar-left span { display: block; }

    .navbar { padding: 12px 20px; min-height: 65px; }
    .hamburger { right: 20px; }
    .brand-logo h1 { font-size: 16px; letter-spacing: 2px; }
    .brand-logo span { font-size: 8px; letter-spacing: 5px; }
    
    .mobile-nav-links a { font-size: 14px; letter-spacing: 3px; }

    .hero-gallery { height: 40vh; }
    .hero-title { font-size: 32px; letter-spacing: 6px; }

    .gallery-intro { padding: 70px 20px 40px; }
    .gallery-intro h2 { font-size: 22px; }

    .whatsapp-widget { width: 48px; height: 48px; font-size: 26px; bottom: 20px; right: 20px; }
    .language-selector { padding: 8px 14px; font-size: 10px; bottom: 25px; left: 20px; }

    .site-footer { padding: 60px 20px 30px; text-align: center; }
    .footer-col { min-width: 100%; align-items: center; display: flex; flex-direction: column;}
    .footer-socials { justify-content: center; }
    .newsletter-form { width: 100%; max-width: 300px; margin: 15px auto 0; }
}

@media (max-width: 576px) {
    .modern-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .gal-large, .gal-tall, .gal-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-bottom-item { flex: 0 0 100%; height: 300px; border-right: none;}
    
    .brand-logo h1 { font-size: 14px; letter-spacing: 1.5px; }
    .brand-logo span { font-size: 7px; letter-spacing: 4px; }
}