/*
Theme Name: Klavierunterricht Natascha
Theme URI: https://klavierunterricht-natascha.de
Author: Natascha Piano Class
Author URI: https://klavierunterricht-natascha.de
Description: WordPress Theme für Online-Klavierunterricht
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: klavierunterricht-theme
*/
/* ============================================
   ONLINE PIANO CLASS - WEBSITE STYLES
   ============================================ */

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

:root {
    /* Colors - Elegant Piano Style */
    --primary-color: #111111;      /* Schwarz - Primary */
    --secondary-color: #C2A35F;    /* Gold/Bronze - Accent */
    --accent-color: #C2A35F;       /* Gold/Bronze - Accent */
    --text-dark: #111111;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #F5F2EE;           /* Warm Beige/Ivory - Background */
    --border-color: #e0e0e0;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 20px;
    --container-width: 1200px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-bg);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #a88b4d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 163, 95, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo img {
    height: 120px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
    padding-left: 2rem;
}

.dropdown-menu a::after {
    display: none !important;
    height: 2px;
    background-color: var(--secondary-color);
}

/* Navigation Button */
.nav-btn {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600 !important;
}

.nav-btn:hover {
    background-color: #a88b4d !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 163, 95, 0.3);
}

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

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25D366 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 25px !important;
}

.whatsapp-btn:hover {
    background-color: #128C7E !important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.lang-btn {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--secondary-color);
    background: rgba(194, 163, 95, 0.1);
}

.lang-btn.active {
    color: var(--secondary-color);
    background: rgba(194, 163, 95, 0.15);
    font-weight: 700;
}

