﻿/* =======================================================
   BANZAI-DOJO
   ÜBER-MICH-SEITE / ABOUT.CSS
======================================================= */


/* ===== FARBEN & DESIGN SYSTEM ===== */
:root{
--red:#d6001c;
--dark:#070707;
--card:#101010;
--text:#f5f5f5;
--muted:#b8b8b8;
}


/* ===== BASIS ===== */
body{
line-height:1.7;
overflow-x:hidden;
}


/* =======================================================
   HERO-BEREICH
======================================================= */

header{
min-height:85vh;
background:
linear-gradient(to right, rgba(0,0,0,0.9) 25%, rgba(0,0,0,0.45) 65%, rgba(0,0,0,0.8) 100%),
url('trainer.jpg');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
display:flex;
align-items:center;
padding:60px 20px;
}

.hero{
max-width:1200px;
margin:auto;
width:100%;
}

.hero-layout{
display:flex;
align-items:flex-start;
justify-content:space-between;
gap:40px;
}

.hero-content{
max-width:700px;
}

.hero-photo-wrap{
flex-shrink:0;
}

.hero-photo{
width:320px;
height:420px;
object-fit:cover;
border-radius:24px;
border:3px solid rgba(255,255,255,0.12);
box-shadow:0 20px 40px rgba(0,0,0,0.45);
}

.logo{
width:140px;
margin-bottom:30px;
}

.badge{
display:inline-block;
padding:10px 18px;
border-radius:999px;
background:rgba(214,0,28,0.12);
border:1px solid rgba(214,0,28,0.4);
margin-bottom:24px;
font-weight:600;
}

h1{
font-size:4rem;
line-height:1.05;
margin-bottom:24px;
font-weight:800;
}

h1 span{
color:var(--red);
}

.hero p{
font-size:1.1rem;
color:var(--muted);
margin-bottom:32px;
}


/* ===== CTA BUTTON ===== */
.cta-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:18px 34px;
background:var(--red);
color:#ffffff;
text-decoration:none;
border-radius:999px;
font-weight:700;
box-shadow:0 10px 30px rgba(214,0,28,0.35);
transition:0.3s;
}

.cta-btn:hover{
transform:translateY(-2px);
background:#e0001b;
}


/* =======================================================
   ALLGEMEINE SEKTIONEN
======================================================= */

section{
max-width:1200px;
margin:auto;
padding:90px 20px;
}

.section-title{
font-size:2.5rem;
margin-bottom:50px;
text-align:center;
}


/* =======================================================
   QUALIFIKATIONEN & ERFAHRUNG
======================================================= */

.grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.card{
background:var(--card);
border:1px solid #1d1d1d;
border-radius:24px;
padding:40px;
}

.card h3{
font-size:1.5rem;
margin-bottom:20px;
}

.card p,
.card li{
color:var(--muted);
}

.card ul{
padding-left:20px;
display:grid;
gap:12px;
}


/* =======================================================
   MEIN WEG / TIMELINE
======================================================= */

.timeline{
display:grid;
gap:24px;
}

.timeline-item{
background:#0f0f0f;
border-left:4px solid var(--red);
padding:24px 28px;
border-radius:0 18px 18px 0;
}

.timeline-item h4{
margin-bottom:10px;
font-size:1.2rem;
}

.timeline-item p{
color:var(--muted);
}


/* =======================================================
   ABSCHLUSS-CTA / HIGHLIGHT
======================================================= */

.highlight{
background:linear-gradient(180deg,#121212,#090909);
border:1px solid rgba(214,0,28,0.3);
border-radius:28px;
padding:70px 40px;
text-align:center;
}

.highlight h2{
font-size:2.6rem;
margin-bottom:20px;
}

.highlight p{
max-width:760px;
margin:auto;
color:var(--muted);
margin-bottom:35px;
}


/* =======================================================
   RESPONSIVE DESIGN / TABLET & MOBILE
======================================================= */

@media(max-width:900px){

.grid{
grid-template-columns:1fr;
}

h1{
font-size:2.1rem;
line-height:1.15;
}

header{
min-height:auto;
padding:110px 20px 80px;
}

.hero-layout{
flex-direction:column;
align-items:flex-start;
}

.hero-photo{
width:100%;
max-width:320px;
height:auto;
}

}