/* Komm zur Feuerwehr - Spezifische Styles */

/* Intro Section */
.intro-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 20px;
    margin: 40px 0;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.intro-media,
.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro-text {
    color: #fff;
}

.intro-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-copy {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.intro-highlight {
    color: #ff4444;
}

/* Call-to-Action Buttons */
.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-primary {
    background-color: #ff1111;
    color: white;
}

.cta-button-primary:hover {
    background-color: #b71c1c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

.cta-button-secondary {
    background-color: transparent;
    color: #d32f2f;
    border: 2px solid #d32f2f;
}

.cta-button-secondary:hover {
    background-color: #d32f2f;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

/* Passive Unterstützung */
.support-section {
    background: #f5f5f5;
    padding: 60px 20px;
    margin: 40px 0;
}

.support-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.support-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.support-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-button {
        width: 90%;
        text-align: center;
        margin: auto;
    }

    .intro-title {
        font-size: 2rem;
    }

    .intro-content {
        gap: 24px;
    }

    .intro-lead {
        font-size: 1.15rem;
    }
}
