/* ===== CARDS ===== */

.card {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.5rem;
    animation: fadeInUp 0.6s ease-out backwards;
}

.card-body {
    padding: 1.5rem;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.card-title {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.card-text {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.5;
}


/* ===== CLICKABLE CARD WRAPPER ===== */

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link .card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-link:hover .card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.02);
}

.card-link:hover .card-icon {
    transform: translateY(-3px);
    opacity: 1;
}

.card-link:hover .card-title {
    color: #fff;
}

.card-link .card-body::after {
    content: "→";
    display: block;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.2rem;
}

.card-link:hover .card-body::after {
    opacity: 0.6;
}


/* ===== COLORED GLOWS PER CARD TYPE ===== */

.card-link:hover .card-abonnement {
    box-shadow: 0 8px 16px rgba(74, 157, 95, 0.15);
}

.card-link:hover .card-verzoeklijst {
    box-shadow: 0 8px 16px rgba(92, 179, 255, 0.15);
}

.card-link:hover .card-rubrieken {
    box-shadow: 0 8px 16px rgba(255, 107, 107, 0.15);
}

.card-link:hover .card-historie {
    box-shadow: 0 8px 16px rgba(255, 217, 61, 0.15);
}


/* ===== DISABLED CARD ===== */

.card-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.card-disabled:hover {
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
}


/* ===== ANIMATIONS ===== */

html {
    scroll-behavior: smooth;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.col:nth-child(1) .card {
    animation-delay: 0.05s;
}

.col:nth-child(2) .card {
    animation-delay: 0.1s;
}

.col:nth-child(3) .card {
    animation-delay: 0.15s;
}

.col:nth-child(4) .card {
    animation-delay: 0.2s;
}

.col:nth-child(5) .card {
    animation-delay: 0.25s;
}

.col:nth-child(6) .card {
    animation-delay: 0.3s;
}


/* ===== HEADER ===== */

header a {
    transition: opacity 0.2s ease;
}

header a:hover {
    opacity: 0.8;
}

header a:hover h1 {
    color: #fff;
}