:root {
    --rcs-accent: #ffd166;
    --rcs-dark: #0f0f0f;
    --rcs-glass: rgba(20, 20, 20, 0.75);
}

body {
    margin: 0;
    background: #000;
    color: #f3f3f3;
    font-family: 'Inter', sans-serif;
}

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

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

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

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

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

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

main {
    padding-top: 100px;
    position: relative;
    z-index: 5;
}

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

footer h3 {
    font-family: 'Playfair Display', serif;
    color: var(--rcs-accent);
}

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

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

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

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

@media (max-width: 768px) {

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