/* CSS Variables */
:root {
    --bg: #DCD7C9;
    --primary: #2C3930;
    --secondary: #3F4F44;
    --accent: #A27B5C;
}

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

body {
    font-family: Inter, system-ui;
    background: var(--bg);
    color: var(--primary);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    background: rgba(220, 215, 201, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.logo {
    font-size: 20px;
    font-weight: 700;
}

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: var(--accent);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }
}