/*
============================================================
== FINALES CUSTOM CSS FÜR NKFITNESS                       ==
============================================================
*/

/* --- 1. GRUNDLAGEN & ALLGEMEINE STILE --- */
body {
    background-color: #f9f9f9;
}

.nk-section {
    width: 100%;
    padding: 3em 1.5em;
    box-sizing: border-box;
}

.nk-section-title {
    font-size: 1.8em;
    color: #333333;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 0.5em 0;
}
.nk-section-title.no-transform {
    text-transform: none;
}
.nk-section-title.icon-title {
    display: flex;
    align-items: center;
    justify-content: center;
}
.nk-section-title.icon-title img {
    margin-right: 0.5em;
}

.nk-section-subtitle {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

a {
    color: #D9006C !important;
    text-decoration: none !important;
    font-weight: bold !important;
}
a:hover {
    text-decoration: underline !important;
}

a.button {
    display: inline-block;
    background-color: #D9006C;
    color: white !important;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s;
}
a.button:hover {
    background-color: #b30059;
    text-decoration: none !important;
}


/* --- 2. SEKTIONEN-SPEZIFISCHE STILE --- */

/* HERO */
.hero-section {
    text-align: center;
}
.info-box-alt {
    border: 1px solid #D9006C;
    background-color: #FEF2F2;
    border-radius: 8px;
    padding: 1em 1.5em;
    max-width: 850px;
    margin: 2em auto 0 auto;
    text-align: left;
    color: #333;
}
.info-box-alt h2 {
    color: #D9006C;
    margin-top: 0;
    font-size: 1.5em;
    text-align: left;
}

/* KURSE */
.courses-section {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center; /* KORREKTUR: Erzwingt Zentrierung für Titel & Untertitel */
}
.course-list-container {
    max-width: 900px;
    margin: 2.5em auto 0 auto;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    text-align: left; /* Setzt Ausrichtung für Kurs-Items zurück */
}
.courses-section .course-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2em;
    padding: 1.5em 0;
    border-bottom: 1px solid #eeeeee;
}
.courses-section .course-item:last-child {
    border-bottom: none;
}
.courses-section .course-info {
    flex: 1 1 350px;
}
.courses-section .course-link {
    flex: 1 1 150px;
}
.courses-section h3 {
    color: #D9006C;
    font-size: 1.7em;
    margin: 0 0 0.5em 0;
    text-transform: none;
}
.courses-section p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* TEAM & CONTENT-BOX */
.team-motivation-section {
    margin-top: 3em; /* KORREKTUR: Zusätzlicher Abstand */
    padding-top: 0;
    padding-bottom: 0;
}
.pt-teaser-section {
    padding-top: 0;
    padding-bottom: 0;
}
.content-box {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    padding: 2.5em;
}
.content-box p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
}

/* KURSPLAN */
.schedule-section {
    padding-bottom: 0;
}
.schedule-box {
    padding: 2em;
}
.schedule-day {
    padding: 1em 0;
    border-bottom: 1px solid #eeeeee;
}
.schedule-day:first-child { padding-top: 0; }
.schedule-day:last-child { border-bottom: none; padding-bottom: 0; }
.schedule-day h3 {
    margin: 0 0 0.5em 0;
    color: #D9006C;
    text-transform: none;
}
.schedule-day p {
    margin: 0;
    font-size: 1.1em;
    line-height: 1.6;
}
.schedule-link {
    text-align: center;
    margin: 1.5em 0;
}

