/* Premium Variables */
:root {
    --gold: #D4AF37;
    --gold-dim: #b5952f;
    --bg-dark: #0A0A0A;
    --bg-light: #FAFAFA;
    --text-main: #222222;
    --text-muted: #666666;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    
    --ease: cubic-bezier(0.25, 1, 0.5, 1); 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Scroll Animations */
.fade-up { opacity: 0; transform: translateY(40px); transition: all 1.2s var(--ease); }
.fade-left { opacity: 0; transform: translateX(40px); transition: all 1.2s var(--ease); }
.fade-right { opacity: 0; transform: translateX(-40px); transition: all 1.2s var(--ease); }
.fade-in { opacity: 0; transition: all 1.5s var(--ease); }

.fade-up.active, .fade-left.active, .fade-right.active, .fade-in.active {
    opacity: 1;
    transform: translate(0);
}

/* Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}
.container-wide {
    max-width: 100%;
    padding: 100px 40px;
}
.text-center { text-align: center; }

/* Glassmorphism Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.6s var(--ease);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav.scrolled {
    padding: 15px 60px;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

nav .logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #fff;
    z-index: 1002;
}

nav ul { display: flex; list-style: none; }
nav ul li { margin: 0 20px; }
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.4s;
}

nav ul li a:hover { color: var(--gold); }

.btn-nav {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s var(--ease);
}
.btn-nav:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* Hamburger Icon for Mobile */
.hamburger {
    display: none;
    font-size: 24px;
    color: var(--gold);
    cursor: pointer;
    z-index: 1002;
}

.mobile-only-btn { display: none; }

/* Mobile View Navbar Settings */
@media (max-width: 768px) {
    nav { padding: 20px 30px; }
    
    .hamburger { display: block; }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.5s var(--ease);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

    nav ul.active { right: 0; }
    nav ul li { margin: 0; }
    
    .desktop-only-btn { display: none; }
    .mobile-only-btn { display: block; margin-top: 15px; }
}

/* Hero Section */
#home {
    height: 100vh;
    background-image: url('5.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

#home h1 {
    font-family: var(--font-heading);
    font-size: 70px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
}

/* Luxury Buttons */
.booking-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn-luxury {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 15px 35px;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.5s var(--ease);
}

.btn-luxury:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.dark-btn {
    border-color: var(--text-main);
    color: var(--text-main);
}
.dark-btn:hover {
    background: var(--text-main);
    color: var(--bg-light);
    border-color: var(--text-main);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: -100%; left: 0; width: 100%; height: 100%;
    background: #fff;
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Typography & Layouts */
.section-title {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 300;
    line-height: 1.2;
}

.separator {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 30px 0;
}
.separator.center { margin: 30px auto; }

.split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}
.split-layout .text-content, .split-layout .image-content { flex: 1; }
.split-layout p { color: var(--text-muted); font-size: 16px; font-weight: 300; }
.split-layout img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: -20px 20px 0px rgba(212, 175, 55, 0.1);
    transition: transform 1s var(--ease);
}

/* Dark Section (Services) */
.dark-section { background: var(--bg-dark); color: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.service-item { padding: 50px 30px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.6s var(--ease); }
.service-item:hover { background: rgba(255,255,255,0.02); border-color: rgba(212, 175, 55, 0.3); transform: translateY(-10px); }
.service-item i { font-size: 30px; color: var(--gold); margin-bottom: 25px; }
.service-item h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 400; margin-bottom: 15px; }
.service-item p { font-size: 14px; color: #999; font-weight: 300; }

/* Parallax Event Section */
.parallax-event {
    background-image: url('19.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 120px 20px;
    color: #fff;
}
.z-index-content { position: relative; z-index: 2; }

.event-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.event-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 300;
    color: #fff;
}

.event-description {
    max-width: 650px;
    margin: 0 auto 40px;
    color: #ccc;
    font-size: 16px;
    font-weight: 300;
}

/* Countdown Grid */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.timer-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 30px;
    min-width: 110px;
    text-align: center;
    transition: transform 0.4s var(--ease);
}

.timer-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.timer-box span {
    font-family: var(--font-heading);
    font-size: 45px;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.timer-box p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-top: 10px;
}

/* GALLERY WRAPPER & NAV BUTTONS */
.gallery-belt-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.gallery-belt-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.gallery-belt-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.belt-card {
    flex: 0 0 calc(25% - 15px);
    height: 400px;
    position: relative;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.15);
    cursor: pointer;
}

.belt-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.8s var(--ease), filter 0.5s ease;
}

.belt-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* Control Buttons */
.belt-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: all 0.4s var(--ease);
}

.belt-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.prev-btn { left: -25px; }
.next-btn { right: -25px; }

/* LIGHTBOX MODAL */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85vh;
    border: 1px solid var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
    object-fit: contain;
    animation: zoomIn 0.4s var(--ease);
}

@keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #fff;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.lightbox-close:hover { color: var(--gold); }

/* Additional Media Queries */
@media (max-width: 1024px) {
    .belt-card { flex: 0 0 calc(33.333% - 14px); }
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }
    .split-layout { flex-direction: column; gap: 40px; }
    .services-grid { grid-template-columns: repeat(1, 1fr); }
    #home h1 { font-size: 50px; }
}

@media (max-width: 768px) {
    .belt-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 480px) {
    .belt-card { flex: 0 0 100%; }
    #home h1 { font-size: 38px; }
}

/* Contact & Footer */
.contact-details p { font-family: var(--font-heading); font-size: 22px; margin: 10px 0; }

footer {
    background: var(--bg-dark);
    text-align: center;
    padding: 40px;
    color: #555;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-top: 1px solid rgba(255,255,255,0.05);
}