/* ============================= */
/* RESET */
/* ============================= */

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

html {
    height: 100%;
    background: #fff;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0d0d0d;
    color: #eaeaea;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ============================= */
/* NAVBAR */
/* ============================= */

.navbar {
    background: #111;
    border-bottom: 1px solid #1f1f1f;
    position: relative;
    z-index: 100;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ============================= */
/* LOGO */
/* ============================= */

.logo img {
    height: 32px;
    width: auto;
    display: block;
}

/* ============================= */
/* DESKTOP NAV */
/* ============================= */

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links li a {
    text-decoration: none;
    font-size: 14px;
    color: #cfcfcf;
    transition: 0.25s ease;
}

.nav-links li a:hover {
    color: #fff;
}

/* ============================= */
/* HAMBURGER */
/* ============================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    transition: 0.3s ease;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================= */
/* MOBILE NAV */
/* ============================= */

@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
        z-index: 9999;
    }

    .nav-links {

        position: fixed;
        inset: 0;

        background: #111;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;

        transform: translateY(-100%);
        opacity: 0;

        transition: transform 0.4s ease, opacity 0.3s ease;

        pointer-events: none;
        z-index: 9998;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li a {
        font-size: 18px;   /* adjust to your preference */
        font-weight: 600;  /* optional - makes it look premium */
    }
    
    body.no-scroll {
        overflow: hidden;
    }
}

/* ============================= */
/* TYPOGRAPHY */
/* ============================= */

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

main {
    flex: 1;
}

h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 30px;
}

h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #c9c9c9;
    margin-bottom: 20px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul li {
    margin-bottom: 8px;
    color: #c9c9c9;
}

/* ============================= */
/* FOOTER */
/* ============================= */

footer {
    background: #111;
    border-top: 1px solid #1f1f1f;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    color: #888;
}