/* 
  Anthony's Ultra-Luxury Design System v2.0
  The "Unlimited Budget" Aesthetic
*/

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

:root {
    /* Absolute Premium Palette */
    --bg-dark: #050505; /* Deepest Charcoal */
    --bg-card: rgba(255, 255, 255, 0.03); /* Faint Glass */
    --accent-gold: linear-gradient(45deg, #D4AF37, #F9E2AF); /* Artisan Gold */
    --accent-primary: #FF4D00; /* Signature Sunset Orange */
    --text-main: #FFFFFF;
    --text-dim: #888888;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 40px;
    
    /* Layout Tokens */
    --radius-premium: 24px;
    --transition-ultra: 1.2s cubic-bezier(0.22, 1, 0.36, 1); /* Agency-style ease */
}

html.lenis {
    height: auto;
}

.lenis-smart-scroll {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; } /* Custom Cursor ready */

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .luxury-font {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

/* --- Premium Foundations --- */

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-premium);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.btn-luxury {
    padding: 18px 40px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: var(--transition-ultra);
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: white;
    transition: var(--transition-ultra);
    z-index: -1;
}

.btn-luxury:hover {
    color: black;
    border-color: white;
}

.btn-luxury:hover::before {
    left: 0;
}

/* --- High-End HUD --- */

nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: white;
    text-decoration: none;
}

.nav-links {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: 0.4s;
}

.nav-links a:hover {
    opacity: 1;
}

/* --- The Immersive Hero --- */

#hero {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(rgba(5, 5, 5, 0.4), var(--bg-dark));
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 8rem;
    line-height: 0.9;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-dim);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* --- The Exclusive Menu --- */

.section-padding { padding: 15rem 10vw; }

.menu-item {
    padding: 40px;
    border-radius: var(--radius-premium);
    overflow: hidden;
}

.item-img-container {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.item-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-item:hover .item-img {
    transform: scale(1.1);
}

.item-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.item-name { font-size: 2rem; }
.item-price { font-size: 1.5rem; color: var(--accent-gold); }

/* --- Agency-Level Custom Cursor --- */

#custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 20px; height: 20px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

#custom-cursor-outline {
    position: fixed;
    top: 0; left: 0;
    width: 50px; height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Floating Concierge --- */

.chatbot-bubble {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 300px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}
