body {
    margin: 0;
    padding: 0;
    background-color: #ededed;
    font-family: Arial, sans-serif;
    }


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: #000000;
    display: flex;
    justify-content: center; /* Center navbar content */
    align-items: center;
    padding: 0 30px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    box-sizing: border-box;
}


.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}


.logo img {
    height: 14em;
}


.nav-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align icons to the right */
    position: absolute;
    right: 30px; /* Add space from the right edge */
}

.nav-icons img {
    height: 35px;
    margin-left: 15px;
}
.nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align icons to the right */
    position: absolute;
    left: 30px; /* Add space from the right edge */
}
.nav-left img{
    height: 35px;
    margin-left: 15px;
}


.main-image {
    margin-top: 80px;
    text-align: center;
    position: relative;
}

.main-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.shop-button {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    color: white;
    padding: 10px 20px;
    border: 1px solid white;
    font-size: 18px;
    cursor: pointer;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    display: flex; 
    justify-content: space-between; /* Verspreid de inhoud over de beschikbare ruimte */
    align-items: center; 
    padding: 10px 0px;
    font-size: 14px;
}

.footer span {
    margin: 10;
}
.footer a {
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Inherits the text color from the parent (or specify one) */
    background-color: transparent; /* Removes the blue background */
    border: none; /* Removes any border */

}

.main-content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.product-image{
    margin-left: 30px;
    margin-top: 140px;
}
.add-to-cart{
    margin-left: 250px;
    align-items: center;    /* Knop en afbeelding centreren */
    margin-top: 15px; 
    background-color: #cccccccc;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column; /* Stacked layout: afbeelding boven, knop onder */
    margin-bottom: 30px;
}
.container {
    display: flex;
    justify-content: flex-end; /* Plaatst de inhoud aan de rechterkant */
    align-items: flex-start; /* Zorgt ervoor dat de inhoud bovenaan uitgelijnd is */
}

.product-details {
    flex: 0 0 60%; /* 60% breedte van de container */
    margin-top: 30px; /* Ruimte boven de tekst */
}


.koptekst {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    font-size: 20px;
}

.tekst-aboutus{
    margin-left: 50px;
    margin-right: 50px;
}
.inleiding{
    margin-left: 50px;
    margin-right: 50px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
}

.info-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.info-box h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 14px;
    line-height: 1.5;
}

.info-box ul {
    margin: 10px 0;
    padding-left: 20px;
    list-style: disc;
}

.fietsers{
    font-size: 30px;
}