@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Playfair+Display:wght@400;700;900&family=Poppins:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --navy: #0D1230;
    --gold: #C8A46A;
    --gold-light: #D9BE8B;
    --white: #F8F8F8;
    --grey: #2C2C2C;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gold-gradient: linear-gradient(135deg, #C8A46A 0%, #D9BE8B 50%, #C8A46A 100%);
    --navy-gradient: linear-gradient(180deg, #0D1230 0%, #161B3D 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.cinzel {
    font-family: 'Cinzel', serif;
}

/* Glassmorphism */
.glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.glass-dark {
    background: rgba(13, 18, 48, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(200, 164, 106, 0.2);
}

/* Luxury Utilities */
.text-gold {
    color: var(--gold);
}

.bg-gold {
    background: var(--gold-gradient);
}

.border-gold {
    border-color: var(--gold);
}

.bg-navy {
    background: var(--navy);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--navy);
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-gold:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(200, 164, 106, 0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 1px solid var(--gold);
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: var(--navy);
    box-shadow: 0 0 20px rgba(200, 164, 106, 0.4);
}

/* Section Spacing */
section {
    padding: 100px 0;
}

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

/* Animations */
.reveal {
    opacity: 1;
    transform: none;
}

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
    padding: 20px 0;
}

header.scrolled {
    background: rgba(13, 18, 48, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 18, 48, 0.6);
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    color: var(--white);
}

/* Floating Elements */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-cta {
    position: fixed;
    right: -50px;
    top: 50%;
    transform: rotate(-90deg) translateY(-50%);
    z-index: 999;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        justify-content: space-between;
    }
    .nav-links {
        display: none;
    }
    section {
        padding: 60px 0;
    }
}
