@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --mc: #364974;
    --header-height: 3rem;
    --hue-color: 250;
    --first-color: hsl(var(--hue-color), 69%, 61%);
    --first-color-second: hsl(var(--hue-color), 69%, 61%);
    --first-color-alt: hsl(var(--hue-color), 57%, 53%);
    --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
    --title-color: hsl(var(--hue-color), 8%, 15%);
    --text-color: hsl(var(--hue-color), 8%, 45%);
    --text-color-light: hsl(var(--hue-color), 8%, 65%);
    --input-color: hsl(var(--hue-color), 70%, 96%);
    --body-color: hsl(var(--hue-color), 60%, 99%);
    --container-color: #FFF;
    --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);
    --body-font: 'Poppins', sans-serif;
    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== Margenes Bottom ==========*/
    --mb-0-25: .25rem;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;

}

::-webkit-scrollbar {
    display: none;
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10rem;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.category img {
    margin-top: 1rem;
    max-width: 80%;
}

.category h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ccc;
}

.category h2 span {
    display: block;
    margin-bottom: 0.5rem;
}


.image-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(5em, 1fr));
    grid-gap: 1rem;
}

.hoogheden {
    display: grid;
    grid-template-columns: repeat(5, minmax(5em, 1fr));
    grid-gap: 1rem;
}

.pakken img {
    width: 8.5rem;
    height: 11rem;
}

.steken img {
    width: auto;
    height: 6rem;
    resize: both;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: scale(0.8);
}

.overlay.show {
    opacity: 1;
    transform: scale(1);
}

.overlay img {
    max-width: 80%;
    max-height: 80%;
    transition: transform 0.3s;
}

.overlay.show img {
    transform: scale(1.2);
}

.image-container {
    position: relative;
}

.image-container img {
    cursor: pointer;
}