/*
 * HFC Schortens Karate e.V.
 * Professionelles, modernes Design
 */

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

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

/* === HEADER === */
.site-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-title {
    margin: 0 0 15px 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.site-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.site-title a:hover {
    color: #d32f2f;
}

/* === NAVIGATION === */
.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.main-nav a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 4px;
}

.main-nav a:hover,
.main-nav a.active {
    background: #d32f2f;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s;
    line-height: 1;
}

.mobile-menu-toggle:hover {
    background: rgba(211, 47, 47, 0.2);
    border-color: #d32f2f;
    color: #d32f2f;
}

.mobile-menu-toggle span {
    display: block;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .site-header .container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 44px;
        min-width: 44px;
    }

    .site-title {
        margin-bottom: 0;
        font-size: 1.2rem;
        flex: 1;
    }

    .main-nav {
        display: none;
        width: 100%;
        margin-top: 15px;
        position: absolute;
        top: 60px;
        left: 0;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.3);
        max-height: 85vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 5px 0;
    }

    .main-nav a {
        padding: 9px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 0.95rem;
    }

    .main-nav li:last-child a {
        border-bottom: none;
    }
}

/* === MAIN CONTENT === */
main {
    min-height: 60vh;
}

/* === SECTIONS === */
.section {
    padding: 60px 0;
}

.section:nth-child(even) {
    background: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d32f2f, #ff5722);
    border-radius: 2px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

a {
    color: #d32f2f;
    transition: color 0.3s;
}

a:hover {
    color: #b71c1c;
}

/* === FOOTER === */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.site-footer p {
    margin: 0;
    text-align: center;
}

.site-footer a {
    color: #fff;
    margin: 0 10px;
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.footer-branding:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

.footer-branding a {
    text-decoration: none;
    color: #999;
    transition: color 0.3s;
    margin: 0;
}

.footer-branding a:hover {
    color: #fff;
}

.footer-branding-text {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

.footer-logo {
    height: 45px;
    width: auto;
    max-width: 180px;
    padding: 8px 12px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    object-fit: contain;
}

.footer-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .footer-branding {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 15px 20px;
    }

    .footer-branding a {
        display: inline-block;
    }

    .footer-logo {
        height: 50px;
        display: block;
        margin: 0 auto;
    }
}

/* === HERO SECTION === */
.hero-section {
    padding: 0;
    margin-bottom: 0;
}

.hero-banner {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 50%, #b71c1c 100%);
    color: #fff;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.banner-icon {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.banner-text {
    flex: 1;
    text-align: left;
}

.banner-quote {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.banner-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
    font-style: italic;
}

.banner-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffffff"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 30px 20px;
    }

    .banner-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .banner-text {
        text-align: center;
    }

    .banner-icon {
        font-size: 3rem;
    }

    .banner-quote {
        font-size: 1.3rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }
}

/* === NEWS CARDS === */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.news-card h3 {
    color: #d32f2f;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.news-intro {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.news-date {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-link {
    display: inline-block;
    color: #d32f2f;
    font-weight: 600;
    margin-top: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.news-link:hover {
    color: #b71c1c;
    text-decoration: underline;
}

/* === LOCATION CARD === */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card h3 {
    color: #d32f2f;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.address {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    height: 100%;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* === BUTTONS === */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #8b1515 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

.btn-secondary {
    background: #fff;
    color: #d32f2f;
    border: 2px solid #d32f2f;
}

.btn-secondary:hover {
    background: #d32f2f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

/* === KINDER-KARATE PAGE === */
.section-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    color: #666;
    margin-top: -30px;
    margin-bottom: 30px;
}

.kids-intro {
    text-align: center;
    margin-bottom: 40px;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d32f2f;
    margin: 15px 0;
}

.kids-content-box {
    background: #f9f9f9;
    border-left: 5px solid #d32f2f;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.kids-content-box h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: 700;
    font-size: 1.3rem;
}

.intro-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    padding: 0 20px;
}

.cta-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* === FAQ PAGE === */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #d32f2f;
}

