/* Typography & Reset */
@font-face {
    font-family: "Geist";
    src: url("https://cdn.jsdelivr.net/font-geist/1.0.0/geist-regular.woff2") format("woff2");
}

:root {
    --bg: #0c0c0c;
    --fg: #f5f5f5;
    --accent: #c5a059; /* Luxury Gold */
    --muted: #888;
    --border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    font-family: "Geist", sans-serif;
    color: var(--fg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.text-center {
    text-align: center;
}
.mt-12 {
    margin-top: 3rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.max-w-2xl {
    max-width: 42rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-size: 1.25rem;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--fg);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-outline {
    border: 1px solid var(--accent);
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    filter: brightness(0.4);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    max-width: 800px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--muted);
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: var(--accent);
    transform-origin: top;
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
    }
    50% {
        transform: scaleY(1);
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Common Elements */
.label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.grid {
    display: grid;
    grid-template-cols: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.link-arrow {
    display: inline-block;
    margin-top: 2rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.link-arrow::after {
    content: " →";
    transition: transform 0.3s;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

/* Cards */
.salon-grid {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 2rem;
}

.salon-card {
    background: #151515;
    padding: 1rem;
    border: 1px solid var(--border);
}

.card-img {
    height: 400px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
}

.salon-card:hover .card-img img {
    transform: scale(1.05);
}

/* Suite Hero */
.suite-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.suite-hero img {
    width: 100%;
    height: 100%;
}

.suite-info {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-left: 4px solid var(--accent);
}

/* Footer */
footer {
    padding: 6rem 0 3rem;
    background: #050505;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 3rem;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.05);
    font-weight: 900;
}

.footer-nav {
    display: flex;
    gap: 6rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-col a,
.footer-col p {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: #444;
}

/* Reveal Animations */
.reveal-up,
.reveal-left,
.reveal-right,
.fade-in {
    opacity: 0;
    transition: all 1s ease-out;
}

.reveal-up {
    transform: translateY(30px);
}
.reveal-left {
    transform: translateX(-30px);
}
.reveal-right {
    transform: translateX(30px);
}

.active {
    opacity: 1 !important;
    transform: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .grid,
    .salon-grid {
        grid-template-cols: 1fr;
    }
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .navbar {
        padding: 1.5rem;
    }
    .section {
        padding: 4rem 0;
    }
}
