/* KidsCamp Page Specific Styles */

.content-section {
    padding: 80px 0 0 0;
    background: var(--background-gray);
}

.content-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.camp-angebote-section > h2::after,
.camp-details h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 10px;
}

.intro-text {
    margin-bottom: 30px;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--text-primary);
}

.page-intro-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.page-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

/* Camp Angebote Section */
.camp-angebote-section {
    margin-bottom: 60px;
}

.camp-angebote-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.camp-angebote-list li {
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
}

.camp-angebote-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(236, 100, 74, 0.2);
}

.camp-angebote-list h3 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 24px;
    display: block;
    margin-top: -10px;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.camp-angebote-list span {
    color: var(--text-secondary);
    font-size: 15px;
    display: block;
    line-height: 1.6;
}

/* Camp Details Section */
.camp-details {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(236, 100, 74, 0.2);
}

.camp-details h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.camp-details p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

/* Camp Info Section */
.camp-info-section {
    margin-bottom: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card {
    background: linear-gradient(145deg, #ffffff 0%, #FAFAFA 100%);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgb(236, 100, 74), rgb(236, 100, 74), transparent);
    border-radius: 12px 12px 0 0;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(236, 100, 74, 0.15);
    border-color: rgb(236, 100, 74);
}

.info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-style: normal;
}

.price-list,
.time-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item,
.time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-item:last-child,
.time-item:last-child {
    border-bottom: none;
}

.price,
.time {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
}



.widget-section {
    z-index: 99;
    position: relative;
}

.cta::before, .cta::after{
    opacity: 0.3
    }


@keyframes floatSlow {
    0%, 100% {
        transform: rotate(15deg) translateY(0);
    }
    50% {
        transform: rotate(-15deg) translateY(-20px);
    }
}

@keyframes floatSlowReverse {
    0%, 100% {
        transform: rotate(-25deg) translateY(0) translateX(0);
    }
    50% {
        transform: rotate(25deg) translateY(15px) translateX(-15px);
    }
}

/* Programm Section */
.programm-section {
    margin-bottom: 60px;
}

.programm-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.programm-list {
    display: grid;
    gap: 20px;
}

.programm-item {
    background: linear-gradient(145deg, #ffffff 0%, #FAFAFA 100%);
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 5px solid rgb(236, 100, 74);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.programm-item::before {
    content: '✓';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: rgb(236, 100, 74);
    opacity: 0;
    transition: all 0.3s ease;
}

.programm-item:hover::before {
    opacity: 0.3;
    right: 15px;
}

.programm-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(236, 100, 74, 0.15);
    border-left-width: 8px;
}

.programm-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.programm-item p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* Wichtig Section */
.wichtig-section {
    margin-top: 60px;
}

.wichtig-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.wichtig-content {
    background-color: var(--background-gray);
    padding: 30px;
    border-radius: 8px;
}

.wichtig-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wichtig-content li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.wichtig-content li:last-child {
    border-bottom: none;
}

.wichtig-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .programm-section h2,
    .wichtig-section h2 {
        font-size: 32px;
    }

    .info-card,
    .programm-item,
    .wichtig-content {
        padding: 20px;
    }

    .price,
    .time {
        font-size: 18px;
    }
}
