/* main {
    min-height: 100vh;
    padding: 2rem;
}

main section {
    max-width: 1200px;
    margin: 0 auto;
}

main section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
/* Navbar */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

nav .logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #222;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007BFF;
}
*/

/* ===========================
   Theme Variables
=========================== */

:root {
    --bg-color: #0d1117;
    --surface-color: #161b22;
    --text-color: #f0f6fc;
    --secondary-text: #c9d1d9;
    --accent-color: #58a6ff;
    --border-color: #30363d;

    --border-radius: 12px;

    --transition: 0.3s ease;

    --max-width: 1200px;
}

/* ===========================
   Global Reset
=========================== */

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

/* ===========================
   Body
=========================== */

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* ===========================
   Navbar
=========================== */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1rem 2rem;

    background: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
}

nav .logo {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: color var(--transition);
}

nav a:hover {
    color: var(--accent-color);
}

/* ===========================
   Main Layout
=========================== */

main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}
