* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-white: white;
    --color-black: #000000;
    --color-black-transparent: color-mix(in srgb, var(--color-black) 50%, transparent 50%);
}
@media (max-width: 480px) {
    :root { 
        font-size: smaller; 
    }
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    font-family: Roboto;
    font-size: 1em;

    color: var(--color-white);
    background-color: var(--color-black);

    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100dvh;
}

a:any-link {
    color: inherit;
    text-decoration: none;
}

.overlay {
    position: absolute;

    width: 100%;
    height: 100%;

    justify-content: center;
    align-content: center;

    pointer-events: none;

    background-color: none;

    z-index: 500;
}

.button {
    align-self: center;
    justify-self: center;

    width: fit-content;

    padding: 15px;
    
    border: solid var(--color-black);
    border-radius: 1em;
    
    background-color: var(--color-white);
    color: var(--color-black);

    font-weight: bold;
    text-align: center;

    cursor: pointer;
}

.one-third {
    position: relative;
    height: 33.3vh;
}

img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.square-500 {
    max-width: 500px;
    max-height: 500px;
    object-fit: cover;
}

/* #region fonts */
@font-face {
    font-family: "Oswald";
    src: url('assets/font/Oswald/Oswald-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto";
    src: url('assets/font/Roboto/Roboto-VariableFont_wdth\,wght.ttf') format('truetype');
}

@font-face {
    font-family: "Playball";
    src: url('assets/font/Playball/Playball-Regular.ttf') format('truetype');
}
/* #endregion */


/* #region STYLING */
.negative-color {
    color: var(--color-black);
    background-color: var(--color-white);
}

.page-title * {
    margin: 0;
    text-align: center;
    
}

    .page-title h1 {
        font-size: 3em;
        font-weight: 300;
    }

    .page-title h2 {
        font-size: 2em;
        font-weight: 300;
    }

    .page-title h3 {
        font-size: 1.5em;
        font-weight: 300;
    }

    .page-title p {
        font-family: "Roboto";
        font-size: 1.2em;
        font-weight: 300;
    }


h1, h2, h3 {
    margin: 1.5em 0;

    text-align: center;
}

p {
    margin: 1.5em 0;
    
    text-align: justify;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: bold;  
}

.center-text {
    text-align: center;
}

.chevron {
    justify-self: center;
    align-self: center;
    
    padding: 25px;

    cursor: pointer;
    font-weight: bold;
    font-size: 25px;
}
@media (screen-width: 480px) {
    .chevron {
        padding: 10px;
    };
}

.round-border-white {
    border: 1px solid white;
    border-radius: 5%;
}

/* #endregion */


/* #region PAGE */
.page {
    position: relative;

    min-height: 100vh;
}

    .page-part {
        position: relative;        
    }

        .page-part__content {
            position: relative;
        }

            .page-part__content-inner {
                position: relative;

                padding: 100px;
            }
            @media (max-width: 480px) {
                .page-part__content-inner {
                    padding: 25px;
                }
            }

        .page-part__image {
            position: absolute;

            width: 100%;
            height: 100%;
        }

        .page-part__image img {
            position: relative;

            width: 100%;
            height: 100%;
            
            object-fit: cover;
        }

/* #endregion */


/* #region HEADER */
.site-header {
    position: fixed;
    width: 100%;

    display: grid;
    grid-auto-flow: column;
    
    color: var(--color-white);
    z-index: 999; 
}

    .site-header ul,
    .site-header li {
        list-style: none;
    }

/* PRIMARY NAVIGATION */
.primary-navigation {
    position: relative;

    display: grid;
    grid-auto-flow: row;

    background-color: var(--color-black-transparent);
}

    .primary-navigation > .menu-button {
        display: none;
    }

    .primary-navigation li {
        padding: 15px;
    }

@media (max-width: 480px) {
    .primary-navigation > .menu-button {
        display: flex;
    }

    .primary-navigation > .menu-home {
        display: none;
    }

    .primary-navigation:has(.menu-checkbox:checked) > .menu-home,
    .primary-navigation:has(.menu-checkbox:checked) ~ .breadcrumb-navigation > .menu {
        display: grid;
    }

}

/* BREADCRUMB NAVIGATION */
.breadcrumb-navigation {
        position: relative;

        display: grid;
        grid-auto-flow: column;

        justify-content: space-evenly;
        align-content: center;
        background-color: var(--color-black-transparent);
}

    .breadcrumb-navigation > .menu > label {
        padding: 15px;
        cursor: pointer;
    }

    .breadcrumb-navigation .submenu {
        position: absolute;

        display: none;

        top: 100%;
        background-color: var(--color-black-transparent);
        
    }

    .breadcrumb-navigation .submenu > li {
        padding: 15px;
    }

    .breadcrumb-navigation .menu:hover .submenu {
        display: block;
    }

@media (max-width: 480px) {

    .site-header,
    .breadcrumb-navigation {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
    }

        .breadcrumb-navigation > .menu {
            display: none;
        }

        .breadcrumb-navigation > .menu label {
            padding: 15px;
        }

        .breadcrumb-navigation > .menu > .submenu {
            position: static;
        }

        .breadcrumb-navigation > .menu:hover > .submenu {
            display: none;
            background-color: none;
        }

        .breadcrumb-navigation > .menu:has(.menu-checkbox:checked) > .submenu {
            display: block;
            background-color: var(--color-black-transparent);
        }




}
/* #endregion */


/* #region GRID */
.header { grid-area: header; }
.left   { grid-area: left; }
.main   { grid-area: main; }
.auto   { grid-area: auto; }
.right  { grid-area: right; }
.footer { grid-area: footer; }

.center {
    justify-items: center;
    align-items: center;
}

.grid {
    display: grid;
    gap: 1em;
}

.grid-auto-col-300 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 2em;

    justify-items: center;
    align-items: center;
}

