﻿/* ================= BASE ================= */

@font-face {
  font-family: 'Nidus Sans';
  src: local('Nidus Sans'),
    local('NidusSans'),
    url('nidsans-webfont.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #000;
  --color-text: #fff;
  --color-accent: #ff0000;
  --color-muted: #bbb;
  --color-muted-2: #aaa;
  --color-surface: rgba(10, 10, 10, 0.95);
  --shadow-strong: 0 4px 25px rgba(0, 0, 0, 0.8);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Nidus Sans', sans-serif;
}

body {
  margin: 0;
  font-family: inherit;
  background-color: var(--color-bg);
  color: var(--color-text);
}

p {
  font-style: italic;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: var(--color-surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-strong);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.navbar img {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.nav-tagline {
  color: var(--color-muted-2);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 45px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 2px;
  transition: 0.3s ease;
  position: relative;
  display: inline-block;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: 0.3s ease;
}

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

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a.active,
.nav-links li a[aria-current="page"] {
  color: var(--color-accent);
}

.nav-links li a.active::after,
.nav-links li a[aria-current="page"]::after {
  width: 100%;
}

/* ================= BOTTOM SOCIAL BAR ================= */

.social-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--color-surface);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 18px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.social-bar a {
  color: var(--color-text);
  font-size: 26px;
  text-decoration: none;
  transition: 0.3s ease;
  letter-spacing: 2px;
}

.social-bar a:hover {
  color: var(--color-accent);
  text-shadow: 0 0 10px var(--color-accent);
  transform: scale(1.1);
}


.nav-tagline span {
  display: block;
}


