/* ========================================
   MARTIAL ARTS STEINHAGEN - WEBSITE STYLES
   Farben: Schwarz, Gold (#C8A84E), Weiß
   ======================================== */

/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C8A84E;
    --gold-light: #d4b968;
    --black: #0a0a0a;
    --dark: #111111;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #999;
    --white: #ffffff;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll; /* verhindert Layout-Verschiebung durch Scrollbar */
}

body {
    font-family: var(--font-main);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold {
    color: var(--gold);
}

.italic {
    font-style: italic;
}

.white {
    color: var(--white);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 168, 78, 0.2);
    transition: background 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.1;
}

.logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(to bottom, #f5c15d, #d4a437, #a87c1f) !important;
    color: var(--black) !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700 !important;
    transition: all 0.3s !important;
    box-shadow: 0 3px 12px rgba(200, 168, 78, 0.4) !important;
}

.nav-cta:hover {
    background: linear-gradient(to bottom, #f8d080, #e8b840, #c09020) !important;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(200, 168, 78, 0.6) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* ---- MOBILE NAV: Phone + CTA ---- */
.nav-mobile-right {
    display: none;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.nav-phone-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.nav-phone-link i {
    color: var(--gold);
    font-size: 0.82rem;
}

.nav-cta-mobile-btn {
    background: linear-gradient(to bottom, #f5c15d, #d4a437, #a87c1f) !important;
    color: var(--black) !important;
    padding: 8px 12px !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    border-radius: 3px !important;
    white-space: nowrap;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(200, 168, 78, 0.4);
    border: none !important;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(to bottom, #f5c15d, #d4a437, #a87c1f);
    color: var(--black);
    border: none;
    box-shadow: 0 4px 20px rgba(200, 168, 78, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(to bottom, #f8d080, #e8b840, #c09020);
    color: var(--black);
    box-shadow: 0 6px 30px rgba(200, 168, 78, 0.65);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.8rem;
    background: linear-gradient(to bottom, #f5c15d, #d4a437, #a87c1f);
    color: var(--black);
    border: none;
    box-shadow: 0 3px 12px rgba(200, 168, 78, 0.35);
}

.btn-small:hover {
    background: linear-gradient(to bottom, #f8d080, #e8b840, #c09020);
    color: var(--black);
    box-shadow: 0 5px 20px rgba(200, 168, 78, 0.55);
    transform: translateY(-1px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 40px;
}

.hero-line {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 3px;
}

.hero-line.gold {
    font-style: italic;
}

.hero-text {
    margin: 25px 0 35px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
}

/* ========================================
   GOLD SEPARATOR STRIP
   ======================================== */
.gold-sep {
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
    width: 100%;
    display: block;
}

/* ========================================
   SECTION DIVIDER
   ======================================== */
.section-divider {
    text-align: center;
    margin-bottom: 40px;
}

.divider-img {
    max-width: 100%;
    width: 400px;
    margin: 0 auto;
    opacity: 0.7;
}

.section-divider-dark {
    text-align: center;
    padding: 20px 0;
    background: var(--dark);
}

.section-divider-dark .divider-img {
    max-width: 100%;
    width: 400px;
    margin: 0 auto;
    opacity: 0.7;
}

/* ========================================
   SECTION TITLES
   ======================================== */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Kurse-Überschrift: größer mit Stern-Trennern */
.courses-big-title {
    font-size: 3rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-star {
    color: var(--gold);
    font-size: 1.6rem;
    opacity: 0.85;
}

.section-title.left {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    color: var(--light-gray);
    font-size: 1.05rem;
    margin-bottom: 50px;
}

/* ========================================
   WHY SECTION
   ======================================== */
.why-section {
    padding: 100px 0;
    background: var(--white);
    color: var(--black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    text-align: center;
    padding: 25px 15px;
}

.benefit-icon {
    font-size: 2.6rem;
    color: var(--gold);
    margin-bottom: 15px;
    line-height: 1;
}

.benefit-icon i {
    font-size: 2.4rem;
    color: var(--gold);
}

.benefit-icon img {
    display: none;
}

.benefit-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.benefit-card p {
    font-size: 0.85rem;
    color: #666;
}

.section-cta-text {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.why-section .btn-outline {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* ========================================
   COURSES SECTION (Home)
   ======================================== */
.courses-section {
    padding: 100px 0;
    background: var(--dark);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.course-card {
    background: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(200, 168, 78, 0.1);
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(200, 168, 78, 0.3);
}

.course-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.course-card:hover .course-img img {
    transform: scale(1.07);
}

/* Titel über dem Bild */
.course-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.88));
}

.course-title-overlay h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.course-info {
    padding: 20px 25px 25px;
}

.course-info p {
    color: var(--light-gray);
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.course-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========================================
   MOTIVATION SECTION
   ======================================== */
.motivation-section {
    padding: 100px 0;
    background: var(--white);
    color: var(--black);
}

.motivation-section.dark-bg {
    background: var(--black);
    color: var(--white);
}

.motivation-content {
    text-align: center;
    max-width: 700px;
    margin: 30px auto 0;
}

.motivation-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.dark-bg .motivation-content p {
    color: var(--light-gray);
}

.motivation-highlight {
    font-size: 1.2rem !important;
    font-weight: 800;
    color: var(--black) !important;
    margin-top: 30px !important;
    letter-spacing: 1px;
}

.dark-bg .motivation-highlight {
    color: var(--white) !important;
}

/* ========================================
   PERSONAL TRAINING SECTION (Home)
   ======================================== */
.personal-section {
    padding: 100px 0;
    background: var(--dark);
}

.personal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.personal-img img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.personal-info h3 {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin: 25px 0 15px;
}

.personal-list {
    list-style: none;
    margin: 20px 0;
}

.personal-list li {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.personal-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    color: var(--light-gray);
}

.service-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
    color: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--dark-gray);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--medium-gray);
}

.stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--light-gray);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========================================
   SCHEDULE TABLE
   ======================================== */
.schedule-section {
    padding: 100px 0;
    background: var(--dark-gray);
}

.schedule-table-wrap {
    margin-top: 40px;
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th {
    background: var(--gold);
    color: var(--black);
    padding: 15px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.schedule-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--medium-gray);
    color: var(--white);
    font-size: 0.95rem;
}

.schedule-table tr:hover td {
    background: rgba(200, 168, 78, 0.08);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: var(--black);
    text-align: center;
    border-top: 3px solid var(--gold);
}

.cta-section p {
    color: var(--light-gray);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--gold);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 60px 0 30px;
    background: var(--dark-gray);
    border-top: 1px solid var(--medium-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-col h4 {
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-col p {
    color: var(--light-gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--light-gray);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--medium-gray);
}

.footer-bottom p {
    color: #555;
    font-size: 0.8rem;
}

.footer-made-by {
    margin-top: 12px;
}

.footer-made-by a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-made-by a:hover {
    color: var(--gold);
}

.footer-made-by img {
    height: 28px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s;
    border-radius: 4px;
}

.footer-made-by a:hover img {
    opacity: 1;
}

/* ========================================
   KURSE SEITE - HERO
   ======================================== */
.kurse-hero {
    padding: 140px 0 60px;
    background: var(--dark);
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.kurse-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.kurse-hero p {
    color: var(--light-gray);
    font-size: 1.1rem;
}

/* ========================================
   KURS DETAIL SECTIONS
   ======================================== */
.kurs-detail {
    padding: 80px 0;
    background: var(--black);
}

.kurs-detail.dark {
    background: var(--dark);
}

.kurs-detail.personal-bg {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    border-top: 2px solid var(--gold);
}

.kurs-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.kurs-detail-grid.reverse {
    direction: rtl;
}

.kurs-detail-grid.reverse > * {
    direction: ltr;
}

.kurs-detail-img img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.kurs-detail-info h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.kurs-tagline {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.kurs-detail-info > p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.kurs-benefits {
    list-style: none;
    margin-bottom: 25px;
}

.kurs-benefits li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    color: var(--white);
    font-size: 0.95rem;
}

.kurs-benefits li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.kurs-schedule {
    margin-bottom: 25px;
}

.schedule-badge {
    display: inline-block;
    background: rgba(200, 168, 78, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Kurs Gallery */
.kurs-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.kurs-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.kurs-gallery img:hover {
    transform: scale(1.03);
}

/* ========================================
   ÜBER UNS + TESTIMONIALS (nebeneinander)
   ======================================== */
.about-testimonials-section {
    padding: 80px 0;
    background: var(--white);
    color: var(--black);
}

.about-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-testimonials-grid .about-text p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.testimonials-side .testimonial-card {
    background: var(--white);
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: left;
}

.testimonials-side .stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 8px;
}

.testimonials-side .testimonial-card p {
    color: #444;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.testimonials-side .testimonial-author {
    color: var(--gold);
    font-size: 0.85rem;
}

.about-testimonials-grid .section-title {
    color: var(--black);
}

/* ========================================
   CTA BANNER (goldene Leiste)
   ======================================== */
.cta-banner {
    padding: 50px 0 30px;
    background: var(--gold);
    color: var(--black);
}

.cta-banner-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.cta-banner-text h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--black);
}

.cta-banner-text h2 .white {
    color: var(--white);
}

.cta-banner-text p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
    margin-top: 5px;
}

.btn-dark {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-dark:hover {
    background: var(--white);
    color: var(--black);
}

.cta-contact-row {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 20px;
}

.cta-contact-row .contact-item {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.85rem;
}

.cta-contact-row .contact-icon {
    color: var(--black);
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.instagram-btn {
    position: fixed;
    bottom: 25px;
    right: 95px;
    z-index: 999;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(214, 36, 159, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.instagram-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(214, 36, 159, 0.6);
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: var(--dark-gray);
    border-top: 2px solid var(--gold);
    padding: 20px;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--light-gray);
    font-size: 0.9rem;
    flex: 1;
}

.cookie-content p a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-decline {
    padding: 10px 24px !important;
    font-size: 0.8rem !important;
}

/* ========================================
   SOCIAL LINKS
   ======================================== */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-gray);
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--gold);
}

.social-links.big {
    flex-direction: column;
    gap: 15px;
}

.social-links.big .social-link {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ========================================
   KONTAKT SEITE
   ======================================== */
.kontakt-section {
    padding: 80px 0;
    background: var(--black);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.kontakt-form-wrap h2 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    color: var(--light-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    color: var(--white);
    padding: 12px 15px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--gold);
}

.checkbox-group label {
    font-size: 0.8rem;
    color: var(--light-gray);
    line-height: 1.5;
}

.checkbox-group label a {
    color: var(--gold);
    text-decoration: underline;
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: var(--black);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--light-gray);
}

/* Kontakt Info Side */
.kontakt-info-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--dark-gray);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
}

.info-card h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.info-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.info-item p {
    color: var(--light-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

.info-item a {
    color: var(--gold);
}

.mini-schedule {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--medium-gray);
}

.mini-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mini-row span:first-child {
    font-weight: 600;
}

.mini-row span:last-child {
    color: var(--light-gray);
}

/* ========================================
   GOOGLE MAPS
   ======================================== */
.maps-section {
    padding: 60px 0 0;
    background: var(--dark);
}

.maps-section .section-title {
    margin-bottom: 40px;
}

.map-wrap {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.5) brightness(0.8);
}

/* ========================================
   PREISE SEITE
   ======================================== */
.preise-section {
    padding: 80px 0;
    background: var(--black);
}

.preise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.preis-card {
    background: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.preis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.preis-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(180deg, rgba(200, 168, 78, 0.08) 0%, var(--dark-gray) 100%);
}

.preis-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.preis-header h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.preis-sub {
    color: var(--light-gray);
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.preis-amount {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.preis-currency {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
}

.preis-zahl {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.preis-period {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.preis-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.preis-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--light-gray);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preis-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Personal Training Pricing */
.personal-pricing {
    margin-bottom: 40px;
}

.personal-pricing-card {
    background: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.personal-pricing-card h3 {
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--gold);
}

.personal-pricing-card > p {
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.personal-pricing-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.pricing-option {
    background: var(--black);
    padding: 20px 35px;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    text-align: center;
}

.option-name {
    display: block;
    font-size: 0.85rem;
    color: var(--light-gray);
    margin-bottom: 8px;
}

.option-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.preise-hinweis {
    text-align: center;
    padding: 30px;
    background: rgba(200, 168, 78, 0.08);
    border: 1px solid rgba(200, 168, 78, 0.2);
    border-radius: 8px;
}

.preise-hinweis p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* ========================================
   GALERIE SEITE
   ======================================== */
.galerie-section {
    padding: 60px 0 80px;
    background: var(--black);
}

.galerie-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--dark-gray);
    color: var(--light-gray);
    border: 1px solid var(--medium-gray);
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: var(--font-main);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.galerie-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.galerie-item:hover img {
    transform: scale(1.08);
}

.galerie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s;
}

.galerie-item:hover .galerie-overlay {
    opacity: 1;
}

.galerie-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.galerie-item.hidden {
    display: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 15px;
    transition: color 0.3s;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--gold);
}

.lightbox-close {
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ========================================
   LEGAL PAGES (Impressum, Datenschutz)
   ======================================== */
.legal-section {
    padding: 140px 0 80px;
    background: var(--black);
}

.legal-section h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: var(--gold);
}

.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 35px 0 15px;
    color: var(--white);
}

.legal-section h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 25px 0 10px;
    color: var(--gold-light);
}

.legal-section p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.legal-note {
    margin-top: 50px;
    padding: 20px 25px;
    background: rgba(200, 168, 78, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
}

.legal-note p {
    color: var(--gold-light);
    margin-bottom: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .preise-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-mobile-right {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hide desktop CTA from dropdown on mobile */
    .nav-menu .nav-cta {
        display: none !important;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero */
    .hero-line {
        font-size: 2.2rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    /* Grids */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .personal-grid,
    .about-grid,
    .kurs-detail-grid,
    .kurs-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .kurs-gallery {
        grid-template-columns: 1fr 1fr;
    }

    /* Kurse Hero */
    .kurse-hero h1 {
        font-size: 2rem;
    }

    .kurs-detail-info h2 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    /* Kontakt */
    .kontakt-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Preise */
    .preise-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 60px;
    }

    /* Galerie */
    .galerie-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Cookie */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    /* Über uns + Testimonials */
    .about-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Über uns Story */
    .about-story-section {
        padding: 50px 0;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-story-img {
        max-width: 320px;
        margin: 0 auto;
    }

    .about-story-badge {
        bottom: 10px;
        right: 10px;
        padding: 10px 14px;
    }

    .badge-number {
        font-size: 1.3rem;
    }

    .about-story-text {
        padding: 0;
    }

    .story-block {
        gap: 12px;
    }

    .story-icon {
        font-size: 1.4rem;
        min-width: 36px;
    }

    /* Values */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-text-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Counter */
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Trainer */
    .trainer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Quick Signup */
    .quicksignup-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quicksignup-text h2 {
        font-size: 1.6rem;
    }

    /* CTA Banner */
    .cta-banner-grid {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner-text h2 {
        font-size: 1.5rem;
    }

    .cta-contact-row {
        justify-content: center;
    }

    /* Logo */
    .logo-text {
        font-size: 1rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero Button Mobile */
    .btn-primary {
        font-size: 0.75rem;
        padding: 14px 20px;
        letter-spacing: 0.8px;
    }

    /* Sections Padding Mobile */
    .why-section,
    .courses-section,
    .motivation-section,
    .testimonials-section,
    .faq-section,
    .quicksignup-section,
    .cta-section,
    .kurs-detail {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .benefit-card {
        padding: 20px 12px;
    }

    .benefit-icon i {
        font-size: 1.8rem;
    }

    /* Course cards on mobile */
    .course-card {
        border-radius: 4px;
    }

    .course-img {
        height: 160px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 20px;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.9rem;
        padding: 16px;
    }

    /* Quick Signup */
    .quicksignup-section {
        padding: 40px 0;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 40px 0;
    }

    .cta-banner-grid {
        gap: 20px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        gap: 30px;
    }

    /* Nav phone number */
    .nav-phone-link span {
        font-size: 0.72rem;
    }

    /* Hero */
    .hero-line {
        font-size: 1.9rem;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-text {
        font-size: 0.9rem;
    }

    /* Kurs detail */
    .kurs-detail-img img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 4px;
    }

    .kurs-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    /* Counter */
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   SEHR KLEINE HANDYS (max 480px)
   ======================================== */
@media (max-width: 480px) {
    .hero-line {
        font-size: 1.6rem;
    }

    .hero-text {
        font-size: 0.85rem;
    }

    .btn-primary {
        font-size: 0.7rem;
        padding: 12px 16px;
        letter-spacing: 0.5px;
    }

    .courses-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .course-img {
        height: 130px;
    }

    .course-title-overlay h3 {
        font-size: 0.75rem;
    }

    .course-info p {
        font-size: 0.8rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .benefit-card h3 {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .nav-cta-mobile-btn {
        font-size: 0.6rem !important;
        padding: 7px 8px !important;
    }

    .nav-phone-link {
        display: none;
    }

    .cta-contact-row {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SCROLL FORTSCHRITTSBALKEN
   ======================================== */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gold);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(200,168,78,0.6);
}

/* ========================================
   PRELOADER
   ======================================== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 30px;
    animation: preloader-grow 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 0 50px rgba(200, 168, 78, 0.3);
}

@keyframes preloader-grow {
    0%   { transform: scale(0.25); opacity: 0; }
    60%  { transform: scale(1.06); opacity: 1; }
    100% { transform: scale(1);    opacity: 1; }
}

.preloader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: preloader-load 1.2s ease-in-out infinite;
}

@keyframes preloader-load {
    0% { width: 0%; margin-left: 0; }
    50% { width: 70%; margin-left: 0; }
    100% { width: 0%; margin-left: 100%; }
}

/* ========================================
   FOOTER LINKS (tel/email)
   ======================================== */
.footer-col a[href^="tel:"],
.footer-col a[href^="mailto:"] {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a[href^="tel:"]:hover,
.footer-col a[href^="mailto:"]:hover {
    color: var(--gold);
}

.info-card a[href^="tel:"],
.info-card a[href^="mailto:"] {
    color: inherit;
    text-decoration: none;
}

.info-card a[href^="tel:"]:hover,
.info-card a[href^="mailto:"]:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* ========================================
   WERTE / VALUES SECTION
   ======================================== */
.values-section {
    background: var(--dark);
    padding: 80px 0;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.value-card {
    background: var(--dark-gray);
    border: 1px solid rgba(200,168,78,0.15);
    border-radius: 12px;
    padding: 35px 25px;
    transition: transform 0.3s, border-color 0.3s;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.7;
}

.values-text-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(200,168,78,0.2);
    padding-top: 50px;
}

.values-text-card {
    text-align: center;
    padding: 10px 20px;
}

.values-text-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    font-family: inherit;
}

.values-text-card p {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ========================================
   COUNTER SECTION
   ======================================== */
.counter-section {
    background: var(--gold);
    padding: 60px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}

.counter-plus {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    vertical-align: top;
    margin-top: 6px;
    display: inline-block;
}

/* ========================================
   TRAINER SECTION
   ======================================== */
.trainer-section {
    background: var(--white, #fff);
    padding: 80px 0;
    text-align: center;
}

.trainer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
    margin-top: 50px;
}

.trainer-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: block;
}

.trainer-info h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 5px;
}

.trainer-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trainer-info > p:not(.trainer-title) {
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.trainer-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 0;
}

.trainer-badges li {
    background: var(--black);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: var(--dark);
    padding: 80px 0;
    text-align: center;
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid rgba(200, 168, 78, 0.2);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid rgba(200, 168, 78, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 22px 20px 22px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question span {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.open .faq-question span {
    transform: rotate(45deg);
}

.faq-item.open .faq-question {
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    color: var(--light-gray, #aaa);
    line-height: 1.8;
    padding: 0 20px 20px 0;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* ========================================
   QUICK SIGNUP SECTION
   ======================================== */
.quicksignup-section {
    background: var(--black);
    padding: 80px 0;
}

.quicksignup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quicksignup-text h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
}

.quicksignup-text > p {
    color: var(--light-gray, #aaa);
    margin-bottom: 25px;
    line-height: 1.7;
}

.signup-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.signup-benefits li {
    color: #fff;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
}

.signup-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 900;
    font-size: 1rem;
}

.quicksignup-form {
    background: var(--dark-gray, #1a1a1a);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(200, 168, 78, 0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quicksignup-form .form-group input,
.quicksignup-form .form-group select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.quicksignup-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8A84E' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.quicksignup-form .form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.quicksignup-form .form-group input:focus,
.quicksignup-form .form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.quicksignup-form .form-group input::placeholder {
    color: rgba(255,255,255,0.4);
}

.signup-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
    margin: 0;
}

.signup-note a {
    color: var(--gold);
    text-decoration: underline;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(200, 168, 78, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #fff;
}

@media (max-width: 480px) {
    .hero-line {
        font-size: 1.7rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .kurs-gallery {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .galerie-grid {
        grid-template-columns: 1fr;
    }

    .personal-pricing-options {
        flex-direction: column;
        align-items: center;
    }

    .logo-text {
        font-size: 0.85rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .instagram-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 75px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .counter-number {
        font-size: 2.8rem;
    }

    .quicksignup-form {
        padding: 25px 20px;
    }

    .back-to-top {
        bottom: 75px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ========================================
   ÜBER UNS – STORY SECTION
   ======================================== */
.about-story-section {
    padding: 80px 0;
    background: #fff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: start;
}

.about-story-grid > * {
    min-width: 0;
}

.about-story-img {
    position: relative;
    overflow: visible;
}

.about-story-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    display: block;
}

.about-story-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--gold);
    color: var(--black);
    padding: 14px 18px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(200,168,78,0.4);
}

.badge-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.story-lead {
    font-size: 1.2rem;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gold);
}

.story-block {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.story-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.story-block p {
    color: #444;
    line-height: 1.8;
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.about-story-text {
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.story-block strong {
    color: var(--black);
}

/* Über uns Mobile */
@media (max-width: 768px) {
    .about-story-section {
        padding: 50px 0;
    }

    .about-story-grid {
        grid-template-columns: 1fr !important;
        gap: 50px;
    }

    .about-story-img {
        max-width: 320px;
        margin: 0 auto;
    }

    .about-story-badge {
        bottom: 10px;
        right: 10px;
        padding: 10px 14px;
    }

    .badge-number {
        font-size: 1.3rem;
    }

    .story-lead {
        font-size: 1rem;
    }

    .story-block p {
        font-size: 0.9rem;
    }
}

