﻿/* ========== GLOBALE VARIABLEN ========== */
:root {
    --color-bg: #ffffff;
    --color-text: #2d2d2d;
    --color-text-light: #666666;
    --color-gold: #d4af37;
    --color-gold-dark: #b8960c;
    --color-gold-light: #f0e6c8;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e8e8e8;
    --color-gray-300: #dddddd;
    --color-gray-800: #333333;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* ========== BASIS-STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TYPOGRAPHIE ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: -2rem auto 3rem;
}

.gold-accent {
    color: var(--color-gold);
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 0.75rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link.active {
    color: var(--color-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
}

.cta-button {
    background-color: var(--color-gold);
    color: var(--color-bg) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-text);
    transition: var(--transition);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 70px;
    padding: 4rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.gold-accent {
    color: var(--color-gold);
}

.hero-button {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-bg);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.hero-button:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ========== SECTIONS ========== */
.section {
    padding: 5rem 0;
}

/* Über uns */
.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.about-benefits {
    background: var(--color-gray-100);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.about-benefits h3 {
    margin-bottom: 1rem;
    color: var(--color-gold);
    font-size: 1.2rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--color-gray-100);
    padding: 2rem;
    border-radius: 16px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-gold);
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

/* Mitglieder */
.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.member-card {
    background-color: var(--color-gray-100);
    padding: 2rem;
    border-radius: 16px;
    transition: var(--transition);
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.member-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.member-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Bereiche */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    background-color: var(--color-gray-100);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-details p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.price-info {
    font-weight: 600;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-300);
}

.category-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1rem;
    background-color: var(--color-gray-100);
    border-radius: 12px;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 0;
    background-color: var(--color-gray-100);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-bg);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
}

.cta-button-large:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Goldene Buttons - einheitlicher Stil */
.hero-button,
.cta-button,
.cta-button-large,
.recommendation-button {
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2);
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--color-gray-800);
    color: var(--color-gray-300);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.footer-menu a {
    text-decoration: none;
    color: var(--color-gray-300);
    transition: var(--transition);
    font-size: 0.875rem;
}

.footer-menu a:hover {
    color: var(--color-gold);
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .members-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--color-bg);
        width: 100%;
        padding: 2rem;
        text-align: center;
        gap: 1.5rem;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .services-grid,
    .members-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .service-card,
    .member-card,
    .category-card {
        padding: 1.5rem;
    }
    
    .hero-button,
    .cta-button-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ========== BILD-ANPASSUNGEN ========== */
img {
    max-width: 100%;
    height: auto;
}

/* Hero-Bild für verschiedene Bildschirmgrößen */
@media (max-width: 768px) {
    .hero-background {
        background-position: 60% center;
    }
}

@media (max-width: 480px) {
    .hero-background {
        background-position: 70% center;
    }
}

/* ========== SPRACHUMSCHALTUNG ========== */
.language-switch {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
    margin-right: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.lang-active {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 700;
}

.lang-link {
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition);
}

.lang-link:hover {
    color: var(--color-gold);
}

.lang-separator {
    color: var(--color-text-light);
    opacity: 0.5;
}

/* ========== ÜBER UNS HIGHLIGHT ========== */
.about-highlight {
    background: var(--color-gray-100);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.about-highlight h3 {
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.about-highlight ul {
    list-style: none;
    padding: 0;
}

.about-highlight li {
    padding: 0.5rem 0;
}

/* ========== SERVICES NOTE ========== */
.service-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-gray-100);
    border-radius: 12px;
}

/* ========== MITGLIEDER HIGHLIGHT ========== */
.members-highlight {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--color-gold);
}

.members-closing {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-gray-100);
    border-radius: 16px;
}

/* ========== BEREICHE BLÖCKE ========== */
.category-block {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.category-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    font-size: 2.5rem;
}

.category-header h3 {
    font-size: 1.75rem;
    margin: 0;
}

.category-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.category-col h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.category-col ul {
    list-style: none;
    padding: 0;
}

.category-col li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.category-col li::before {
    content: '✨';
    position: absolute;
    left: 0;
}

