.home {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.home-bottom {
    text-align: center;
    margin-bottom: 30px;
}

.home-bottom h1 {
    font-size: 2.5rem;
    margin: 0 0 10px;
    color: #f0F0F0;
}

.home-bottom h2 {
    font-size: 1.5rem;
    font-weight: normal;
    margin: 0;
    color: #f0F0F0;
}

.home-up {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px;
}

.picture {
    position: relative;
    height: 200px;
    width: calc(33.33% - 20px);
    padding-bottom: calc(33.33% - 20px); /* zorgt voor een vierkante container */
    overflow: hidden;
    border-radius: 10px;
}

.picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* socials */
.socials {
    display: flex;
    justify-content: center;
    gap: 20px;         /* Ruimte tussen de icons */
    margin-top: 20px;  /* Afstand boven de socials */
}

.socials a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.socials a:hover {
    transform: scale(1.15);
}

.socials img {
    width: 80px;   /* Pas de breedte aan naar wens */
    height: 80px;  /* Zorgt voor een vierkante weergave */
    object-fit: contain; /* Zorgt ervoor dat de afbeelding in de container past */
}

/* ribbon */
.ribbon {
    --r: 0.8em;   
    --c: #EEC373;     /* the ribbon color */
    padding-inline: 1em calc(var(--r) + 0.25em);
    border-image: conic-gradient(var(--c), var(--c)) 1 fill / 9999px / 0 stretch;
    outline: 9999px solid rgba(238, 195, 115, 0.7);
    color: #f0F0F0;
}
.top {
    clip-path: polygon(
      1em 100%,
      100% 100%,
      calc(100% - var(--r)) 50%,
      100% 0,
      1em 0,
      1em -9999px,
      0 -9999px,
      0 0
    );
}
/* review */
.review {
    margin: 50px 0 50px 25%;
    padding: 50px;
    text-align: center;
    background-color: #f0F0F0;
    border-radius: 20px;
    box-sizing: border-box;
    width: 50%;
}
.form-group {
    margin-bottom: 20px;
    position: relative;
}
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 7px;
}
.star-rating input {
    display: none; /* Hide radio buttons */
}
.star-rating label {
    font-size: 2rem;
    color: #2A2B2E;
    cursor: pointer;
}
.star-rating input:checked ~ label {
    color: #bacaad;
}
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #bacaad;
}
.review-form input, .review-form textarea {
    width: 90%;
    padding: 10px;
    font-size: 1.2vw;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #2A2B2E;
    color: #465947;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    text-align: center;
}
.review-form input::placeholder, .review-form textarea::placeholder {
    color: #2A2B2E;
}
.review-form input:focus, .review-form textarea:focus {
    border-bottom: 2px solid #465947;
}
.submit-button {
    font-size: 1.5vw;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #2A2B2E;
    color: #fff;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    border: none;
}
.submit-button:hover {
    background-color: #465947;
}
@media (max-width: 1200px) {
    .review {
        width: 75%;
        margin: 50px 0 50px 12.5%;
    }
    .review-form input,
    .review-form textarea {
         width: 90%;
         font-size: 1.8vw;
    }
    .submit-button {
        font-size: 1.8vw;
    }
}
@media (max-width: 750px) {
    .review {
        width: 100%;
        margin: 50px 0;
    }
    .review-form input,
    .review-form textarea {
         width: 90%;
         font-size: 2.2vw;
    }
    .submit-button {
        font-size: 3vw;
    }
    .picture {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
   }
}
@media (max-width: 500px) {
    .review {
        padding: 20px;
    }
    .review-form input,
    .review-form textarea {
         width: 100%;
         font-size: 3.8vw;
    }
    .submit-button {
        font-size: 4.2vw;
    }
    .picture {
        flex: 1 1 100%;
        max-width: 100%;
   }
}