/* TESTIMONIALS */
.testimonials-section {
    /* Kein Hintergrund */
}
.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 2em;
    align-items: stretch;
}
.testimonial-card {
    flex: 1 1 400px;
    background-color: white;
    padding: 1.5em;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.testimonial-content {
    flex-grow: 1;
}
.testimonial-card .quote-icon {
    font-size: 4em;
    color: #D9006C;
    line-height: 0.5;
    margin-bottom: 0.3em;
    font-family: Georgia, serif;
}
.testimonial-card blockquote {
    border: none;
    padding: 0;
    margin: 0;
    font-style: italic;
}
.testimonial-card cite {
    font-weight: bold;
    font-style: normal;
    display: block;
    margin-top: 1em;
    text-align: right;
}

/* HOW-TO / DEIN WEG */
.how-to-section {
    background-color: #f7f7f7;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}
.how-to-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 2em;
    text-align: center;
}
.how-to-step {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}
.how-to-step .step-number {
    font-size: 3em;
    font-weight: bold;
    color: #D9006C;
    margin-bottom: 0.2em;
}
.how-to-step h3 {
    margin: 0;
    text-transform: none;
    min-height: 56px;
    color: #D9006C;
}

/* FINAL CTA */
.final-cta-section {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 3em; /* KORREKTUR: Zusätzlicher Abstand */
}
.final-cta-section .cta-box-divider {
    margin-top: 2.5em;
    border-top: 1px solid #e0e0e0;
    padding-top: 2.5em;
}
.final-cta-section .button-container {
    margin-top: 1.5em;
}
.final-cta-section .cta-sublink {
    margin-top: 1.5em;
    font-size: 0.9em;
}

/* ============================================================
== STILE FÜR DIE PREMIUM PREISSEITE (VOLLSTÄNDIG)         ==
============================================================
*/
#nk-premium-pricing {
    max-width: 1200px; 
    margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.pricing-tabs {
    text-align: center; 
    margin-bottom: 2em; 
    border-bottom: 1px solid #e0e0e0;
}
.tab-button {
    padding: 15px 30px; 
    cursor: pointer; 
    border: none; 
    background-color: transparent; 
    font-size: 1.2em; 
    font-weight: 600; 
    color: #666; 
    margin-bottom: -1px; 
    border-bottom: 3px solid transparent;
}
.tab-button.active {
    color: #333; 
    border-bottom: 3px solid #D9006C;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.pricing-columns {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 25px; 
    align-items: stretch;
}
.pricing-column {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2em;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.pricing-column:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.pricing-column.highlight {
    border: 2px solid #D9006C;
}
.pricing-column h2 {
    font-size: 1.8em; 
    margin-top: 0; 
    color: #333 !important; 
    min-height: 60px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-transform: none;
    letter-spacing: normal;
}
.pricing-column .description {
    color: #666; 
    margin-bottom: 1.5em; 
    flex-grow: 1;
}
.schnupper-link {
    margin-bottom: 1.5em;
    margin-top: 1.5em;
    padding-top: 1.5em;
    border-top: 1px solid #eee;
}
.schnupper-link a {
    text-decoration: underline !important;
    font-size: 1em;
}
.price-display {
    font-size: 3em; 
    font-weight: 700; 
    color: #333; 
    margin: 0.5em 0; 
    line-height: 1.1;
}
.price-display .per-month {
    font-size: 0.4em; 
    font-weight: 500; 
    color: #666; 
    display: block;
}
.duration-selector {
    margin-top: 1.5em; 
    margin-bottom: 2em;
}
.duration-selector label {
    font-weight: 600; 
    display: block; 
    margin-bottom: 0.5em;
}
.duration-selector select {
    width: 100%; 
    padding: 10px; 
    border-radius: 8px; 
    border: 1px solid #ccc; 
    font-size: 1em;
}
.cta-button {
    margin-top: auto; 
    padding: 15px 20px; 
    background-color: #D9006C; 
    color: white !important; 
    border-radius: 8px; 
    font-weight: bold; 
    font-size: 1.1em; 
    transition: background-color 0.3s;
    display: block;
}
.cta-button:hover {
    background-color: #b30059;
}
.footnote {
    text-align: center; 
    margin-top: 1.5em; 
    color: #555; 
    font-size: 0.9em;
    min-height: 2.8em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footnote-link {
    font-weight: bold;
    white-space: nowrap;
}