/* =========================================================
   Mijn Bedrijf – Aangepaste stijlen
   ========================================================= */

/* ---------- Algemeen ---------- */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
}

main {
    flex: 1 0 auto;
}

/* ---------- Hero-sectie ---------- */
.hero-section {
    background:
        linear-gradient(rgba(8, 20, 40, 0.5), rgba(8, 20, 40, 0.5)),
        url('../images/pages/hero.webp') center center / cover no-repeat;
    min-height: 70vh;
    padding: 6rem 1rem;
}

/* ---------- Pagina-headers ---------- */
.page-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* ---------- Icoon-cirkels ---------- */
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
}

.contact-icon-circle {
    width: 44px;
    height: 44px;
}

.contact-phone-text {
    line-height: 1.25;
}

.font80 {
    font-size: 0.8rem;
}

/* ---------- Card hover-effect ---------- */
.card-hover {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

/* ---------- Fade-in animatie ---------- */
.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-in:nth-child(2) {
    animation-delay: 0.15s;
}

.animate-fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

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

/* ---------- Footer ---------- */
.footer-link:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.image-placeholder {
    min-height: 260px;
    padding: 0.5rem;
    color: #0a58ca;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.image-placeholder span {
    margin-top: 0.35rem;
    font-size: 0.95rem;
    color: #5c6f82;
}

.image-placeholder-lg {
    min-height: 320px;
}

.route-image-wrap {
    padding: 0;
    min-height: auto;
}

.route-image {
    display: block;
    width: 100%;
}

/* ---------- Afbeeldingen gebruikersblokken ---------- */
.user-card-image {
    display: block;
    width: 100%;
    height: 110px;
    object-fit: contain;
    background-color: #f8fbff;
}

/* ---------- Gebruikersrooster ---------- */
.schedule-card {
    padding: 0.9rem 1rem;
    background: #f8fbff;
    border: 1px solid rgba(13, 110, 253, 0.12);
    border-radius: 1rem;
    font-size: 0.75rem;
    color: gray;
}

/* ---------- Responsieve aanpassingen ---------- */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        padding: 4rem 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .icon-circle {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 40vh;
        padding: 3rem 1rem;
    }

    .route-card {
        padding: 1.5rem 1rem !important;
    }

    .route-image-wrap {
        min-height: auto;
    }

    .user-card-image {
        height: 110px;
    }
}
