/* Animaties */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.richard-footer {
    background-color: #171717;
    padding-top: 60px;
    padding-bottom: 20px;
}

.richard-footer-top {
    display: flex;
    gap: 125px;
    margin-bottom: 40px;
}

.richard-footer-logo {
    flex: 0 0 auto;
    max-width: 200px;
    display: flex;
    align-items: flex-start;
    animation: fadeInLeft 0.8s ease-out;
}

.richard-footer-logo img {
    max-width: 100%;
    height: auto;
    max-height: 75px;
    width: auto;
}

.richard-footer-columns {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 80px;
}

.richard-footer-column {
    min-width: 0;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

/* Staggered delay voor kolommen */
.richard-footer-column:nth-child(1) { animation-delay: 0.1s; }
.richard-footer-column:nth-child(2) { animation-delay: 0.2s; }
.richard-footer-column:nth-child(3) { animation-delay: 0.3s; }
.richard-footer-column:nth-child(4) { animation-delay: 0.4s; }

h1.richard-footer-title {
    color: #45AC34;
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0px;
    font-weight: 600;
}

.richard-footer-description p {
    color: white;
    font-size: 20px;
    margin: 0;
    line-height: 1.5;
}

.richard-footer-description a,
.richard-footer-menu a,
.richard-footer-text a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.richard-footer-description a:hover,
.richard-footer-menu a:hover,
.richard-footer-text a:hover {
    color: #45AC34;
    opacity: 1;
    text-decoration: none;
}

/* Menu styling zonder list items */
.richard-footer-menu {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.richard-footer-menu li {
    display: none; /* Verbergen van list items */
}

.richard-footer-menu a {
    font-size: 20px;
    color: white;
    display: block;
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

/* Staggered delay voor menu items */
.richard-footer-menu a:nth-child(1) { animation-delay: 0.3s; }
.richard-footer-menu a:nth-child(2) { animation-delay: 0.4s; }
.richard-footer-menu a:nth-child(3) { animation-delay: 0.5s; }
.richard-footer-menu a:nth-child(4) { animation-delay: 0.6s; }
.richard-footer-menu a:nth-child(5) { animation-delay: 0.7s; }
.richard-footer-menu a:nth-child(6) { animation-delay: 0.8s; }
.richard-footer-menu a:nth-child(7) { animation-delay: 0.9s; }
.richard-footer-menu a:nth-child(8) { animation-delay: 1.0s; }
.richard-footer-menu a:nth-child(9) { animation-delay: 1.1s; }
.richard-footer-menu a:nth-child(10) { animation-delay: 1.2s; }

.richard-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding-top: 30px;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.richard-footer-text,
.richard-footer-link {
    font-size: 16px;
    color: white;
    margin: 0;
}

.richard-footer-link {
    color: white;
    text-decoration: none;
    pointer-events: auto; /* Links weer klikbaar maken */
    transition: color 0.3s ease;
}

.richard-footer-link:hover {
    color: #45AC34;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Stijl voor groene links */
.green-link {
    color: #45AC34;
    font-weight: bold;
}

.green-link:hover {
    color: #45AC34;
    text-decoration: none;
}

/* Stijl voor alleen het Loile woord */
.maker {
    color: #45AC34!important;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
}

.maker:hover {
    color: #307024;
}

.richard-footer-separator {
    color: white;
    margin: 0 5px;
}

.richard-footer-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #45AC34;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

@media screen and (max-width: 768px) {
    .richard-footer {
        padding: 40px 0;
    }

    .richard-footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .richard-footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .richard-footer-text.left,
    .richard-footer-text.right {
        margin: 0;
    }
    .richard-footer-bottom {
        flex-wrap: wrap;
    }
}

/* Initiële status van elementen die geanimeerd worden */
.richard-footer:not(.animated) .richard-footer-logo,
.richard-footer:not(.animated) .richard-footer-column,
.richard-footer:not(.animated) .richard-footer-menu a,
.richard-footer:not(.animated) .richard-footer-bottom {
    opacity: 0;
    animation-play-state: paused;
}

/* Zorg ervoor dat alle menu items geanimeerd worden */
.richard-footer-menu-item {
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.richard-footer.animated .richard-footer-menu-item {
    animation-play-state: running;
} 