/* ========================================
   CSS Variables & Base Styles
   ======================================== */

:root {
    /* Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #151515;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent-gold: #c9a962;
    --accent-gold-hover: #dbb970;
    --line-color: rgba(255, 255, 255, 0.2);
    --line-active: #ffffff;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100vh;
    width: 100vw;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* ========================================
   Fixed UI Elements
   ======================================== */

.fixed-ui {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 100;
}

.fixed-ui>* {
    pointer-events: auto;
}

/* Brand Name - Hidden on desktop (shown in sidebar), visible on mobile */
.brand-name {
    position: absolute;
    top: 2rem;
    left: calc(120px + 2rem);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    display: none;
    /* Hidden by default since sidebar shows the logo */
}

/* ========================================
   Geneser Menu Overlay
   ======================================== */
.geneser-menu-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: rgb(245, 245, 240);
    z-index: 1000;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.geneser-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}