/* Algemene reset en basisstijl */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: transparent;
    text-align: center;
    margin: 0;
}

/* Logo styling */
.logo {
    margin: 20px 0;
}

.logo img {
    width: 15%;
    height: auto;
}

/* Container voor de inhoud en centrering */
.container {
    max-width: 90%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

/* Titels en tekststyling */
h1 {
    font-size: 4vw;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

p {
    font-size: 2vw;
    font-weight: 300;
    color: #555;
    margin-bottom: 30px;
}


	
/* Afbeelding styling */
.product-image {
    width: 80%;
    height: auto;
    margin-bottom: 30px;
}

/* Galerij instellingen */
#gallery {
    margin-bottom: 30px;
}

.main-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    margin-bottom: 20px;
}

#gallery-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

#gallery-container img {
    max-width: 100px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#gallery-container img:hover {
    transform: scale(1.1);
}
h1 {
    font-size: 4vw;
    font-weight: 600;
    color: orange; /* Hier wordt de kleur oranje ingesteld */
    margin-bottom: 20px;

/* Responsieve styling voor kleinere schermen */
@media (max-width: 768px) {
    h1 {
        font-size: 6vw;
    }

    p {
        font-size: 4vw;
    }

    .logo img {
        width: 25%;
    }

    .product-image {
        width: 90%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 8vw;
    }

    p {
        font-size: 5vw;
    }

    .logo img {
        width: 30%;
    }

    .product-image {
        width: 100%;
    }
}