.category-motivation {
    background: var(--color-gray-100);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    text-align: center;
}

.category-motivation p {
    margin: 0;
}

.category-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1rem;
    background: var(--color-gray-100);
    border-radius: 12px;
}

/* ========== RESPONSIVE ANPASSUNGEN ========== */
@media (max-width: 768px) {
    .language-switch {
        margin-right: 1rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-header h3 {
        font-size: 1.5rem;
    }
    
    .members-highlight {
        margin: 0 1rem 2rem;
    }
}

/* ========== WIDERRUFSBELEHRUNG ========== */
.withdrawal-container {
    background: var(--color-gray-100);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #e74c3c;
}

.withdrawal-text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.withdrawal-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-300);
}

.withdrawal-checkbox input {
    width: 20px;
    margin-top: 2px;
}

/* ========== LEGAL PAGES (AGB, Datenschutz, Impressum) ========== */
.legal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    background-color: var(--color-bg);
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-bg);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.legal-container h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.legal-container h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.legal-container ul, .legal-container ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--color-text-light);
}

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-container .last-updated {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.legal-container .highlight {
    background: var(--color-gray-100);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.legal-container .disclaimer {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.legal-container .table-of-contents {
    background: var(--color-gray-100);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.legal-container .table-of-contents h3 {
    margin-top: 0;
    color: var(--color-gold);
}

.legal-container .table-of-contents ul {
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
}

.legal-container .table-of-contents li {
    margin-bottom: 0.5rem;
}

.legal-container .table-of-contents a {
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition);
}

.legal-container .table-of-contents a:hover {
    color: var(--color-gold);
}

/* ========== KONTAKTSEITE STYLES ========== */
.contact-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    background-color: var(--color-bg);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: var(--color-gray-100);
    border-radius: 24px;
    padding: 2rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.contact-detail h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.contact-detail p, .contact-detail a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--color-gold);
}

.contact-form {
    background: var(--color-bg);
    border: 1px solid var(--color-gray-200);
    border-radius: 24px;
    padding: 2rem;
}

.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.business-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-200);
}

.business-hours h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-gold);
}

.business-hours p {
    margin-bottom: 0.25rem;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.map-container {
    margin-top: 3rem;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.map-link {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.map-link a {
    color: var(--color-gold);
    text-decoration: none;
}

.map-link a:hover {
    text-decoration: underline;
}

/* ========== FORMULAR-STYLES FÜR KONTAKTSEITE ========== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

.required::after {
    content: '*';
    color: var(--color-gold);
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--color-gray-200);
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-group input {
    width: 20px;
    margin-top: 2px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.875rem;
}

.btn-submit {
    background: var(--color-gold);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    font-size: 1rem;
}

.btn-submit:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    background: #27ae60;
    color: white;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: none;
}

.success-message.show {
    display: block;
}

.error-message-global {
    background: #e74c3c;
    color: white;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: none;
}

.error-message-global.show {
    display: block;
}

/* ========== RESPONSIVE ANPASSUNGEN FÜR LEGAL & KONTAKT ========== */
@media (max-width: 768px) {
    .legal-page {
        padding-top: 100px;
    }
    
    .legal-container {
        margin: 0 16px;
        padding: 1.5rem;
    }
    
    .legal-container h1 {
        font-size: 1.75rem;
    }
    
    .legal-container h2 {
        font-size: 1.3rem;
    }
    
    .contact-page {
        padding-top: 100px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info, .contact-form {
        padding: 1.5rem;
    }
}

/* ========== AUFZÄHLUNGSZEICHEN ========== */

/* Häkchen-Liste (für Vorteile, Services, etc.) */
.checkmark-list {
    list-style: none;
    padding-left: 0;
}

.checkmark-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.checkmark-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Goldene Punkte-Liste (für Bereichs-Aufzählungen und About-Benefits) */
.gold-bullet-list {
    list-style: none;
    padding-left: 0;
}

.gold-bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
}

.gold-bullet-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 0.8rem;
}



.recommendation-staffel li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-gray-200);
    color: var(--color-text-light);
}

