/* NAVBAR CSS */
:root {
    --nav-height: 64px;
    --accent-start: #2563eb;
    --accent-end: #2563eb;
}

/* body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system;
    background: #f6f7fb;
    color: #1f2937;
} */

/* === STICKY NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* === LOGO === */
.logo {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #111827;
    letter-spacing: -0.02em;
}

/* === LINKS === */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    font-size: 14px;
    color: #4b5563;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    /* background: #f3f4f6;
    color: #111827; */
    background: #eef2ff;
    color: #4338ca;
}


/* === HAMBURGER === */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111827;
    margin: 5px 0;
}

/* === MOBILE MENU === */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #e5e7eb;
        flex-direction: column;
        gap: 0;
        padding: 12px 16px;
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        padding: 12px;
        border-radius: 10px;
    }
}

/* === PAGE OFFSET FOR FIXED NAV === */
.page {
    /* padding-top: calc(var(--nav-height) + 24px); */
    padding-top: calc(var(--nav-height) + 4px);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* END */


* {
    box-sizing: border-box;
    /* font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; */
}

:root {
    --font-heading: "Poppins", Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body, button, input, textarea, select, date {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.45;
}

/* Headings */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
    /* margin: .4em 0 .6em; */
}


/* Error CSS */

.notfound {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4em 1em;
}

.notfound b {
    font-size: 1.5em;
    color: #2563eb;
    text-align: center;
}

.notfound h1 {
    font-size: 5em;
    text-align: center;
    margin: 0;
}

.notfound p {
    color: #444;
    text-align: center;
}

.notfound a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 0;
    font-weight: 600;
    /* font-size: 14px; */
    text-decoration: none;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: white;
    box-shadow: 0 8px 22px rgba(59, 130, 246, 0.14);
}


@media (max-width: 700px) {
    .notfound h1 {
        font-size: 3em;
    }
}

/* End */