/* ==========================================================
   PEBU67 - Training for the Next Level
   style.css - Teil 1
   ========================================================== */

/* ---------- Reset ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0d0d0d;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

/* ---------- Links ---------- */

a {
    color: #dfff00;
    text-decoration: none;
    transition: 0.25s;
}

a:hover {
    opacity: 0.85;
}

/* ---------- Layout ---------- */

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.narrow {
    width: min(800px, 92%);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    max-height: 55px;
    width: auto;
    display: block;
}

.navigation {
    display: flex;
    gap: 24px;
}

.navigation a {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.navigation a:hover {
    color: #dfff00;
}

/* ---------- Hero ---------- */

.hero {
    padding: 100px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #dfff00;
    margin-bottom: 15px;
}

.hero h2 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 600;
}


.hero-text {
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    color: #dddddd;
    text-align: left;
}


/* ---------- Buttons ---------- */

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: bold;
    transition: 0.25s;
    margin: 6px;
}

.btn-primary {
    background: #dfff00;
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid #dfff00;
    color: #dfff00;
    background: transparent;
}

.btn-secondary:hover {
    background: #dfff00;
    color: #000;
}

/* ---------- Überschriften ---------- */

.section h2 {
    text-align: center;
    color: #dfff00;
    margin-bottom: 24px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-intro {
    max-width: 820px;
    margin: 0 auto 35px;
    text-align: center;
    color: #d2d2d2;
    font-size: 1.05rem;
}

/* ---------- Zitat ---------- */

blockquote {
    margin: 35px auto;
    padding: 20px;
    border-left: 4px solid #dfff00;
    background: #171717;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    border-radius: 10px;
}
/* ==========================================================
   PEBU67 - style.css - Teil 2
   Karten, Videos, Layouts und Trainingsbereiche
   ========================================================== */

/* ---------- Standard-Absätze ---------- */

.section p {
    color: #d8d8d8;
    margin-bottom: 18px;
    font-size: 1rem;
}

/* ---------- Feature Grid ---------- */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 35px;
}

.feature-card {
    background: #1a1a1a;
    border: 1px solid #2c2c2c;
    border-radius: 16px;
    padding: 24px;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #dfff00;
    box-shadow: 0 8px 24px rgba(223, 255, 0, 0.15);
}

.feature-card h3 {
    color: #dfff00;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.feature-card p {
    color: #d0d0d0;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.feature-card a {
    font-weight: bold;
}

/* ---------- Videos ---------- */

.video-container {
    display: flex;
    justify-content: center;
    margin: 35px auto;
}


.video-container video {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 16px;
    border: 2px solid #2a2a2a;
}

.small-video video {
    max-width: 320px;
}

/* Kleinere Videos wie Sampler, Fullbody und Milon */
.small-video video,
.video-container.small-video video {
    max-width: 420px;
}

/* ---------- CTA-Bereich ---------- */

.cta-section {
    text-align: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* ---------- Schwarzer Hinweis (BLACKROLL) ---------- */

.blackroll-note {
    margin-top: 40px;
    padding: 20px;
    border-radius: 12px;
    background: #141414;
    border-left: 4px solid #dfff00;
}

.blackroll-note p {
    margin: 0;
    color: #d8d8d8;
}

/* ---------- FAQ ---------- */

#faq h3 {
    color: #dfff00;
    margin-top: 26px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* ---------- Training & Konzept ---------- */

#training,
#milon,
#konzept,
#sampler {
    scroll-margin-top: 100px;
}
/* ==========================================================
   PEBU67 - style.css - Teil 3
   Footer, Animationen, Responsive Design & Feinschliff
   ========================================================== */

/* ---------- Footer ---------- */

.site-footer {
    background: #080808;
    border-top: 1px solid #222222;
    padding: 50px 20px;
    text-align: center;
}

.site-footer p {
    margin: 12px 0;
    color: #bfbfbf;
    font-size: 0.95rem;
}

.site-footer a {
    color: #dfff00;
    font-weight: 600;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* ---------- Sanfte Animationen ---------- */

.section {
    animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ---------- Fokus für Tastaturbedienung ---------- */

a:focus,
button:focus {
    outline: 2px solid #dfff00;
    outline-offset: 3px;
}

/* ---------- Bilder ---------- */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Mobile Navigation ---------- */

@media (max-width: 900px) {

    .nav-wrapper {
        flex-direction: column;
        gap: 16px;
        padding: 15px 0;
    }

    .navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

}

/* ---------- Smartphone ---------- */

@media (max-width: 768px) {

    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 70px 0 50px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero-text,
    .section-intro {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 340px;
        text-align: center;
    }

    .video-container video,
    .small-video video {
        max-width: 100%;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

}

/* ---------- Große Bildschirme ---------- */

@media (min-width: 1400px) {

    .container {
        max-width: 1200px;
    }

}

/* ---------- Auswahlfarbe ---------- */

::selection {
    background: #dfff00;
    color: #000000;
}

/* ---------- Scrollbar (WebKit) ---------- */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #101010;
}

::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #dfff00;
}

/* ---------- Ende ---------- */

/* Hero Untertitel */

.hero-subtitle {
    color: #dfff00;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ---------- Ende ---------- */
/* Navigation aktiv */

.navigation a.active {
    color: #dfff00;
}

/* Fade-In Animation */

.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Über mich / Profilbild
   ========================================== */

.about-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #dfff00;
    display: block;
    margin: 0 auto;
}

.about-content {
    width: 100%;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        margin-bottom: 25px;
    }
}


.about-content {
    text-align: left;
}

.about-content p {
    text-align: left;
}


/* ==========================================
   PEBU67 - Textausrichtung
   ========================================== */

/* Hero-Text linksbündig */
.hero-text {
    text-align: left;
}

/* Über-mich-Bereich linksbündig */
.about-content,
.about-content p {
    text-align: left;
}

/* Konzeptbereich linksbündig */
#konzept p,
#konzept .section-intro {
    text-align: left;
}


/* ==========================================
   Fließtexte linksbündig
   ========================================== */

.hero-text,
.section p,
.section-intro,
.about-content,
.about-content p {
    text-align: left;
}


