﻿/* =======================================================
   BANZAI-DOJO
   STARTSEITE / HOME.CSS
======================================================= */


/* ===== FARBEN & DESIGN SYSTEM ===== */
:root{
--red:#d6001c;
--dark:#070707;
--card:#111;
--text:#f5f5f5;
--muted:#b8b8b8;
--green:#25D366;
}


/* ===== RESET & BASIS ===== */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:var(--dark);
color:var(--text);
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}


/* =======================================================
   HERO-BEREICH
======================================================= */

header{
padding:120px 20px 60px;
text-align:center;
}

.hero{
background:
linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
url("hero.png");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
padding:140px 20px 80px;
text-align:center;
}

.hero-content{
max-width:700px;
margin-left:8%;
text-align:left;
}

.hero-logo{
display:block;
margin:0 auto 20px auto;
max-width:180px;
}

h1{
font-size:4rem;
line-height:1.1;
margin-bottom:24px;
}

h1 span{
color:var(--red);
}

.hero p{
font-size:1.1rem;
color:var(--muted);
line-height:1.7;
}


/* ===== HERO CHECKLISTE ===== */
.check-list{
display:flex;
flex-direction:column;
gap:16px;
margin:30px 0;
}

.check-item{
display:flex;
align-items:center;
gap:14px;
color:#fff;
font-size:1.2rem;
font-weight:500;
}

.check-icon{
width:28px;
height:28px;
min-width:28px;
border:2px solid #e0001b;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
font-weight:700;
color:#ffffff;
line-height:1;
}


/* ===== CTA BUTTON ===== */
.cta-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:18px 34px;
border-radius:999px;
background:var(--red);
color:#fff;
text-decoration:none;
font-weight:700;
box-shadow:0 12px 35px rgba(214,0,28,0.35);
transition:0.3s;
}

.cta-btn:hover{
transform:translateY(-2px);
}


/* =======================================================
   TRUST BAR / VERTRAUENSELEMENTE
======================================================= */

.trust-bar{
background:#0b0b0b;
border-top:1px solid #1c1c1c;
border-bottom:1px solid #1c1c1c;
padding:24px 20px;
}

.trust-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
text-align:center;
}

.trust-item{
font-weight:600;
color:#ddd;
}


/* =======================================================
   ALLGEMEINE SEKTIONEN
======================================================= */

section{
max-width:1200px;
margin:auto;
padding:100px 20px;
}

.section-title{
text-align:center;
font-size:2.5rem;
margin-bottom:60px;
}


/* =======================================================
   TRAININGSPROGRAMME
======================================================= */

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
}

.card{
background:var(--card);
border-radius:22px;
overflow:hidden;
border:1px solid #1d1d1d;
transition:0.3s;
}

.card:hover{
transform:translateY(-6px);
}

.card img{
width:100%;
height:260px;
object-fit:cover;
}

.card-content{
padding:26px;
}

.card-content h3{
font-size:1.4rem;
margin-bottom:14px;
}

.card-content p{
color:var(--muted);
line-height:1.7;
}

.training-badge{
color:var(--red);
font-weight:700;
margin-bottom:12px;
font-size:0.95rem;
letter-spacing:0.5px;
}


/* =======================================================
   DISZIPLINEN
======================================================= */

.benefits{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}

a.discipline-link{
text-decoration:none;
color:inherit;
display:block;
}

