﻿/* =======================================================
   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;
}

}
/* =======================================================
   FOOTER
======================================================= */

footer{
display:block;
width:100%;
clear:both;
text-align:center !important;
background:#050505;
border-top:1px solid rgba(255,255,255,0.08);
padding:50px 20px 35px;
text-align:center;
margin-top:80px;
}

.footer-contact{
color:rgba(255,255,255,0.82);
font-size:0.95rem;
line-height:1.8;
margin-bottom:20px;
width:100%;
text-align:center !important;
}

.footer-contact strong{
color:#fff;
font-size:1.05rem;
font-weight:700;
}

.footer-contact,
.footer-links{
display:block;
width:100%;
}

.footer-links{
margin-bottom:18px;
}

.footer-links a{
color:#d6001c;
text-decoration:none;
font-weight:600;
margin:0 8px;
transition:0.3s;
}

.footer-links a:hover{
opacity:0.8;
}

footer{
color:rgba(255,255,255,0.55);
font-size:0.9rem;
}

footer,
.footer-contact,
.footer-links{
text-align:center !important;
margin-left:auto !important;
margin-right:auto !important;
}

/* ===== MOBILE ===== */
@media(max-width:700px){

footer{
padding:40px 15px 30px;
}

.footer-contact{
font-size:0.88rem;
line-height:1.7;
}

.footer-links a{
display:inline-block;
margin:4px 6px;
font-size:0.9rem;
}

}
/* =======================================================
   LEGAL PAGES
======================================================= */

.legal-page{
max-width:900px;
margin:auto;
padding:140px 20px 80px;
}

.legal-page h1{
text-align:center;
margin-bottom:50px;
}

.legal-box{
background:#101010;
border:1px solid rgba(255,255,255,0.08);
border-radius:24px;
padding:40px;
}

.legal-box h2{
margin-top:35px;
margin-bottom:12px;
color:#d6001c;
font-size:1.2rem;
}

.legal-box h2:first-child{
margin-top:0;
}

.legal-box p{
line-height:1.8;
color:rgba(255,255,255,0.82);
}

@media(max-width:700px){

.legal-page{
padding:120px 15px 50px;
}

.legal-box{
padding:25px;
}

}
/* =======================================================
   WHATSAPP BUTTON
======================================================= */

.whatsapp-btn{
display:block;
width:fit-content;
margin:40px auto;
padding:16px 28px;

background:#25D366;
color:#fff;

text-decoration:none;
font-weight:600;
font-size:1rem;

border-radius:999px;

transition:0.3s ease;
box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.whatsapp-btn:hover{
transform:translateY(-3px);
opacity:0.95;
}


/* ===== MOBILE ===== */
@media(max-width:700px){

.whatsapp-btn{
width:90%;
text-align:center;
padding:15px 20px;
font-size:0.95rem;
}

}
.video-section{
max-width:1200px;
margin:auto;
padding:80px 20px;
}

.video-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
margin-bottom:70px;
}

.video-card{
background:#0f0f0f;
border:1px solid rgba(214,0,28,0.25);
border-radius:22px;
padding:25px;
}

.video-card h3{
margin-bottom:20px;
font-size:1.1rem;
font-weight:600;
}

.video-card video{
width:100%;
border-radius:14px;
display:block;
}
.video-hero{
min-height:45vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:120px 20px 60px;
}

.video-hero .logo{
width:140px;
margin-bottom:25px;
}

.video-hero h1{
font-size:clamp(2rem,4vw,4rem);
margin-bottom:15px;
}

.video-hero p{
max-width:700px;
margin:auto;
}