.ragunda-activiteiten {
    background: #fffbe6;
    padding: 60px 0;
    position: relative;
}

.ragunda-activiteiten__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: ragundaActiviteitenFadeIn 0.8s ease-out forwards;
}

@keyframes ragundaActiviteitenFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ragunda-activiteiten__image-wrap {
    flex: 0 0 auto;
    max-width: 400px;
    max-height: 400px;
    width: 400px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
    animation: ragundaActiviteitenImageFadeIn 0.7s ease-out 0.2s forwards;
}

@keyframes ragundaActiviteitenImageFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.ragunda-activiteiten__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.ragunda-activiteiten__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(30px);
    animation: ragundaActiviteitenContentFadeIn 0.7s ease-out 0.4s forwards;
}

@keyframes ragundaActiviteitenContentFadeIn {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.ragunda-activiteiten__title {
    font-family: 'Gotkin', var(--ragunda-font, Arial, sans-serif);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #1d1d1d;
    opacity: 0;
    transform: translateY(15px);
    animation: ragundaActiviteitenTitleFadeIn 0.6s ease-out 0.6s forwards;
}

@keyframes ragundaActiviteitenTitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ragunda-activiteiten__description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    animation: ragundaActiviteitenDescriptionFadeIn 0.6s ease-out 0.7s forwards;
}

@keyframes ragundaActiviteitenDescriptionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ragunda-activiteiten__description p {
    margin: 0 0 1rem 0;
}

.ragunda-activiteiten__description p:last-child {
    margin-bottom: 0;
}

.ragunda-activiteiten__button {
    display: inline-block;
    border: 2px solid #1d1d1d;
    border-radius: 10px;
    padding: 0.6em 1.4em;
    background: none;
    color: #1d1d1d;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
    width: auto;
    box-shadow: none;
    text-align: left;
    align-self: flex-start;
    opacity: 0;
    transform: translateY(10px);
    animation: ragundaActiviteitenButtonFadeIn 0.5s ease-out 0.8s forwards;
}

@keyframes ragundaActiviteitenButtonFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ragunda-activiteiten__button:hover,
.ragunda-activiteiten__button:focus {
    background: #1d1d1d;
    color: #fffbe6;
    border-color: #1d1d1d;
    text-decoration: none !important;
    box-shadow: none;
}

.ragunda-activiteiten__button:after {
    display: none !important;
}

.ragunda-activiteiten__seasons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ragunda-activiteiten__season {
    display: inline-block;
    padding: 0.3em 0.8em;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ragunda-activiteiten__season--zomer {
    background: #ffc000;
    color: #1d1d1d;
}

.ragunda-activiteiten__season--winter {
    background: #4a90e2;
    color: #fff;
}

/* Activity indicator */
.ragunda-activiteiten--activity {
    border-left: 4px solid #ffc000;
}

.ragunda-activiteiten--no-activity {
    border-left: 4px solid #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .ragunda-activiteiten__container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0 1.5rem;
        width: 100%;
        max-width: none;
    }

    .ragunda-activiteiten__image-wrap {
        max-width: 100%;
        width: 100%;
        height: 250px;
        margin: 0;
        flex: none;
    }

    .ragunda-activiteiten__content {
        width: 100%;
        max-width: none;
    }

    .ragunda-activiteiten__title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ragunda-activiteiten {
        padding: 40px 0;
    }

    .ragunda-activiteiten__container {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .ragunda-activiteiten__image-wrap {
        height: 200px;
    }

    .ragunda-activiteiten__title {
        font-size: 18px;
        margin-bottom: 1rem;
    }

    .ragunda-activiteiten__text {
        font-size: 14px;
        line-height: 1.5;
    }

    .ragunda-activiteiten__button {
        padding: 0.5em 1.2em;
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .ragunda-activiteiten__image-wrap {
        width: 100%;
        max-width: 350px;
        height: 350px;
    }
} 