@charset "utf-8";

body {

    background-image: url('../images/binaryblack.webp');

}

.section_03_ {
    padding: 20px;
  }
  
  .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns */
    gap: 20px; /* Space between grid items */
  }
  
  .grid-item {
    background-color: #000000; /* Light gray background */
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  h3 {
    margin: 0 0 10px; /* Spacing below headings */
  }

.contact-container {
    display: flex;
    margin-top: 43vh;
}

.contact-container_02 {
    display: flex;
    margin-top: 46vh;
}

.contact-button {
    width: 100%;
    height: 8vh;
    background-color: rgb(66, 66, 66);
    font-size: 1.6rem;
    border-radius: 10px;
    color: white;
}

.gif_01_ {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    margin: 0;

}

.foto_01_ {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    margin: 0;
    max-width: 20vw;
    max-height: 25vh;
    border: solid rgb(255, 255, 255)
}

.foto_02_ {
    display: flex;
    height: 40vh;
    width: 40vh;
    max-width: 40vw;
    max-height: 40vh;
    margin-left: auto;
    margin-right: auto;
}

.image {
    width: 100%
}

.content {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    color: rgb(255, 255, 255);
}


@media only screen and (max-width: 600px) {
    .content {
        flex-direction: column;
    }
}

.section_ {
    flex: 1;
    margin: 20px;
    padding: 30px;
    background-color: rgb(22, 22, 22);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.section_03_ {
    grid-template-columns: 1fr;
    flex: 1;
    margin: 20px;
    padding: 30px;
    background-color: rgb(22, 22, 22);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    color: white;
    font-family: 'Times New Roman', Times, serif;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Maximaal 3 kolommen */
    gap: 20px;
    margin-top: 20px;
}

.project-button {
    position: relative;
    overflow: hidden;
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
    /* Breedte van de knoppen */
    padding-bottom: 100%;
    /* Houdt de knoppen vierkant */
    transition: transform 0.3s ease;
    /* Toevoegen van overgang voor knop */
}

.project-button::after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.title-bar {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    padding: 5px 0;
}

.info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(57, 57, 57, 0.9);
    color: white;
    text-align: center;
    padding: 10px;
    height: 30%;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-button:hover .project-image {
    transform: scale(1.1);
}

.project-button:hover .info-bar {
    transform: translateY(0);
    height: 30%;
}

/* Media queries voor responsiviteit */
@media (max-width: 1200px) {
    .project-button {
        height: 250px;
    }
}

@media (max-width: 800px) {
    .project-button {
        height: 200px;
    }
}