/* Bella Luz | Elite Luxury Design System (v3) */

:root {
    /* Color Palette */
    --color-obsidian: #0A0A0A;
    --color-silk: #FDFBFA;
    --color-gold: #D4AF37;
    /* More vibrant Metallic Gold */
    --color-gold-muted: rgba(201, 168, 124, 0.4);
    --color-slate: #555555;
    --color-smoke: rgba(255, 255, 255, 0.05);

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --transition-elite: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast: all 0.3s ease;
    --container-wide: 1440px;
    --container-narrow: 900px;
}

/* Base Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Controlled by Luxury Cursor */
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-obsidian);
}

body {
    background-color: var(--color-silk);
    color: var(--color-obsidian);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    padding: 0 5%;
    margin: 0 auto;
}

.container-wide {
    max-width: var(--container-wide);
}

.container-narrow {
    max-width: var(--container-narrow);
}

/* Typography Utilities */
.didot-ital {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
}

.elite-subheading {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Luxury Cursor */
.luxury-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}

.luxury-cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold-muted);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Elite Navigation */
.elite-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

.elite-nav.scrolled {
    padding: 15px 0;
    background: rgba(253, 251, 250, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.elite-nav.scrolled .nav-logo,
.elite-nav.scrolled .nav-link {
    color: var(--color-obsidian);
    text-shadow: none;
}

.elite-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    text-decoration: none;
    color: white;
    /* Force white for hero overlap */
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-link {
    text-decoration: none;
    color: white;
    /* Force white for hero overlap */
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    opacity: 0.8;
    transition: var(--transition-fast);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    opacity: 1;
    color: var(--color-gold);
}

.btn-whatsapp-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #DDBBBA;
    /* Rosa Palo */
    color: white;
    padding: 12px 25px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: var(--transition-elite);
}

.btn-whatsapp-compact:hover {
    transform: translateY(-2px);
    background: #25D366;
}

/* Master Hero */
.master-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--color-obsidian);
    /* Base dark color */
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -2;
}

.hero-large-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    /* Slightly darken the image */
}

.hero-overlay-cinematic {
    position: absolute;
    inset: 0;
    background: linear-gradient(75deg,
            rgba(10, 10, 10, 0.9) 0%,
            rgba(10, 10, 10, 0.6) 40%,
            rgba(10, 10, 10, 0.2) 100%);
    z-index: -1;
}

.hero-content-elite {
    max-width: 850px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* Subtle depth for legibility */
}

.hero-kicker {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #DDBBBA;
    /* Rosa Palo */
    margin-bottom: 2rem;
    animation: fadeUp 1s ease-out forwards;
}

.hero-main-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    line-height: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: #DDBBBA;
    /* Dusty Rose / Rosa Palo */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
    opacity: 0;
    /* Initial state for animation */
}

.hero-tagline {
    font-size: 1.2rem;
    max-width: 550px;
    margin-bottom: 3.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-btn-group {
    display: flex;
    gap: 25px;
    animation: fadeUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-elite-primary {
    background: #DDBBBA;
    /* Rosa Palo */
    color: white;
    padding: 22px 45px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: var(--transition-elite);
}

.btn-elite-primary i {
    font-size: 1.2rem;
}

.btn-elite-primary:hover {
    background: #25D366;
    transform: scale(1.05);
}

.btn-elite-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 22px 45px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-elite);
}

.btn-elite-secondary:hover {
    background: white;
    color: var(--color-obsidian);
}

/* Scroll Track */
.hero-scroll-control {
    position: absolute;
    bottom: 50px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    opacity: 0.5;
}

.scroll-track {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-thumb {
    width: 100%;
    height: 30%;
    background: var(--color-gold);
    position: absolute;
    top: 0;
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(350%);
    }
}

/* Boutique Salon Section */
.boutique-salon {
    padding: 180px 0;
}

.boutique-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.boutique-p {
    font-size: 1.15rem;
    color: var(--color-slate);
    margin-bottom: 4rem;
}

.boutique-stats {
    display: flex;
    gap: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
}

.stat-lab {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    opacity: 0.5;
}

.boutique-visual-frame {
    position: relative;
    padding: 40px;
}

.frame-border {
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-gold);
    opacity: 0.3;
}

.boutique-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* Exclusive Menu */
.exclusive-menu {
    padding: 150px 0;
    background-color: #F8F5F2;
}

.menu-header {
    text-align: center;
    margin-bottom: 80px;
}

.menu-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
}

.menu-main-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.menu-item-luxury {
    padding: 40px;
    background: #EDE0D4;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-elite);
}

.menu-item-luxury:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.item-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
}

.item-price {
    font-weight: 600;
    color: var(--color-gold);
    font-size: 0.9rem;
}

.item-desc {
    color: var(--color-slate);
    max-width: 600px;
}

/* Gallery Immersive */
.gallery-immersive {
    padding: 150px 0;
}

.gallery-grid-cinematic {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.gallery-cell {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-cell:hover img {
    transform: scale(1.1);
}

.cell-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-cell:hover .cell-overlay {
    opacity: 1;
}

.overlay-tag {
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 1px solid white;
    padding: 10px 20px;
}

/* Elite Footer */
.elite-footer {
    padding: 100px 0 50px;
    background: var(--color-obsidian);
    color: white;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 80px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-motto {
    font-family: var(--font-display);
    font-style: italic;
    opacity: 0.6;
    margin-bottom: 2.5rem;
}

.footer-location {
    display: flex;
    gap: 15px;
    align-items: center;
    opacity: 0.8;
}

.footer-heading {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.footer-cta-wa,
.footer-cta-ig {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    text-decoration: none;
    color: white;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.footer-cta-wa:hover {
    color: #25D366;
}

.footer-cta-ig:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    font-size: 0.7rem;
    opacity: 0.4;
    text-align: center;
}

/* Responsive Elite */
@media (max-width: 1024px) {

    .boutique-grid,
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content-elite {
        text-align: center;
        margin: 0 auto;
    }

    .hero-btn-group {
        justify-content: center;
    }

    .gallery-grid-cinematic {
        grid-template-columns: 1fr;
    }
}