:root {
	--main-gutter: 4rem;  
    --margin-sides: 5rem;

      /* Define font families */
    --font-serif: 'minion-pro-display', serif;
    --font-sansserif: "Zen Kaku Gothic New", sans-serif;

      /* Define font sizes */
    --font-size-body-small: 12px;
    --font-size-body: 16px;
    --font-size-h1: 2.5em;
    --font-size-h2: 2em;
    --font-size-h3: 1.75em;
    --font-size-h4: 1.5em;
    --font-size-h5: 1.25em;
    --font-size-h6: 1em;
}

a, u {
    text-decoration: none;
  }

.text p:empty {
    height: 1em; /* This creates the visual spacing you want */
    display: block;
}

/* Optional: ensure consistent paragraph spacing */
.text p {
    margin-bottom: 0.5em;
}

/* width */
::-webkit-scrollbar {
    width: 1px;
  }
  
/* Track */
::-webkit-scrollbar-track {
background: var(--background-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
background: var(--element-color);
}

@media (min-width: 300px) and (max-width: 768px) {
    /* Styles for screens between 600px and 768px */
    :root {
        --margin-sides: 1rem;
       
    }
}


/* Mobile classes */

.only-mobile {
    visibility: hidden;
}

@media (min-width: 300px) and (max-width: 768px) {
    /* Styles for screens between 600px and 768px */
    .only-mobile {
       visibility:visible;
       
    }
}

.no-mobile {
    visibility: visible;
}

@media (min-width: 300px) and (max-width: 768px) {
    /* Styles for screens between 600px and 768px */
    .no-mobile {
       visibility:hidden;
       
    }
}



/* Body */
body {
    line-height: 1;
	-webkit-font-smoothing: antialiased;
    font-family: var(--font-serif);
    font-size: var(--font-size-body);
    color: var(--element-color);
}

/* header */
.header {
    z-index: 100;
}

.logo {
    padding:calc(0.5 * var(--margin-sides) - 0.8rem);
	height: auto;
	position: fixed;
    top: 0;
    left: 0;
    z-index: 100;

    & img {
        width: 1.6rem;
        height: auto;
    
    }
    
}

.logo-horizontal {
    padding:0;
	width: auto;
	position: fixed;
    top: 0.95rem;
    left: 1rem;
    z-index: 100;

    & img {
        width:auto;
        height:  1.6rem;
       
    }
    
}


/* NAVIGATION */ 

/* Flex container for navigation */

.nav-center {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
    display: flex;
    justify-content: space-between; /* Align items with equal space between them */
    width: 20%;
    min-width: 350px;
    padding: 5px;
    z-index: 101;
    
    transition: backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
    border-radius: 100px;
    padding-left: 20px;
    padding-right: 20px;
    
}

.nav-center-right {
    position: fixed;
    left: calc(50% + 220px);
    top: 15px;
    width: auto;
    display: flex;
    padding: 5px;
    z-index: 102;
    transition: backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
    border-radius: 100px;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-center-right:hover {
    border: 1px solid gold;
}


@media (min-width: 768px) and (max-width: 1100px) {
    /* Styles for screens between 600px and 768px */
    .nav-center-right {
       left: calc(50%);
       transform: translateX(-50%);
       top: 70px;
       padding: 3;
    }
}

.blur-active {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgb(255, 255, 255, 0.2);
}

/* Style for navigation links */
.nav-center a {
    font-weight: 600;
    text-decoration: none;
    text-transform: lowercase;
    padding: 10px;
    transition: 0.2s;
	font-size: 17px !important; 
}

.nav-center a:hover {
    font-style: italic;
    letter-spacing: 1px;
}

.nav-center-right a {
    font-weight: 600;
    text-decoration: none;
    text-transform: lowercase;
    padding: 10px;
    transition: 0.2s;
	font-size: 17px !important; 
}

.nav-center-right a:hover {
    font-style: italic;
    letter-spacing: 1px;
}



.nav-right {
    position: fixed;
    top: 12px;
    right: 0;
    text-align: right;
    display: flex;
    justify-content: flex-end; /* Align items with equal space between them */
    width: 30%;
    min-width: 200px;
    padding: 10px;
    z-index: 100;

}

.nav-right a {
    font-size: var(--font-size-body-small);
    text-decoration: none;
    text-transform: uppercase;
    
    float: right;
    padding: 10px;
    transition: 0.2s;
    font-weight: 600;
	font-size: 17px !important; 
}

.hamburger-menu {
    z-index: 500;
    position: fixed;
    width: 2.5rem;
    height: 2.5rem;
    top: 0.5rem;
    right: 0.5rem;
    cursor: pointer;

    & svg {
        /* stroke: var(--element-color); */
    }
}

.close-btn {
    position: fixed;
    width: 1.5rem;
    height: 1.5rem;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    overflow: hidden;


  
}

.cls-1 {
    fill: none;
    stroke: var(--element-color);
    stroke-linecap: round;
    stroke-miterlimit: 10;
    stroke-width: 3.4px;
}


/* HEADER NAVIGAION MOBILE */

@media (min-width: 300px) and (max-width: 768px) {
    /* Styles for screens between 600px and 768px */
    .nav-center {
       visibility: hidden;
    }

    .nav-right {
        visibility: hidden;
    }

    .footer-logo {
        visibility: hidden;
    }

    .cls-1 {
        stroke: whitec;
    }
}

.overlay-nav {
    top: 0;
    z-index: 1000;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
}   

.nav-center-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 auto;
}

.nav-center-mobile a {
    font-size: 2.5rem;
    padding: 10px;
    text-decoration: none;
    color: var(--element-color);
}

/* FOOTER */

.footer {
    width: 100%;
    height: auto;
    background-color: rgb(27, 27, 124);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;

    & h1 {
        font-size: var(--font-size-body-small);
        font-family: var(--font-sansserif);
        font-weight: bold;
        color: white;
        line-height: 20px;
    }

    & li {
        text-decoration: none;
        list-style: none;
        margin-top: 5px;
    }

    & a {
        font-size: var(--font-size-body-small);
        font-family: var(--font-sansserif);
        font-weight: 400;
        color: white;
        text-decoration: none;

    }

    & p {
        font-size: var(--font-size-body-small);
        font-family: var(--font-sansserif);
        font-weight: 400;
        color: white;
        text-decoration: none;
    }
}

.footer-info {
    height: 100%;
    display: grid;
    flex: 1 1 auto;
    grid-template-columns:auto 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "contact overig logo";
    border-bottom: white 0.5px solid;
}

.footer-logo img{
    grid-area: logo;
    height: 88px;
    float: right;
    align-self: end;
    padding: 50px;
}

.footer-contact {
    padding: 50px;
    grid-area: contact;
}

.footer-projecten {
    padding: 50px;
    grid-area: projecten;
}

.footer-overig {
    padding: 50px;
    grid-area: overig;
}

.footer-slider {
    margin: 6px;
    white-space: nowrap;
    grid-area: catagories;
    overflow: hidden;
    z-index: 3;
    display: flex;
    height: auto;
    align-items: center;

    & .inner {
        animation: marquee 50s linear infinite;
        -webkit-animation: marquee 50s linear infinite;
        transition: all .25s ease-in-out;

    }

    & a {
        text-transform: uppercase;
        text-decoration: none;
        color: white;
        font-family: sans-serif;
        font-size: 7px;
        border-right: 1px dotted white;
        padding: 10px 2.5rem;
    }
}

.footer-slider:hover .inner,
.footer-slider:active .inner {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }



  /* .placeholder {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(10px);
    transform: scale(1.1);
  }

.main-image {
    width: 100%;
    height: auto;
    opacity: 1;
    z-index: 2;
}
 .main-image[loading="lazy"] {
    opacity: 1;
  }
  .main-image[loading="lazy"] .placeholder{
    opacity: 0;
  } */