.recommendation-staffel li:last-child {
    border-bottom: none;
}

.recommendation-staffel li strong {
    color: var(--color-gold);
}

.recommendation-button {
    display: inline-block;
    background: var(--color-gold);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.recommendation-button:hover {
    background: var(--color-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive Anpassungen für Empfehlungsprogramm */
@media (max-width: 768px) {
    .recommendation-section {
        padding: 50px 0;
    }
    
    .recommendation-box {
        padding: 1.5rem;
        margin: 0 16px;
    }
    
    .recommendation-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .recommendation-box h2 {
        font-size: 1.5rem;
    }
    
    .recommendation-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ========== EMPFEHLUNGSPROGRAMM ========== */
.recommendation-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-bg) 100%);
}

.recommendation-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-bg);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
}

.recommendation-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.recommendation-box h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.recommendation-box > p {
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    color: var(--color-text-light);
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
    text-align: left;
}

.recommendation-item {
    padding: 0.75rem;
    background: var(--color-gray-100);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.recommendation-item:hover {
    transform: translateY(-3px);
}

.recommendation-number {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

.recommendation-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.recommendation-item p {
    color: var(--color-text-light);
    font-size: 0.8rem;
    line-height: 1.4;
}

.recommendation-staffel {
    background: var(--color-gray-100);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    text-align: left;
}

.recommendation-staffel h3 {
    margin-bottom: 0.5rem;
    color: var(--color-gold);
    font-size: 1.1rem;
}

.recommendation-staffel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommendation-staffel li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.recommendation-staffel li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 0.9rem;
}

.recommendation-staffel li:last-child {
    margin-bottom: 0;
}

.recommendation-staffel li strong {
    color: var(--color-gold);
}

.recommendation-button {
    display: inline-block;
    background: var(--color-gold);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    border: none;
    cursor: pointer;
}

.recommendation-button:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

/* Responsive Anpassungen für Empfehlungsprogramm */
@media (max-width: 768px) {
    .recommendation-section {
        padding: 30px 0;
    }
    
    .recommendation-box {
        padding: 1rem;
        margin: 0 16px;
    }
    
    .recommendation-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .recommendation-box h2 {
        font-size: 1.2rem;
    }
    
    .recommendation-button {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .recommendation-staffel {
        padding: 0.75rem 1rem;
    }
    
    .recommendation-staffel li {
        font-size: 0.8rem;
        padding-left: 1.25rem;
    }
}

/* ========== DETAILSEITEN (Model, Schauspieler, Künstler) ========== */
.detail-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    background-color: var(--color-bg);
}
.detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}
.detail-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}
.detail-container .subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 1rem;
}
.detail-container h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}
.detail-container h3 {
    font-size: 1.2rem;
    margin-top: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}
.detail-container p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}
.detail-container ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--color-text-light);
}
.detail-container li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.detail-container .highlight-box {
    background: var(--color-gray-100);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--color-gold);
}
.detail-container .highlight-box h3 {
    margin-top: 0;
    color: var(--color-gold);
}
.detail-container .back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.detail-container .back-link:hover {
    transform: translateX(-5px);
}
.detail-container .cta-box {
    background: var(--color-gold);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2.5rem;
}
.detail-container .cta-box h2 {
    color: white;
    margin-top: 0;
}
.detail-container .cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}
.detail-container .cta-box a.cta-button {
    background: #ffffff;
    color: #333333 !important; 
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.detail-container .cta-box a.cta-button:hover {
    background: #f5f0e0;
    transform: scale(1.03);
}
@media (max-width: 768px) {
    .detail-page { padding-top: 100px; }
    .detail-container h1 { font-size: 2rem; }
    .detail-container h2 { font-size: 1.4rem; }
}

/* ========== CATEGORY LINK (Mehr erfahren) ========== */
.category-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.category-link:hover {
    transform: translateX(5px);
    color: var(--color-gold-dark);
}

/* ========== TESTIMONIALS ========== */
.testimonial-section {
    margin: 2rem 0 3rem;
}

.testimonial-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--color-gray-100);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-gold);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-gold);
    font-style: normal;
}