/* Basis-Layout */
.course-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.course-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Info-Box Styling */
.info-box {
    background: var(--primary-light);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.info-box h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

/* Feature Liste */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-icon {
    background: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

/* Kurs-Grid */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Kurs-Karten */
.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(227, 30, 104, 0.15);
}

.course-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image {
    transform: scale(1.05);
}

.course-content {
    padding: 2rem;
}

.course-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Kurs-Info Liste */
.course-info {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.course-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.course-info i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* Buchungsbereich */
.booking-placeholder {
    border: 2px dashed var(--primary-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1.5rem;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.booking-placeholder:hover {
    border-color: var(--primary);
    background: white;
}

.booking-placeholder p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Bald verfügbar Badge */
.coming-soon {
    opacity: 0.85;
    position: relative;
}

.coming-soon::after {
    content: 'Bald verfügbar';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* CTA Bereich */
.cta-section {
    background: linear-gradient(135deg, var(--primary-light), white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section .section-title {
    margin-bottom: 1.5rem;
}

.cta-section p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .course-section {
        padding: 4rem 0;
    }

    .features-list {
        gap: 2rem;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .info-box {
        padding: 2rem 1.5rem;
    }

    .feature-item {
        text-align: left;
    }

    .booking-placeholder {
        padding: 1.5rem;
    }
}