/* =========================================
   1. SETUP & VARIABLES
   ========================================= */
:root {
    --glass-bg: rgba(255, 255, 255, 0.08); /* Very transparent white */
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: 12px;
    --text-white: #ffffff;
    --text-off: #e0e0e0;
    --accent-gold: #e6c77c;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Allura', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-white);
    background-color: #05162b;
    overflow-x: hidden;
}

/* =========================================
   2. IMMERSIVE BACKGROUND
   ========================================= */
.ocean-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('uploads/ocean-bg1.avif') no-repeat center center/cover;
}

.ocean-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(5, 22, 43, 0.4), rgba(5, 22, 43, 0.85));
}

/* =========================================
   3. BUBBLES ANIMATION
   ========================================= */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rise 15s infinite ease-in;
}

.bubble:nth-child(1) { width: 40px; left: 10%; animation-duration: 8s; }
.bubble:nth-child(2) { width: 20px; left: 20%; animation-duration: 12s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 50px; left: 35%; animation-duration: 10s; animation-delay: 4s; }
.bubble:nth-child(4) { width: 30px; left: 60%; animation-duration: 14s; animation-delay: 1s; }
.bubble:nth-child(5) { width: 45px; left: 80%; animation-duration: 9s; animation-delay: 3s; }

@keyframes rise {
    0% { bottom: -50px; transform: translateX(0); opacity: 0; }
    20% { opacity: 1; }
    100% { bottom: 110%; transform: translateX(-50px); opacity: 0; }
}

/* =========================================
   4. GLASS NAVIGATION
   ========================================= */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
}

.glass-nav.scrolled {
    background: rgba(5, 22, 43, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: 0.3s;
}

.nav-links a:hover { opacity: 1; color: var(--accent-gold); }

.mobile-toggle { display: none; cursor: pointer; font-size: 1.5rem; }

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 22, 43, 0.95);
    backdrop-filter: blur(10px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: 0.4s;
}

.mobile-menu-overlay.active { right: 0; }
.mobile-menu-overlay a {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
}
.close-menu { position: absolute; top: 30px; right: 30px; font-size: 2rem; cursor: pointer; }

/* =========================================
   5. GLASS CARDS & SECTIONS
   ========================================= */
.full-screen-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    position: relative;
}

.glass-card, .glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.25),
        inset 0 0 20px rgba(255,255,255,0.05);
    color: var(--text-white);
    max-width: 1000px;
    width: 100%;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.script-title {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 5px;
}

h1 { font-size: 4rem; line-height: 1; margin-bottom: 20px; font-family: var(--font-heading); }
h2 { font-size: 3rem; margin-bottom: 20px; font-family: var(--font-heading); }
h3 { font-size: 1.5rem; margin-bottom: 10px; font-family: var(--font-heading); color: var(--accent-gold); }
p { font-size: 1.1rem; line-height: 1.6; color: var(--text-off); }

.hero-card { text-align: center; max-width: 800px; padding: 60px 40px; border: 1px solid rgba(255,255,255,0.3); box-shadow: 0 0 80px rgba(230,199,124,0.08), 0 20px 60px rgba(0,0,0,0.4); }

.split-card { display: flex; gap: 40px; align-items: center; padding: 0; overflow: hidden; }
.card-image { flex: 1; height: 100%; min-height: 400px; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-content { flex: 1; padding: 40px; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
.glass-mini-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}
.glass-mini-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.glass-mini-card i { font-size: 2rem; margin-bottom: 15px; color: var(--accent-gold); }

.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; }
.process-step { text-align: center; padding: 20px; }
.step-num { font-size: 3rem; font-family: var(--font-heading); color: rgba(255,255,255,0.1); font-weight: 700; margin-bottom: -15px; position: relative; z-index: 0; }
.process-step h3 { z-index: 1; position: relative; }

.menu-card { max-width: 800px; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.menu-list { list-style: none; margin-top: 20px; }
.menu-list li { margin-bottom: 10px; display: flex; align-items: baseline; }
.item-name { font-weight: 600; font-size: 1.1rem; }
.item-dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,0.4); margin: 0 10px; }
.item-price { color: var(--accent-gold); font-weight: 700; }
.item-desc { font-size: 0.9rem; font-style: italic; color: rgba(255,255,255,0.6); margin-top: -5px !important; margin-bottom: 20px !important; display: block !important; }

