/* ===== Catppuccin Latte Base Styles ===== */
:root {
    --base: #eff1f5;
    --text: #4c4f69;
    --subtext: #6c6f85;
    --accent: #dc8a78;
    --accent2: #7287fd;
    --surface: #e6e9ef;
    --overlay: #dce0e8;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--base);
    color: var(--text);
}

main {
    padding: 0% 3% 0% 3%;
}

/* ===== Navbar ===== */
nav {
    background: var(--surface);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-bar {
    display: flex;
    justify-content: center;
    gap: 2.5rem; /* slightly wider spacing */
}

.nav-bar a {
    color: var(--text) !important;  /* override global link color */
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.nav-bar a:hover {
    background: var(--overlay);
    color: var(--accent2) !important;
}

/* ===== Utility classes ===== */
a {
    color: var(--accent2);
    text-decoration: none;
}
a:hover {
    color: var(--accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header and forms */
header {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 3rem;
}


.base-form {
    max-width: 550px;
    margin: 5rem auto;
    background: var(--surface);
    padding: 2rem;
    border-radius: 1rem;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
}
