﻿
:root {
    --brand: #2563eb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    <!-- font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; -->
    font-family: Caveat;
    line-height: 1;
    background-image: url('AIHandRozeVlinder4.jpeg');
    background-size: cover; /* Scales image to cover the viewport */
    background-repeat: no-repeat; /* Prevents tiling */
    background-position: center 25%; /* Centers the image */
}

header {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-family: 'Caveat', cursive;
    font-size: 3rem; /* Makes the h1 text larger */
    font-weight: bold; /* Makes the h1 text bold */
}

h1 {
    margin: 0 0 .5rem;
    font-family: 'Caveat', cursive;
    font-size: 5rem; /* Makes the h1 text larger */
    font-weight: bold; /* Makes the h1 text bold */
}

h2 {
    font-family: 'Caveat', cursive;
    font-size: 5rem; /* Makes the h1 text larger */
    font-weight: bold; /* Makes the h1 text bold */
}

h3 {
    margin: 0 0 .5rem;
    font-family: 'Caveat', cursive;
    font-size: 0.1rem;
    font-weight: bold;
    color: transparent; /* Fully transparent text */
}

h4 {
    margin: 0 0 .5rem;
    font-family: 'Caveat', cursive;
    font-size: 2rem; /* Makes the h1 text larger */
    font-weight: bold; /* Makes the h1 text bold */
}

h5 {
    margin: 0 0 .5rem;
    font-family: 'Caveat', cursive;
    font-size: 2rem; /* Makes the h1 text larger */
    font-weight: bold; /* Makes the h1 text bold */
}

p {
    font-size: 2rem; /* Makes the h1 text larger */
}

li {
    font-size: 2rem; /* Makes the h1 text larger */
}

th {
    font-size: 2rem; /* Makes the h1 text larger */
}

td {
    font-size: 2rem; /* Makes the h1 text larger */
}

cite {
    font-size: 2rem; /* Makes the h1 text larger */
}

aside {
    margin: 0 0 .5rem;
    font-family: 'Caveat', cursive;
    font-size: 5rem;
    font-weight: bold;
    color: transparent; /* Fully transparent text */
}

nav a {
    margin-right: 1rem;
    color: var(--brand);
    text-decoration: none;
    font-size: 3rem; /* Makes the h1 text larger */
}

    nav a:hover {
        text-decoration: underline;
    }

main {
    padding: 1.5rem;
    font-family: 'Caveat', cursive;
    font-size: 2rem; /* Makes the h1 text larger */
}

button {
    background: var(--brand);
    color: #fff;
    border: 0;
    padding: .6rem 1rem;
    border-radius: .5rem;
    cursor: pointer;
}

    button:hover {
        filter: brightness(1.1);
    }

footer {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
    background: rgba(255,255,255,0.8); /* Optional: makes text readable over background */
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* Optional: subtle shadow */

}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(255,255,255,0.5); /* White overlay, adjust alpha for more/less fade */
    pointer-events: none; /* Allows clicks to pass through */
}

header, main {
    position: relative;
    z-index: 1;
}

.photo-gallery-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

    .photo-gallery-single img {
        height: 300px;
        border-radius: 1rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        background: #fff;
        max-width: 90vw;
        object-fit: contain;
    }

/* Knoppen naast elkaar onder de foto */
.gallery-arrow-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

/* Basis stijl voor knoppen */
.gallery-arrow {
    appearance: none;
    border: 1px solid #ccc;
    background: #f8f8f8;
    color: #333;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

    .gallery-arrow:hover {
        background: #eee;
    }

    .gallery-arrow:focus {
        outline: 2px solid #4a90e2;
        outline-offset: 2px;
    }

.social-links img {
    width: 44px;
    height: 44px;
}

.social-links {
    display: flex;
    gap: 22px;
    align-items: center;
}

/* Responsief: aanpassingen op mobiel */
@media (max-width: 480px) {
    .gallery-arrow {
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
    }

    h1 {
        margin: 0 0 .5rem;
        font-size: 2rem; /* Makes the h1 text larger */
        font-weight: bold; /* Makes the h1 text bold */
    }

    h2 {
        font-size: 1.5rem; /* Makes the h1 text larger */
        font-weight: bold; /* Makes the h1 text bold */
    }

    /* h3 is transparant en heel klein*/

    h4 {
        font-size: 1.25rem; /* Makes the h1 text larger */
        font-weight: bold; /* Makes the h1 text bold */
    }

    p {
        font-size: 1rem; /* Makes the h1 text larger */
    }

    li {
        font-size: 1rem; /* Makes the h1 text larger */
    }

    th {
        font-size: 1.25rem; /* Makes the h1 text larger */
    }

    td {
        font-size: 1rem; /* Makes the h1 text larger */
    }

    cite {
        font-size: 1rem; /* Makes the h1 text larger */
    }

    nav a {
        font-size: 1rem; /* Makes the h1 text larger */
        margin-right: 0;
    }
}

