/* landing.css - Spezifisches CSS für Landingpages */

/* Hauptcontainer */
.landing-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Intro-Bereich */
.intro-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.intro-content h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
}

/* Service Details */
.services-details {
    padding: 2rem 0 4rem;
}

.services-details h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
    font-size: 1.8rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(227, 30, 104, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

/* Testimonials */
.testimonials {
    padding: 3rem 0;
    background-color: white;
    border-radius: 12px;
    margin: 0 auto 4rem;
    max-width: 1100px;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
    font-size: 1.8rem;
}

.testimonial {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 0 2rem 2rem;
    position: relative;
}

.testimonial p {
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-author {
    text-align: right;
    color: var(--primary);
    font-weight: 600;
}

/* Lokale Informationen */
.local-info {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.local-info h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text);
    font-size: 1.8rem;
}

.local-info p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.map-container {
    width: 100%;
    height: 400px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.local-details {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
}

.local-details h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.cta-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text);
    line-height: 1.6;
}

.cta-section .button {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Besonderheiten-Sektion */
.features-section {
    padding: 4rem 0;
    background: white;
    margin-bottom: 4rem;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
    font-size: 1.8rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Sektion */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-light);
    margin-bottom: 4rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
    font-size: 1.8rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--primary-light);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .testimonial {
        margin: 0 1rem 2rem;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .intro-content h2,
    .services-details h2,
    .testimonials h2,
    .local-info h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
}