.faq-card { max-width: 800px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 15px; padding-bottom: 15px; }
summary { font-size: 1.2rem; cursor: pointer; font-family: var(--font-heading); font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: '+'; color: var(--accent-gold); font-size: 1.5rem; }
details[open] summary::after { content: '-'; }
details p { margin-top: 10px; font-size: 1rem; color: var(--text-off); }

.gallery-scroller { display: flex; overflow-x: auto; gap: 15px; padding-bottom: 10px; }
.g-img { height: 300px; border-radius: 10px; opacity: 0.8; transition: 0.3s; cursor: pointer; filter: brightness(0.85) contrast(1.05); }
.g-img:hover { transform: scale(1.08); opacity: 1; filter: brightness(1) contrast(1.1); box-shadow: 0 15px 35px rgba(0,0,0,0.4); }

.contact-card { text-align: center; max-width: 600px; }
.contact-details { margin: 30px 0; }
.c-item { margin-bottom: 10px; font-size: 1.2rem; }

.btn-glow {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(230,199,124,0.25);
    transition: 0.4s;
}

.btn-glow:hover::before {
    width: 100%;
}

.btn-glow:hover {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 15px var(--accent-gold);
}

.big-btn { margin-top: 20px; font-weight: bold; }

.scroll-down { margin-top: 40px; opacity: 0.7; animation: bounce 2s infinite; }
.scroll-down span { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.small-text { font-size: 0.8rem; opacity: 0.6; }

.stat-row { display: flex; gap: 30px; margin-top: 30px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat i { font-size: 1.5rem; color: var(--accent-gold); display: block; margin-bottom: 5px; }
.stat .counter { font-size: 1.8rem; font-weight: 700; font-family: var(--font-heading); text-shadow: 0 0 12px rgba(230,199,124,0.6); }
.stat small { display: block; font-size: 0.8rem; opacity: 0.7; }

.glass-footer {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.5);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.15);
}

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* =========================================
   6. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .nav-links, .btn-glow { display: none; }
    .mobile-toggle { display: block; }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .split-card { flex-direction: column; }
    .card-image { width: 100%; min-height: 250px; }
    .glass-card { padding: 30px 20px; }

    .menu-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================
   PREMIUM UI ADDITIONS
   ========================================= */
body::before {
    content: "";
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 60%);
    animation: oceanLight 18s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes oceanLight {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(40px) rotate(2deg); }
}

.glass-card::after {
    content: "";
    position: absolute;
    top: -150%;
    left: -50%;
    width: 200%;
    height: 300%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(25deg);
    animation: shimmer 14s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}

/* Subtle Section Divider */
.full-screen-section::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(5,22,43,0.8));
    pointer-events: none;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.3); }
::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 10px; }
#home.full-screen-section {
    flex-direction: column; /* stack card + info strip */
}

.hero-info-strip {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px; /* space below card */
    flex-wrap: wrap; /* wrap on small screens */
}

.hero-info-strip span {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-off);
}
/* =========================================
   7. NEW ADDITIONS (Past at bottom of file)
   ========================================= */

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* Official WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.2);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
}

/* Lightbox (Full Screen Image) */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 22, 43, 0.95); /* Dark Blue background */
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
    border: 1px solid var(--accent-gold);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--accent-gold);
    font-size: 40px;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: white;
}
/* =========================================
   8. LANGUAGE PICKER (New Addition)
   ========================================= */
.lang-menu {
    position: relative;
    margin-left: 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    z-index: 101;
}

.selected-lang {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selected-lang:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: rgba(5, 22, 43, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    width: 140px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    list-style: none;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

/* Show dropdown on hover */
.lang-menu:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-off);
    text-decoration: none;
    transition: 0.2s;
    font-size: 0.85rem;
}

.lang-dropdown li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-gold);
    padding-left: 25px; /* Slide effect */
}

.lang-dropdown li a img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .lang-menu {
        margin-right: 40px; /* Space for hamburger icon */
    }
    .selected-lang span {
        display: none; /* Hide text "English", show only icon on small screens */
    }
}