.lang-divider {
    color: #ccc;
    font-weight: 300;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: var(--section-padding);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.6);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.hero-content {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== WHY ONLINE SECTION (REDESIGN - DIFFERENT STYLE) ===== */
.why-online-redesign {
    padding: var(--section-padding);
    background-color: var(--white);
}

.why-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

/* Left Visual */
.why-visual {
    position: relative;
}

.icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.icon-item {
    font-size: 5rem;
    text-align: center;
    background: linear-gradient(145deg, var(--light-bg), #fff);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.icon-item:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Right Content */
.why-text {
    padding: 2rem 0;
}

.section-title-left {
    text-align: left;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.why-list {
    margin-bottom: 2rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.why-item:last-child {
    border-bottom: none;
}

.why-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.why-item-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    margin-top: 0.5rem;
}

.why-item-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== WHY ONLINE SECTION (OLD - KEEP FOR COMPATIBILITY) ===== */
.why-online {
    padding: var(--section-padding);
    background-color: var(--white);
}

.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    position: relative;
    text-align: center;
    padding: 40px;
    border-radius: 18px;
    background: #ffffff;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: var(--secondary-color);
}

.feature-icon-large {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    animation: float 3s ease-in-out infinite;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    margin-top: 0.5rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.feature-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

/* Inline CTA */
.cta-inline {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

/* Legacy grid for compatibility */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--light-bg);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== TARGET AUDIENCE SECTION V2 (REDESIGNED) ===== */
.target-audience-v2 {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.audience-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.audience-side {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.audience-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), transparent);
}

.audience-left {
    border-left: 3px solid var(--secondary-color);
}

.audience-right {
    border-right: 3px solid var(--secondary-color);
    flex-direction: row-reverse;
}

.audience-visual {
    font-size: 6rem;
    opacity: 0.3;
    flex-shrink: 0;
}

.audience-content {
    flex: 1;
}

.audience-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.audience-heading {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.audience-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.audience-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Divider */
.audience-divider {
    position: relative;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(194, 163, 95, 0.3);
    z-index: 10;
}

/* ===== TARGET AUDIENCE SECTION (OLD - KEEP FOR COMPATIBILITY) ===== */
.target-audience {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.audience-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.audience-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.audience-card h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.audience-list {
    list-style: none;
}

.audience-list li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
}

.audience-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mini CTA */
.mini-cta {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.mini-cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.trust-item {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.trust-item::before {
    content: '✔';
    color: var(--secondary-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* ===== ABOUT TEACHER SECTION V2 (REDESIGNED) ===== */
.about-teacher-v2 {
    padding: var(--section-padding);
    background-color: var(--white);
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.about-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-top: 0.5rem;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

/* Image Section */
.about-image-container {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 5px solid var(--secondary-color);
    border-radius: 20px;
    pointer-events: none;
    z-index: 2;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #d4b068);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(194, 163, 95, 0.4);
    z-index: 3;
}

.decoration-note {
    font-size: 2.5rem;
    color: var(--white);
}

/* Story Content */
.about-story {
    padding: 2rem 0;
}

.about-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-paragraph {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-quote {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fafafa 100%);
    border-left: 5px solid var(--secondary-color);
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.8;
    position: relative;
}

.about-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Actions */
.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-instagram {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    border: none !important;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
    color: #ffffff !important;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
}

.instagram-icon {
    font-size: 1.2rem;
    color: #ffffff !important;
}

.instagram-icon {
    font-size: 1.2rem;
}

/* ===== ABOUT TEACHER SECTION (OLD - KEEP FOR COMPATIBILITY) ===== */
.about-teacher {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.about-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-highlights {
    list-style: none;
    margin: 2rem 0;
}

.about-highlights li {
    padding: 0.5rem 0;
    font-weight: 500;
    color: var(--text-dark);
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    position: relative;
    padding: var(--section-padding);
    background-color: var(--white);
    overflow: hidden;
}

/* Musical Notes Background */
.music-notes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.note {
    position: absolute;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.08;
    font-family: Arial, sans-serif;
    animation: float-note 20s ease-in-out infinite;
}

.note-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.note-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
    font-size: 5rem;
}

.note-3 {
    top: 60%;
    left: 15%;
    animation-delay: 4s;
    font-size: 3.5rem;
}

.note-4 {
    top: 70%;
    right: 20%;
    animation-delay: 6s;
}

.note-5 {
    top: 40%;
    left: 80%;
    animation-delay: 8s;
    font-size: 4.5rem;
}

.note-6 {
    top: 85%;
    left: 50%;
    animation-delay: 10s;
}

.note-7 {
    top: 15%;
    left: 40%;
    animation-delay: 12s;
    font-size: 3rem;
}

.note-8 {
    top: 50%;
    right: 5%;
    animation-delay: 14s;
    font-size: 5.5rem;
}

@keyframes float-note {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(-5deg);
    }
    75% {
        transform: translateY(20px) rotate(3deg);
    }
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: var(--text-dark);
    border-left: 4px solid var(--secondary-color);
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    margin: 2rem 0;
    color: var(--text-light);
}

.price span {
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

/* ===== PRICING HOMEPAGE FEATURED ===== */
.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.pricing-card-featured {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card-featured:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(194, 163, 95, 0.2);
}

.pricing-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--gold), #d4b46f);
    color: #fff;
    padding: 0.4rem 3rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pricing-card-header {
    text-align: center;
    border-bottom: 2px solid #F5F2EE;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-from {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price-main {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.price-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.price-details {
    display: flex;
    flex-direction: column;
    padding-top: 0.5rem;
}

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

.price-unit {
    font-size: 0.85rem;
    color: #888;
}

.pricing-card-featured .pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-card-featured .pricing-features li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #F5F2EE;
    font-size: 1rem;
    color: var(--text-dark);
}

.pricing-card-featured .pricing-features li:last-child {
    border-bottom: none;
}

.feature-check {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: bold;
    font-style: normal;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.pricing-flexibility {
    background: linear-gradient(135deg, #F5F2EE, #fff);
    padding: 2.5rem;
    border-radius: 15px;
}

.flexibility-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.flexibility-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flexibility-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.flex-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.flex-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.flex-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.pricing-note {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(194, 163, 95, 0.3);
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    text-align: center;
}

@media (max-width: 968px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price-number {
        font-size: 3.5rem;
    }
    
    .pricing-ribbon {
        font-size: 0.7rem;
        padding: 0.3rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-card-featured,
    .pricing-flexibility {
        padding: 1.5rem;
    }
    
    .price-number {
        font-size: 3rem;
    }
    
    .flexibility-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===== CTA SECTION ===== */
.cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
    text-align: center;
    color: var(--white);
}

/* ===== FAQ SECTION (ACCORDION) ===== */
.faq-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-bg);
}

.faq-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    padding-left: 3rem;
}

.faq-cta {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* ===== CTA SECTION ===== */

.cta-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

/* ===== PAGE HERO (For Subpages) ===== */
.page-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    text-align: center;
    color: var(--white);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.page-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
}

/* ===== MY STORY SECTION ===== */
.my-story {
    padding: var(--section-padding);
    background-color: var(--white);
}

.story-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.story-image-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.story-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--secondary-color), #d4b068);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.badge-text {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
}

.badge-subtext {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
}

.story-heading {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.story-text p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.inline-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-left: 5px solid var(--secondary-color);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.8;
}

/* ===== TEACHING PHILOSOPHY ===== */
.teaching-philosophy {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.philosophy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.philosophy-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.philosophy-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.philosophy-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== EXPERIENCE TIMELINE ===== */
.experience-timeline {
    padding: var(--section-padding);
    background-color: var(--white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--secondary-color), transparent);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 9px;
    top: 5px;
    width: 25px;
    height: 25px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(194, 163, 95, 0.2);
}

.timeline-content {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.timeline-year {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===== WHY ME SECTION ===== */
.why-me {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.why-me-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.section-title-left {
    text-align: left;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-me-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.why-me-list {
    list-style: none;
    padding: 0;
}

.why-me-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.check-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    flex-shrink: 0;
}

.why-me-list strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.why-me-list p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Visual Column */
.why-me-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-box {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-box::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.stats-box {
    display: flex;
    gap: 1.5rem;
}

.stat-mini {
    flex: 1;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-mini-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-mini-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== SOCIAL CTA SECTION ===== */
.social-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    text-align: center;
    color: var(--white);
}

.social-cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.social-cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.social-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-buttons .btn-instagram {
    margin-top: 0.5rem;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
    font-size: 1.1rem;
    padding: 16px 36px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    border: none !important;
}

.social-buttons .btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.6);
    color: #ffffff !important;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
}

.social-buttons .btn-instagram span,
.social-buttons .btn-instagram .instagram-icon {
    color: #ffffff !important;
}

/* ===== FOOTER ===== */

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.footer-legal {
    margin-top: 1rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .audience-split {
        flex-direction: column;
        gap: 2rem;
    }
    
    .audience-side {
        flex-direction: column !important;
        text-align: center;
    }
    
    .audience-divider {
        transform: rotate(90deg);
    }
    
    .why-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px 15px;
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   ERWACHSENE PAGE STYLES
   ============================================ */

/* Intro Adult Section */
.intro-adult {
    padding: 5rem 0;
    background: #F5F2EE;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2rem;
    color: #111111;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.lead-text {
    font-size: 1.2rem;
    color: #111111;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
}

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.quote-box-large {
    background: linear-gradient(135deg, #111111, #2a2a2a);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.quote-box-large p {
    font-size: 1.2rem;
    font-style: italic;
    color: #F5F2EE;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote-author {
    display: block;
    color: #C2A35F;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Why Adult Section */
.why-adult {
    padding: 5rem 0;
    background: #fff;
}

.benefits-adult-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-adult-card {
    background: #F5F2EE;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid #C2A35F;
    transition: all 0.3s ease;
}

.benefit-adult-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C2A35F;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.benefit-adult-card h3 {
    font-size: 1.3rem;
    color: #111111;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.benefit-adult-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Teaching Approach Adult */
.teaching-approach-adult {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111111, #2a2a2a);
    color: #F5F2EE;
}

.approach-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.approach-label {
    display: inline-block;
    background: rgba(194, 163, 95, 0.2);
    color: #C2A35F;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #F5F2EE;
}

.approach-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.approach-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.approach-item h3 {
    font-size: 1.3rem;
    color: #F5F2EE;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(245, 242, 238, 0.8);
}

.approach-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-visual {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-visual-item {
    margin-bottom: 2rem;
}

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

.stat-big {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #C2A35F;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-visual-item p {
    font-size: 1rem;
    color: #F5F2EE;
    line-height: 1.5;
}

.testimonial-adult {
    background: rgba(194, 163, 95, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #C2A35F;
}

.testimonial-adult p {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #F5F2EE;
    margin-bottom: 1rem;
}

.testimonial-adult span {
    display: block;
    color: #C2A35F;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Concerns Section */
.concerns-section {
    padding: 5rem 0;
    background: #F5F2EE;
}

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

.concern-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.concern-myth {
    background: linear-gradient(135deg, #2a2a2a, #111111);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.myth-icon {
    font-size: 2rem;
}

.concern-myth h3 {
    font-size: 1.2rem;
    color: #F5F2EE;
    font-family: 'Playfair Display', serif;
}

.concern-truth {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.truth-icon {
    color: #4CAF50;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.concern-truth p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.concern-truth strong {
    color: #111111;
}

/* Requirements Section */
.requirements-section {
    padding: 5rem 0;
    background: #fff;
}

.requirements-simple {
    max-width: 900px;
    margin: 3rem auto 0;
}

.requirement-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.requirement-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.req-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C2A35F, #d4b574);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
}

.req-content h3 {
    font-size: 1.4rem;
    color: #111111;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.req-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Responsive für Erwachsene */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .benefits-adult-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approach-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .concerns-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .requirement-item {
        gap: 1.5rem;
    }
    
    .req-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ============================================
   KINDER PAGE STYLES
   ============================================ */

/* Kids Page Hero */
.page-hero-kids {
    background: linear-gradient(135deg, #E8B86D, #C2A35F);
}

/* Intro Kids Section */
.intro-kids {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FFF9F0 0%, #F5F2EE 100%);
}

.intro-kids-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-kids-text h2 {
    font-size: 2rem;
    color: #111111;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.kids-benefits-quick {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.quick-benefit:hover {
    transform: translateX(10px);
}

.benefit-emoji {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.quick-benefit p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.intro-kids-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fun-fact-box {
    background: linear-gradient(135deg, #FFD54F, #FFA726);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

.fun-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.fun-fact-box h3 {
    font-size: 1.5rem;
    color: #111111;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.fun-fact-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #222;
}

.age-info {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 3px dashed #C2A35F;
    text-align: center;
}

.age-info h4 {
    font-size: 1.3rem;
    color: #C2A35F;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.age-info p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* Why Kids Section */
.why-kids {
    padding: 5rem 0;
    background: #fff;
}

.kids-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.kids-benefit-card {
    background: linear-gradient(135deg, #F5F2EE, #fff);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.kids-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(194, 163, 95, 0.2);
    border-color: #C2A35F;
}

.benefit-icon-big {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.kids-benefit-card h3 {
    font-size: 1.3rem;
    color: #111111;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.kids-benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Teaching Kids Section */
.teaching-kids {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FFF9F0, #F5F2EE);
}

.teaching-kids-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.method-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

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

.method-visual {
    flex-shrink: 0;
}

.method-emoji {
    font-size: 4rem;
    display: block;
}

.method-content h3 {
    font-size: 1.4rem;
    color: #111111;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.method-content > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.method-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.method-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.method-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Age Groups Section */
.age-groups {
    padding: 5rem 0;
    background: #fff;
}

.age-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.age-card {
    background: #F5F2EE;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.age-card-highlight {
    background: linear-gradient(135deg, #FFD54F, #FFA726);
    border-color: #FF8F00;
    transform: scale(1.05);
}

.age-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.age-number {
    display: inline-block;
    background: linear-gradient(135deg, #E8B86D, #C2A35F);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.age-card-highlight .age-number {
    background: linear-gradient(135deg, #111111, #2a2a2a);
}

.age-card h3 {
    font-size: 1.6rem;
    color: #111111;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.age-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.age-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.age-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.age-features li::before {
    content: '🎵';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* Parent Concerns Section */
.parent-concerns {
    padding: 5rem 0;
    background: linear-gradient(180deg, #F5F2EE, #FFF9F0);
}

.parent-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.parent-faq-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.parent-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.parent-faq-card h3 {
    font-size: 1.2rem;
    color: #111111;
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.parent-faq-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.parent-faq-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.parent-faq-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.parent-faq-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #C2A35F;
    font-weight: bold;
}

.parent-faq-card strong {
    color: #C2A35F;
}

/* Parent Testimonials */
.parent-testimonials {
    padding: 5rem 0;
    background: #fff;
}

.testimonials-kids-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-kids-card {
    background: linear-gradient(135deg, #F5F2EE, #fff);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.testimonial-kids-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.15);
}

.testimonial-stars {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    font-size: 1.05rem;
    color: #111111;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #C2A35F;
}

/* CTA Kids */
.cta-kids {
    background: linear-gradient(135deg, #E8B86D, #C2A35F);
}

/* Responsive für Kinder */
@media (max-width: 1024px) {
    .kids-benefits-grid,
    .age-cards,
    .testimonials-kids-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .teaching-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .intro-kids-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .kids-benefits-grid,
    .age-cards,
    .parent-faq-grid,
    .testimonials-kids-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .age-card-highlight {
        transform: scale(1);
    }
    
    .method-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .method-list {
        text-align: left;
    }
}

/* ============================================
   PREISE PAGE STYLES
   ============================================ */

/* Price Intro */
.price-intro {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F5F2EE, #fff);
    text-align: center;
}

.price-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.price-intro-content h2 {
    font-size: 2.2rem;
    color: #111111;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.price-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* Pricing Overview */
.pricing-overview {
    padding: 5rem 0;
    background: #fff;
}

.pricing-cards {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, #F5F2EE, #fff);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid #C2A35F;
}

.pricing-card-main {
    transform: scale(1.02);
}

.pricing-header {
    background: linear-gradient(135deg, #111111, #2a2a2a);
    padding: 3rem 2.5rem;
    text-align: center;
    color: #F5F2EE;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: #F5F2EE;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.price-from {
    font-size: 1rem;
    color: rgba(245, 242, 238, 0.7);
    font-weight: 400;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: #C2A35F;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.price-unit {
    font-size: 1.1rem;
    color: rgba(245, 242, 238, 0.8);
}

.pricing-body {
    padding: 3rem 2.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.3rem;
}

.pricing-note {
    background: rgba(194, 163, 95, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    border-left: 4px solid #C2A35F;
    font-style: italic;
}

.pricing-footer {
    padding: 2.5rem;
    text-align: center;
    background: #F5F2EE;
}

/* Booking Process */
.booking-process {
    padding: 5rem 0;
    background: linear-gradient(180deg, #F5F2EE, #fff);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.process-step {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C2A35F, #d4b574);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: 'Playfair Display', serif;
}

.step-content h3 {
    font-size: 1.2rem;
    color: #111111;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.process-arrow {
    font-size: 2rem;
    color: #C2A35F;
    font-weight: bold;
}

/* Price Factors */
.price-factors {
    padding: 5rem 0;
    background: #fff;
}

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

.factor-card {
    background: #F5F2EE;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.factor-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.factor-card h3 {
    font-size: 1.3rem;
    color: #111111;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.factor-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.price-philosophy {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #111111, #2a2a2a);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    color: #F5F2EE;
}

.price-philosophy h3 {
    font-size: 1.8rem;
    color: #C2A35F;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.price-philosophy p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(245, 242, 238, 0.9);
}

/* Pricing Benefits */
.pricing-benefits {
    padding: 5rem 0;
    background: linear-gradient(180deg, #F5F2EE, #fff);
}

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

.benefits-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item-detailed {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit-item-detailed:hover {
    transform: translateX(10px);
}

.benefit-check {
    font-size: 2rem;
    color: #4CAF50;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item-detailed h3 {
    font-size: 1.2rem;
    color: #111111;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.benefit-item-detailed p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* Comparison Section */
.comparison {
    padding: 5rem 0;
    background: #fff;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-column {
    background: #F5F2EE;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-online {
    border: 3px solid #4CAF50;
    transform: scale(1.03);
}

.comparison-header {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.comparison-online .comparison-header {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
}

.comparison-offline .comparison-header {
    background: #e0e0e0;
    color: #555;
}

.comparison-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.comparison-badge {
    display: inline-block;
    background: rgba(255,255,255,0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.comparison-list {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.comparison-list li {
    padding: 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.comparison-list li strong {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.comparison-online .comparison-list li strong {
    color: #4CAF50;
}

.comparison-offline .comparison-list li strong {
    color: #999;
}

.comparison-note {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    background: rgba(76, 175, 80, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

/* Responsive für Preise */
@media (max-width: 1024px) {
    .factors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .price-intro-content h2 {
        font-size: 1.6rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-online {
        transform: scale(1);
    }
    
    .benefit-item-detailed:hover {
        transform: translateX(5px);
    }
}

/* Why Online Only Section */
.why-online-only {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F5F2EE, #fff);
}

.online-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.online-benefit-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.online-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(194, 163, 95, 0.2);
    border-color: #C2A35F;
}

.online-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.online-benefit-card h3 {
    font-size: 1.3rem;
    color: #111111;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.online-benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.online-testimonial-box {
    background: linear-gradient(135deg, #111111, #2a2a2a);
    padding: 3.5rem 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-large {
    font-size: 1.3rem;
    font-style: italic;
    color: #F5F2EE;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.testimonial-author-large {
    display: block;
    color: #C2A35F;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Responsive for Why Online Only */
@media (max-width: 1024px) {
    .online-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .online-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-large {
        font-size: 1.1rem;
    }
}

/* ============================================
   KONTAKT PAGE STYLES
   ============================================ */

/* Contact Intro */
.contact-intro {
    padding: 4rem 0;
    background: #F5F2EE;
}

.contact-intro-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-intro-text h2 {
    font-size: 2rem;
    color: #111111;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.info-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.quick-info-card h3 {
    font-size: 1.2rem;
    color: #111111;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.quick-info-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Contact Options */
.contact-options {
    padding: 5rem 0;
    background: #fff;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-method-card {
    background: #F5F2EE;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-method-featured {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: 3px solid #25D366;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #C2A35F;
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.method-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.contact-method-card h3 {
    font-size: 1.5rem;
    color: #111111;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.contact-method-featured h3 {
    color: #fff;
}

.contact-method-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.contact-method-featured p {
    color: rgba(255,255,255,0.95);
}

.contact-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #C2A35F;
    text-decoration: none;
    padding: 0.8rem 2rem;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #111111;
    color: #fff;
    transform: scale(1.05);
}

.contact-method-featured .contact-link {
    background: rgba(255,255,255,0.95);
    color: #128C7E;
}

.contact-method-featured .contact-link:hover {
    background: #fff;
    color: #25D366;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #F5F2EE, #fff);
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease;
}

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

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

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-label a {
    color: #C2A35F;
    text-decoration: underline;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 1.5rem;
}

/* Form Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-box {
    background: #F5F2EE;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sidebar-box h3 {
    font-size: 1.4rem;
    color: #111111;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.next-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.next-steps-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    counter-increment: step-counter;
}

.next-steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #C2A35F, #d4b574);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.next-steps-list li strong {
    display: block;
    font-size: 1.05rem;
    color: #111111;
    margin-bottom: 0.3rem;
}

.next-steps-list li p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.sidebar-testimonial {
    background: linear-gradient(135deg, #111111, #2a2a2a);
    color: #F5F2EE;
}

.testimonial-quote {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    color: #F5F2EE;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: block;
    color: #C2A35F;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Social Contact */
.social-contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}

.social-content {
    text-align: center;
    color: #fff;
}

.social-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.social-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
}

.btn-instagram {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.btn-instagram:hover {
    background: #fff;
    color: #E1306C;
}

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

/* Responsive für Kontakt */
@media (max-width: 1024px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-intro-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C2A35F 0%, #8B7439 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(194, 163, 95, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #d4b76d 0%, #9d8443 100%);
    box-shadow: 0 6px 20px rgba(194, 163, 95, 0.6);
    transform: translateY(-3px);
}

.scroll-top-btn:active {
    transform: translateY(-1px);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-top-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Elements to animate */
.scroll-animate {
    opacity: 0;
    transition: none;
}

.scroll-animate.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animation classes */
.fade-in-up {
    animation-name: fadeInUp;
}

.fade-in-left {
    animation-name: fadeInLeft;
}

.fade-in-right {
    animation-name: fadeInRight;
}

.fade-in {
    animation-name: fadeIn;
}

.scale-in {
    animation-name: scaleIn;
}

/* Animation delays for staggered effects */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }
}

/* ========================================
   IMPRESSUM & LEGAL PAGES
   ======================================== */

.legal-hero {
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
    color: #F5F2EE;
    padding: 8rem 0 4rem;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #C2A35F;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: #F5F2EE;
    opacity: 0.9;
}

.legal-content-section {
    padding: 4rem 0;
    background: #F5F2EE;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #111111;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #C2A35F;
}

.legal-info-block {
    margin-bottom: 1.5rem;
}

.legal-info-block p {
    margin: 0.5rem 0;
    line-height: 1.8;
}

.legal-info-block strong {
    color: #111111;
    font-weight: 600;
}

.legal-address {
    padding-left: 1.5rem;
    color: #666;
}

.legal-section a {
    color: #C2A35F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #111111;
}

.legal-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 2rem 0;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.legal-list li {
    padding-left: 2rem;
    margin: 0.5rem 0;
    position: relative;
    line-height: 1.8;
}

.legal-list li:before {
    content: "♪";
    position: absolute;
    left: 0;
    color: #C2A35F;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 6rem 0 3rem;
    }
    
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
}
