*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: "Segoe UI", sans-serif;
    overflow-x: hidden;
}

img
{
    max-width: 100%;
    height: auto;
}

/* ====================================
   NAVBAR
==================================== */

.navbar
{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

    display: grid;

    grid-template-columns:
        250px
        1fr
        350px;

    align-items: center;

    padding: 0 30px;

    z-index: 1000;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    background: rgba(15,23,42,0.35);

    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.nav-logo
{
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 2px;

    color: #ffffff;
}

.nav-tagline
{
    text-align: center;

    font-size: 20px;
    font-weight: 500;

    opacity: 0.9;

    color: #ffffff;
}

.nav-menu
{
    list-style: none;

    display: flex;

    justify-content: flex-end;

    gap: 30px;
}

.nav-menu a
{
    text-decoration: none;

    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.nav-menu a:hover
{
    color: #60a5fa;
}