/* ==================================== */
/* ========= HEADER =============== */
/* ==================================== */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    font-size: x-large;
}

.nav-bar ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

.nav-bar ul li a {
    transition: all 0.3s ease;
}

.nav-bar ul li a:hover {
    transform: uppercase;
    color: var(--text-accent);
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateY(-2px);
}

.nav-bar a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem 2rem;
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    transition: background 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    gap: 1rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot:hover {
    background: var(--text-accent);
    transform: scale(1.2);
}

.nav-dot.active {
    background: var(--text-accent);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-bar a {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 960px) {
    .nav-menu {
        display: none;
    }
}

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

footer {
    padding: 2rem 0;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
    font-size: 0.3rem;
}

footer ul {
  margin-top: 0px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 10px;
  list-style-type: none;
  padding: 0px;
  font-size: 1rem;
}

footer ul li {
    display: inline;
    color: var(--text-secondary);
}

footer ul li a {
    text-decoration: none;
    color: var(--text-accent);
    transition: color 0.3s ease;
}

footer ul li {
    color: var(--text-secondary);
}

footer ul li a:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    footer ul {
        font-size: 0.9rem;
    }
}

/* ==================================== */
/* ===== SCROLL ANIMATIONS  ====== */
/* ==================================== */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================================== */
/* ===== BACKGROUND  ====== */
/* ==================================== */
/* kinda out of place but is what it is */

#background-image {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  opacity: 0.35;
  pointer-events: none;
}