:root {
    --black: #0a0a0a;
    --gold: #d4af37;
    --white: #ffffff;
    --gray: #a0a0a0;
}

body {
    margin: 0;
    background-color: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

/* Header & Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.logo span { color: var(--gold); }

nav ul { display: flex; list-style: none; gap: 30px; }

nav a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

nav a:hover { color: var(--gold); }

/* Orpheus Section */
#orpheus {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle, rgba(40,40,40,1) 0%, rgba(10,10,10,1) 100%);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
}

.gold-text { color: var(--gold); }

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--black);
}
