/* Prototype 2: The Darkroom (Cinematic/Luxury) */

/* Core Variables */
:root {
    --bg-core: #050505;
    --bg-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent-glow: rgba(255, 255, 255, 0.1);
    --font-display: 'Syncopate', sans-serif;
    /* Wide, futuristic/modern */
    --font-body: 'Manrope', sans-serif;
    /* Clean, readable */

    --nav-height: 80px;
}

body {
    background-color: var(--bg-core);
    color: var(--text-primary);
    font-family: var(--font-body);
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
.cinematic-title {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Utilities */
.text-glow {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.img-glow {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

/* Buttons */
.btn-cinema {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 1rem 3rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cinema:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}