:root {
    --ril-accent: #d4af37;
    /* premium gold */
    --ril-bg: #0b0b0b;
    --ril-glass: rgba(20, 20, 20, 0.8);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--ril-bg);
    color: #f3f3f3;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(10, 10, 10, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ril-accent);
}

.logo h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--ril-accent);
}

main {
    padding-top: 110px;
    min-height: 80vh;
}

/* FOOTER */
footer {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem 2rem;
    text-align: center;
}

footer h3 {
    font-family: 'Playfair Display', serif;
    color: var(--ril-accent);
    margin-bottom: 1rem;
}

footer p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.footer-links {
    margin-top: 1.5rem;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {

    .nav-left,
    .nav-right {
        display: none;
    }
}