.faq-question {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.faq-question:before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    background: #d32f2f;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.faq-answer {
    padding-left: 30px;
    color: #555;
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 0;
}

.contact-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

/* === DOWNLOADS PAGE === */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-color: #d32f2f;
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.icon-pdf {
    display: inline-block;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.download-card h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.download-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.info-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #efefef 100%);
}

.info-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* === DOJO-REGELN PAGE === */
.quote-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 30px auto 50px;
    max-width: 800px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.quote-author {
    font-size: 1.1rem;
    color: #d32f2f;
    font-weight: 600;
}

.dojo-rule-section {
    background: #fff;
    border-left: 4px solid #d32f2f;
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.dojo-rule-section h3 {
    color: #d32f2f;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.rule-list {
    list-style: none;
    padding: 0;
}

.rule-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    border-bottom: 1px solid #f0f0f0;
}

.rule-list li:last-child {
    border-bottom: none;
}

.rule-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 15px;
    color: #d32f2f;
    font-weight: 700;
    font-size: 1.2rem;
}

/* === ÜBER UNS PAGE === */
.about-hero {
    background: #f8f8f8;
    color: #333;
    padding: 60px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.about-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-images img:hover {
    transform: scale(1.05);
}

.welcome-image {
    margin: 30px 0;
    text-align: center;
}

.welcome-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.about-content h3 {
    color: #d32f2f;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.what-is-karate {
    background: #f8f8f8;
}

.karate-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.karate-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.karate-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.karate-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.karate-info-card p {
    line-height: 1.7;
    color: #666;
}

.philosophy-section {
    background: #fff;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #d32f2f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.philosophy-card h3 {
    color: #d32f2f;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.philosophy-card p {
    line-height: 1.7;
    color: #555;
}

/* === GALERIE PAGE === */
.gallery-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.category-btn {
    padding: 12px 25px;
    background: #fff;
    border: 2px solid #d32f2f;
    color: #d32f2f;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.category-btn:hover {
    background: #d32f2f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211,47,47,0.3);
}

.category-btn.active {
    background: #d32f2f;
    color: #fff;
}

.gallery-info {
    text-align: center;
    margin: 20px 0;
}

.gallery-count {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

#image-count {
    color: #d32f2f;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 4/3;
    background: #f0f0f0;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* === STARTSEITE FEATURES === */
.welcome-section {
    background: #f8f8f8;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
}

.features-section {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #d32f2f;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #d32f2f;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.feature-link {
    display: inline-block;
    color: #d32f2f;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.feature-link:hover {
    color: #b71c1c;
}

.why-karate {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.why-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.why-item p {
    line-height: 1.7;
    color: #666;
}

/* === TRAININGSZEITEN PAGE === */
.training-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.training-day {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.training-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #d32f2f;
}

.day-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #d32f2f;
    position: relative;
}

.day-title::after {
    content: '📅';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    font-size: 1.5rem;
    background: #fff;
    padding: 0 10px;
}

.time-slot {
    background: #fff;
    border-left: 4px solid #d32f2f;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.time-slot:hover {
    border-left-width: 6px;
    box-shadow: 0 4px 12px rgba(211,47,47,0.15);
    transform: translateX(5px);
}

.time-slot .time {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-slot .time::before {
    content: '🕐';
    font-size: 1.3rem;
}

.time-slot .group {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 35px;
    font-weight: 500;
}

.trainingsplan-section {
    background: #f8f8f8;
}

/* === TRAININGSPLAN PAGE === */
.trainingsplan-content {
    max-width: 900px;
    margin: 0 auto;
}

.plan-section {
    background: #fff;
    border-left: 4px solid #d32f2f;
    padding: 30px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.plan-section h3 {
    color: #d32f2f;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.plan-list {
    list-style: none;
    padding: 0;
}

.plan-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.7;
}

.plan-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: 700;
}

/* === TERMINE PAGE === */
.termine-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.termin-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.termin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.termin-type {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.termin-details {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.termin-details li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #666;
}

.termin-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}

/* === GI & GÜRTEL PAGE === */
.gi-section, .guertel-section {
    margin: 40px 0;
}

.gi-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gi-info-card {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.gi-info-card h4 {
    color: #d32f2f;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.gi-care-list {
    list-style: none;
    padding: 0;
}

.gi-care-list li {
    padding: 5px 0 5px 20px;
    position: relative;
}

.gi-care-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d32f2f;
}

.guertel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.guertel-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 6px solid;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
}

.guertel-card:hover {
    transform: translateX(5px);
}

.belt-icon {
    width: 60px;
    height: 80px;
    position: relative;
    flex-shrink: 0;
}

.belt-knot {
    width: 50px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.belt-knot::before,
.belt-knot::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 20px;
    background: currentColor;
    border-radius: 1px;
}

.belt-knot::before {
    top: -10px;
    left: 22px;
    transform: rotate(-15deg);
}

.belt-knot::after {
    top: -10px;
    left: 22px;
    transform: rotate(15deg);
}

.guertel-card-content {
    flex: 1;
}

.guertel-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.guertel-card p {
    color: #666;
    font-size: 0.95rem;
}

.pruefung-info {
    margin-top: 50px;
}

.pruefung-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.requirement-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.requirement-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.requirement-card h5 {
    color: #d32f2f;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.requirement-card p {
    margin: 8px 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.pruefung-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.pruefung-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pruefung-list li:last-child {
    border-bottom: none;
}

.guertel-visual {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 12px;
}

.guertel-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* === TERMINE PAGE === */
.termine-hero {
    text-align: center;
    margin: 30px 0 50px 0;
}

.termine-hero img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

/* === KONTAKT PAGE === */
.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: #d32f2f;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-info-card h3 {
    color: #d32f2f;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-info-card p {
    line-height: 1.8;
    color: #666;
}

.contact-info-card a {
    color: #d32f2f;
    font-weight: 600;
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-form-section {
    background: #f8f8f8;
    padding: 50px 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-form-section h3 {
    color: #d32f2f;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d32f2f;
}

.form-group textarea {
    resize: vertical;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-info {
    margin-top: 30px;
    text-align: center;
}

.info-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.privacy-note {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
    }

    .main-nav a {
        text-align: center;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .section {
        padding: 40px 0;
    }

    .marquee-text {
        font-size: 1.2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .location-card {
        padding: 30px 20px;
    }

    .location-map iframe {
        min-height: 300px;
    }
}

/* === MITGLIEDERBEREICH === */
.members-section {
    margin: 50px 0;
}

.members-section-title {
    color: #d32f2f;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #d32f2f;
}

.dojo-rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.dojo-rule {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #d32f2f;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.dojo-rule:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.rule-number {
    background: #d32f2f;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dojo-rule p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.exam-category {
    margin: 50px 0;
}

.exam-category-title {
    color: #1a1a1a;
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e0e0e0 100%);
    border-radius: 8px;
}

.exam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.exam-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

.exam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #d32f2f;
}

.exam-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.exam-card h5 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.exam-card ul {
    list-style: none;
    padding: 0;
}

.exam-card li {
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.exam-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}

.dan-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    border-color: #d32f2f;
}

.dan-card:hover {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.dan-card h5 {
    color: #fff;
}

.dan-card li {
    color: #e0e0e0;
}

.dan-card li::before {
    color: #d32f2f;
}

@media (max-width: 768px) {
    .dojo-rules-grid {
        grid-template-columns: 1fr;
    }

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

    .members-section-title {
        font-size: 1.6rem;
    }

    .exam-category-title {
        font-size: 1.3rem;
    }
}
