﻿/* =======================================================
   BANZAI-DOJO
   GLOBALE STYLES
   Wird auf allen Seiten geladen
======================================================= */


/* ===== RESET & BASIS ===== */
body{
margin:0;
font-family:'Poppins',sans-serif;
background:#070707;
color:#f5f5f5;
}

a{
color:inherit;
text-decoration:none;
}


/* =======================================================
   NAVIGATION
   Freistehende Glass-Bar Navigation
======================================================= */

.top-nav{
position:fixed;
top:12px;
left:50%;
transform:translateX(-50%);

width:calc(100% - 40px);
max-width:1100px;

padding:18px 30px;

display:flex;
align-items:center;
justify-content:center;

/* Glass-Effekt */
background:rgba(255,255,255,0.08);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);

/* Rahmen */
border:1px solid rgba(255,255,255,0.18);
border-radius:18px;

/* Tiefe / Schwebeeffekt */
box-shadow:
0 8px 30px rgba(0,0,0,0.45),
inset 0 1px 0 rgba(255,255,255,0.08);

z-index:9999;
}


/* ===== NAVIGATION LINKS ===== */
.nav-menu{
display:flex;
align-items:center;
justify-content:center;

gap:42px;
flex-wrap:wrap;
}

.nav-menu a{
color:#ffffff;
font-weight:500;
transition:0.3s;
}

.nav-menu a:hover{
color:#d6001c;
}
/* =======================================================
   MOBILE NAVIGATION
======================================================= */

@media(max-width:700px){

.top-nav{
top:8px;
width:calc(100% - 20px);
padding:10px 12px;
border-radius:14px;
}

.nav-menu{
gap:10px;
row-gap:6px;
}

.nav-menu a{
font-size:0.78rem;
font-weight:500;
}

}