.item {
    width: 100%;
    height: 100%;
    
    padding: 1em;
}

/* MAIN */
.grid:has(> .main) {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: 
    "main";
}

/* HEADER & MAIN */
.grid:has(> .main):has(> .header) {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: 
    "header"
    "main";
}

/* MAIN & FOOTER */
.grid:has(> .main):has(> .footer)  {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: 
    "main"
    "footer";
}

/* HEADER & MAIN & FOOTER */
.grid:has(> .main):has(> .header):has(> .footer)  {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: 
    "header"
    "main"
    "footer";
}

/* L + MAIN + R */
.grid:has(> .main):has(> .left):has(> .right) {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr;
    grid-template-areas: 
    "left main right";
}

/* L + R */
.grid:has(> .left):has(> .right) {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: 
    "left right";
}
@media (max-width: 480px) {
    .grid:has(> .left):has(> .right).collapse-mobile {
    grid-template-columns: 1fr;
    grid-template-areas: 
    "left"
    "right";
}
}


/* L + AUTO + R */
.grid:has(> .auto):has(> .left):has(> .right) {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: 
    "left auto right";
}


/* #endregion */


/* #region SITE-GREETER */
.site-greeter {
    align-content: center;
    justify-content: center;

    color: white;
    z-index: 1;
}

    .site-greeter h1 {
        margin-bottom: 1em;
        
        font-size: 80px;
        font-weight: 400;
        font-family: "Oswald";
    }

    .site-greeter p {
        margin-bottom: 0.5em;
        
        font-size: 25px;
        font-family: "Playball";
        text-align: center;
    }
/* #endregion */


/* #region SITE-FOOTER */
.site-footer {
    position: relative;

    background-color: var(--color-black);

    padding: 0 25px;
}

.site-footer > hr {
    width: 100%;
    size: 2;
}

.logo-svg {
    width: 200px; 
    align-self: center;
}
@media (max-width: 480px) {
    .logo-svg {
        width: 100px; 
    }
}
/* #endregion */


/* #region SLIDESHOW */
.slideshow {
    justify-items: center;
    align-items: center;
}

.slide {
    justify-items: center;
    align-items: center;

    opacity: 0;
    transition: opacity 0.4s ease;
}

.slide.active {
    opacity: 1;
}
/* #endregion */


/* #region PRIJSLIJST */
.prijslijst {
    width: 100%;
    height: fit-content;
}

    .prijslijst h2 {
        text-align: left;
        margin: 0;
    }

    .prijslijst table {
        border-spacing: 0;
    }

    .prijslijst tr.top td {
        padding-top: 0.5em;
    }

    .prijslijst tr.bottom td {
        border-collapse: collapse;
        border-bottom: 1px solid var(--color-black-transparent);

        padding-bottom: 0.5em;
    }

    .prijslijst tr td:last-child {
        text-align: right;
        min-width: 75px;
    }

@media (max-width: 480px) {
    .prijslijst * {
        font-size: smaller;
    }
}
/* #endregion */


/* #region GALLERY */
.gallery {
    position: relative;
    
    display: grid;
    grid-template-areas: 
    "header"
    "main";
    
}

.gallery .main {
    display: grid;
    grid-template-columns: repeat(auto-fit, 600px);
    grid-auto-rows: 600px;
    grid-auto-flow: dense;

    justify-content: center;
    align-content: center;
    
    zoom: 0.5;

    object-fit: contain;
    overflow: hidden;
}

.gallery .item {
    inline-size: 100%;
    block-size: 100%;

    object-fit: cover;   
}

.gallery .item:hover {
    scale: 1.25;
    transition: scale 1s ease-in-out;
    z-index: 2;
}

/* #endregion */