.discipline-card{
background:#0f0f0f;
border:1px solid rgba(214,0,28,0.35);
border-radius:22px;
overflow:hidden;
transition:0.3s;
box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.discipline-card:hover{
transform:translateY(-6px);
}

.discipline-card img{
width:100%;
height:220px;
object-fit:cover;
}

.discipline-content{
padding:24px 20px 28px;
text-align:center;
}

.discipline-content h3{
font-size:1.5rem;
margin-bottom:10px;
font-weight:800;
}

.discipline-age{
display:inline-block;
background:var(--red);
padding:8px 16px;
border-radius:999px;
font-size:0.9rem;
font-weight:700;
margin-bottom:18px;
}

.discipline-content p{
color:var(--muted);
line-height:1.7;
font-size:0.95rem;
min-height:120px;
}


/* =======================================================
   WARUM BANZAI-DOJO
======================================================= */

.benefit{
background:#101010;
border:1px solid #1d1d1d;
border-radius:18px;
padding:28px;
text-align:center;
font-weight:600;
}


/* =======================================================
   MITGLIEDERSTIMMEN
======================================================= */

.testimonials{
display:grid;
gap:22px;
max-width:850px;
margin:auto;
}

.testimonial{
background:#101010;
border:1px solid #1d1d1d;
border-radius:18px;
padding:30px;
line-height:1.8;
color:#ddd;
}


/* =======================================================
   PROBETRAINING FORMULAR
======================================================= */

.form-section{
padding-top:40px;
}

.form-box{
background:linear-gradient(180deg,#111,#0a0a0a);
border:1px solid rgba(214,0,28,0.3);
border-radius:26px;
padding:50px;
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.form-box h2{
font-size:2.4rem;
margin-bottom:18px;
}

.form-box p{
color:var(--muted);
line-height:1.8;
}

form{
display:flex;
flex-direction:column;
gap:16px;
}

input,
textarea,
select{
background:#111;
border:1px solid #222;
color:#fff;
padding:16px;
border-radius:14px;
font-family:inherit;
}

button{
background:var(--red);
color:#fff;
border:none;
padding:18px;
border-radius:999px;
font-weight:700;
cursor:pointer;
}


/* =======================================================
   FOOTER
======================================================= */

footer{
padding:40px 20px;
text-align:center;
color:#888;
border-top:1px solid #1a1a1a;
margin-top:80px;
}


/* =======================================================
   COOKIE BANNER & WHATSAPP BUTTON
======================================================= */

.cookie-banner{
position:fixed;
bottom:20px;
left:20px;
right:20px;
background:#111;
border:1px solid #2a2a2a;
border-radius:18px;
padding:20px;
z-index:9999;
display:none;
}

.cookie-buttons{
display:flex;
gap:12px;
margin-top:16px;
flex-wrap:wrap;
}

.cookie-buttons button{
flex:1;
}

.cookie-accept{
background:var(--green);
}

.cookie-decline{
background:#333;
}

.whatsapp-btn{
position:fixed;
right:20px;
bottom:20px;
display:flex;
align-items:center;
justify-content:center;
background:var(--green);
color:#fff;
padding:16px 24px;
border-radius:999px;
text-decoration:none;
font-weight:700;
box-shadow:0 12px 35px rgba(0,0,0,0.35);
z-index:999;
}


/* =======================================================
   RESPONSIVE DESIGN / TABLET
======================================================= */

@media(max-width:1000px){

.cards,
.benefits,
.trust-grid,
.form-box{
grid-template-columns:1fr;
}

h1{
font-size:3rem;
}

.hero{
background-position:65% center;
}

.form-box{
padding:35px;
}

}


/* =======================================================
   RESPONSIVE DESIGN / MOBILE
======================================================= */

@media(max-width:700px){

.hero{
min-height:auto;
padding:85px 20px 55px;
background-position:70% center;
}

.hero-content{
margin-left:0;
text-align:center;
}

.hero-logo{
margin:0 auto 30px auto;
max-width:140px;
}

h1{
font-size:1.9rem;
line-height:1.2;
}

.hero p{
font-size:1rem;
}

.check-list{
align-items:center;
}

.check-item{
font-size:1rem;
}

.cta-btn,
button,
.whatsapp-btn{
width:100%;
justify-content:center;
}

.whatsapp-btn{
right:12px;
left:12px;
bottom:12px;
text-align:center;
}

.cookie-banner{
bottom:90px;
left:10px;
right:10px;
}

section{
padding:70px 20px;
}

.section-title{
font-size:2rem;
margin-bottom:40px;
}

}