/* Reset & Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    background: #f5f7f8;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #ddd;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 100px;
    width: auto;
    margin: -20px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #1c6f81;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                #161d20;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.btn {
    display: inline-block;
    background: #1c6f81;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #155966;
}

.btn-cta {
    margin-top: 2.5rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Intro */
.intro {
    background: #0f1518;
    padding: 6rem 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.intro-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-features {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #fff;
}

.feature-icon {
    color: #1c6f81;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Angebot */
.angebot {
    background: #161d20;
}

.angebot-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #ccc;
}

.angebot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.angebot-card {
    background: #1c2528;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid #1c6f81;
    transition: transform 0.3s;
}

.angebot-card:hover {
    transform: translateY(-5px);
}

.card-label {
    display: inline-block;
    background: #1c6f81;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.angebot-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.angebot-card p {
    color: #ccc;
    font-size: 0.95rem;
}

/* Ziele */
.ziele {
    background: #0f1518;
    padding: 6rem 0;
}

.ziele-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ziele h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.ziele-subtitle {
    font-size: 1.2rem;
    color: #1c6f81;
    margin-bottom: 2rem;
    font-weight: 500;
}

.ziele-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.ziele-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    text-align: left;
}

.ziel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #1c2528;
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.ziel-icon {
    font-size: 1.5rem;
}

/* Exklusives Angebot */
.exklusiv {
    background: #161d20;
    padding: 5rem 0;
}

.exklusiv-card {
    background: linear-gradient(135deg, #1c2528 0%, #0f1518 100%);
    border: 2px solid #1c6f81;
    border-radius: 15px;
    padding: 4rem;
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.exklusiv-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1c6f81;
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.exklusiv-card h3 {
    font-size: 2rem;
    margin: 1rem 0 1.5rem;
    text-transform: uppercase;
}

.exklusiv-card p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Werte */
.werte {
    background: #0f1518;
    padding: 5rem 0;
}

.werte-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.wert-card {
    background: #1c2528;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.wert-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.wert-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1c6f81;
    text-transform: uppercase;
}

.wert-card p {
    color: #ccc;
    line-height: 1.7;
}

.werte-vision {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2a3538;
}

.werte-vision h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.werte-vision p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Trainingszeiten */
.zeiten {
    background: #161d20;
}

.zeiten-table {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    border-collapse: collapse;
}

.zeiten-table th,
.zeiten-table td {
    padding: 0.8rem 0.6rem;
    text-align: center;
    border-bottom: 1px solid #2a3538;
    font-size: 0.95rem;
}

.zeiten-table th {
    background: #1c6f81;
    color: #fff;
    font-size: 0.9rem;
}

.zeiten-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #1c6f81;
}

.zeiten-table tr:hover {
    background: #1c2528;
}

/* Kontakt */
.kontakt {
    background: #0f1518;
}

.kontakt-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.kontakt-form h3,
.kontakt-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1c6f81;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #1c2528;
    border: 1px solid #2a3538;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.kontakt-form .btn {
    width: 100%;
    padding: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.kontakt-info {
    background: #1c2528;
    padding: 2rem;
    border-radius: 10px;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    display: block;
    color: #fff;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: #ccc;
    margin: 0;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 4rem;
    background: #0f1518;
    min-height: 70vh;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.legal-page h2 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #1c6f81;
}

.legal-page h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
}

.legal-page p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page .btn {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: #0a1012;
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #1c2528;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-col p {
    color: #888;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
    color: #888;
    font-size: 0.95rem;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #1c6f81;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .angebot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zeiten-table th,
    .zeiten-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
    }

    .zeiten-table th {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .intro h2 {
        font-size: 1.8rem;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

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

    .ziele-list {
        grid-template-columns: 1fr;
    }

    .ziele h2 {
        font-size: 1.8rem;
    }

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

    .exklusiv-card {
        padding: 3rem 2rem;
    }

    .exklusiv-card h3 {
        font-size: 1.5rem;
    }

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

    .kontakt-wrapper {
        grid-template-columns: 1fr;
    }

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

    .zeiten {
        overflow-x: auto;
    }

    .zeiten-table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
