

    
    

    .page-title {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .main-content {
        padding: 40px 0;
    }

  
    /* Algemene stijlen */
    body {
        font-family: 'Jost', sans-serif;
        background-color: #f8f9fa;
        margin: 0;
        padding: 0;
    }

    /* Hero-sectie met afbeelding als achtergrond */
    .hero {
        position: relative;
        width: 100%;
        height: 500px;
        
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        overflow: hidden;
    }

    /* Overlay om tekst beter leesbaar te maken */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Donkere overlay */
    }

    /* Hero-tekst met fade-in animatie */
    .hero-content {
        position: relative;
        z-index: 2;
        padding: 20px;
        background: rgba(0, 0, 0, 0.6); /* Zachte achtergrond */
        border-radius: 10px;
        animation: fadeIn 1.5s ease-in-out;
    }

    /* Animatie voor fade-in */
    @keyframes fadeIn {
        0% { opacity: 0; transform: translateY(-20px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    /* Styling voor details sectie */
    .details {
        text-align: center;
        background: white;
        padding: 30px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin: 20px auto;
        max-width: 800px;
        transition: transform 0.3s ease-in-out;
    }

    .details:hover {
        transform: scale(1.03);
    }

    /* Fancy knoppen */
    .btn {
        padding: 12px 25px;
        border-radius: 50px;
        font-size: 18px;
        transition: all 0.3s ease-in-out;
        background: #007bff;
        color: white;
        border: none;
    }

    .btn:hover {
        background: #0056b3;
        transform: translateY(-3px);
    }

    /* Responsieve verbeteringen */
    @media (max-width: 768px) {
        .hero {
            height: 350px;
        }
        .hero-content {
            font-size: 14px;
            padding: 10px;
        }
        .details {
            padding: 15px;
        }
    }
    .container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}


/* Grote afbeelding */
.main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s ease-in-out; /* Smooth fade effect */
}

/* Thumbnail container */
.thumbnail-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    margin: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.3s ease, border 0.3s ease;
    border-radius: 5px;
    opacity: 0.8;
}

.thumbnail:hover, .thumbnail.active {
    transform: scale(1.1);
    border: 2px solid #007bff;
    opacity: 1;
}

/* Scooter details */
.scooter-details {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.scooter-details h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.scooter-details .price {
    font-size: 24px;
    color: red;
    font-weight: bold;
}

/* Responsiviteit */
@media (max-width: 768px) {
    .thumbnail-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .thumbnail {
        width: 60px;
        height: 45px;
    }
}

.scooter-details .table {
    margin-top: 10px;
}

.scooter-details .btn {
    margin-top: 15px;
    width: 100%;
}
