
:root {
    font-family: "rotunda-variable", sans-serif;
    font-variation-settings: "wght" 350;

    --page-padding: 1.5rem;
    --top-page-padding: 0.7rem;

    --global-mb: 10rem;

    --nav-height: 3rem;

    --c-dark: #181815;
    --c-white: white;
    --c-red: #FF4D41;
}

.img-wrapper img {
    will-change: filter;
  }

.canvas1x1 {
    grid-column: 1;
    grid-row: 1;
    z-index: -100;
}






*,
*::before,
*::after,
html,
body {
  cursor: none !important; 
 
  
  
}

.container {
    width: 100vw!important;
    padding: 0 var(--page-padding);
}

a:hover {
    cursor: none;
}

.cursor {
    position: fixed;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    mix-blend-mode: difference; /* optional for inverted effect */
}

ul {
    
    list-style: none;
    padding: 0;
    margin: 0;
}


a {
    color: var(--c-dark);
    text-decoration: none;
}



h3 {
    color: var(--c-dark);
    font-size: 2rem;
    font-style: normal;
    font-variation-settings: "wght" 700;
    line-height: normal;
    letter-spacing: 1.8px;
}

strong{
    font-variation-settings: "wght" 700;
}



/* nav------------ */

:root {
    --page-padding: 2rem;
    --nav-height: 4rem;
    --c-dark: black;
    --c-white: white;
  }
  
  nav {
    padding: var(--top-page-padding) var(--page-padding);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 100;
    mix-blend-mode: difference;
    background: none;
    isolation: isolate;
    transition: transform 0.5s ease-in-out;
    display: flex;
    align-items: center;
  }
  
  nav.hidden {
    transform: translateY(-100%);
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
  }
  
  nav li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  nav a {
    position: relative;
    text-decoration: none;
    color: white; /* Ensure white text for blend mode effect */
    font-variation-settings: "wght" 800;
    text-transform: uppercase;
    font-size: 2rem;
    transition: font-variation-settings 0.3s ease-in-out, color 0.4s ease-in-out;
  }
  
  .nav-logo {
    font-variation-settings: "wght" 800;
    text-transform: uppercase;
    font-size: 2rem;
    color: white;
    transition: font-variation-settings 0.2s ease-in-out, color 0.2s ease-in-out;
    z-index: 101; /* stays above background */
  }
  
  .nav-logo:hover {
    font-variation-settings: "wght" 1000;
  }
  
  .logo-cat {
    height: 1.8rem;
    
    opacity: 0;
    transition: 0.1s ease-in;
    z-index: 99;
    filter: invert(1);
    transform: translateY(-3px);
  }
  


/* menu------------------------ */

.menu {
    position: fixed; 
    top: 0;
    right: 0;
    transform: translate(50%, -50%);   
    width: 0px;
    height: 0px;
    background-color: var(--c-dark);
    transition: width 0.7s ease-in-out, height 0.7s ease-in-out, border-radius 0.5s cubic-bezier(.22,-0.02,.71,.08);
   
    z-index: 98;
    border-radius: 200%;
}
#menu-button lottie-player {
    width:40px !important;
    height:40px !important;
}
.menu-active {
    width: 640vw;
    height: 640vw;
    border-radius: 50%;
    
}

.menu-open a {
    color: var(--c-white);
    font-size: 4rem;
    font-variation-settings: "wght" 400;
    transition: font-variation-settings 0.3s ease-in-out, color 0.4s ease-in-out;
   
}
.menu-open a:hover {
    color: var(--c-white);
    
    font-variation-settings: "wght" 600;
    
}
.menu-open { 
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 99;
    padding-bottom: 15rem;
    opacity: 0%;
    width: 100%;
    
    position: fixed;
    transition: 0.5s ease-in-out;
    overflow:hidden;
    pointer-events: none;
    
    height: 0;
}
.menu-open.active {
    width: 100vw;
    height: 100vh;
    opacity: 100%;
    overflow: visible;
    pointer-events: auto;
    padding-bottom: 7rem;
    

}
.menu-hover-left {
    opacity: 0%;
    margin-right: 2rem;
    color: white; 
    transition:  0.2s ease-in-out;
}
.menu-hover-right {
    opacity: 0%;
    margin-left: 2rem;
    color: white;
    transition:  0.2s ease-in-out;
}
.menu-hover-left.active {
    opacity: 100%;
    margin-right: 0.4rem;
}
.menu-hover-right.active {
    opacity: 100%;
    margin-left: 0.4rem;
}


/* titel------------------------------ */

.titel span {
    letter-spacing: 0.2rem;
    text-transform: uppercase; 
    font-size: 6rem;    
    color: var(--c-dark) !important;
}
.titel div{
    margin-top: -3rem;
    width: 100%;
    
}
.titel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex; /* Use flexbox for centering */
    justify-content: start; 
    align-items: center;
    padding: 0 var(--page-padding);
    color: var(--c-dark);
}
.titel h2 {
    letter-spacing: 0.1rem;
    font-size: 2rem;
    font-variation-settings: "wght" 500;
    color: var(--c-dark);
}

.titel ul {
    display: flex;
}
.titel li{
    margin-right: 1rem;
}

.titel-corner-text {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: var(--top-page-padding) var(--page-padding);
    color: var(--c-dark);
    font-size: 1.125rem;
    font-variation-settings: "wght" 200;
    width: 300px;
    transition: transform 0.5s ease-in-out, font-variation-settings 0.3s ease-in-out, letter-spacing 0.3s ease-in-out, opacity 0.3s;
    transform: translateY(0px); /* Initially, no movement */
    text-align: end;
  }
  

  .titel-corner-text i {
    font-size: 1rem;
  }
  .titel-corner-text i.info {
    display: inline-block;
    font-size: 0.9rem;
    line-height: 1.3 !important;
    opacity: 0;
    font-variation-settings: "wght" 200;
    transition: opacity 0.3s ease-in-out;
    
  }
  
  .titel-corner-text:hover {
    font-variation-settings: "wght" 700;
    letter-spacing: 0.2px;
    transform: translateY(0px); /* Move the text up on hover */
  }
  
  .titel-corner-text:hover i.info {
    opacity: 1;
    font-variation-settings: "wght" 200;
  }
  

/* project showcase-----------------------------------------  */

.showcase-container {
    margin-bottom: var(--global-mb);
}


.head {
    width: 100%;
    height: 66px;
    flex-shrink: 0;
    background-color: var(--c-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--page-padding);
    
}
.head .d-flex {
    
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.head h3 {
    color: var(--c-white);
    white-space: nowrap;
    font-size: 2rem;
    font-style: normal;
    font-variation-settings: "wght" 700;
    line-height: normal;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
    margin: 0;
}
.head h3 .number {
    font-variation-settings: "wght" 100;
    display: inline-block;
    margin-right: 1rem;
    transition: 0.3s ease-in-out;
}
  
.head a h3:hover, .head a h3:hover .number{
    font-variation-settings: "wght" 800;
    /* color: var(--c-red); */
    
}
 
.head .d-flex {
    width:100%;
}
.tags {
    width: 100%;
    overflow-x: auto;
    position: relative;
    flex: 1;   
    
    
   
}

.tags-wrapper {
    margin-left: 14px;
    display: flex !important;
    align-items: center;
    gap: 14px;
    max-width: 100%;
    height: 100%;
    
    flex-wrap: nowrap;
     /* Half the viewport width */
    overflow-x: auto; /* Allow horizontal scrolling */
    white-space: nowrap; /* Prevent the content from wrapping */
    position: relative; /* Needed for the fade effect */
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none;  /* For Internet Explorer 10+ */
}
.tags.no-scroll .tags-wrapper{
    flex-wrap: wrap;
    margin: 0;
}
.tags-wrapper::-webkit-scrollbar {
    display: none; /* For WebKit-based browsers (Chrome, Safari) */
}
  
.tag-elements {
    display: flex;
    padding: 0px 12px 2px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    border: 1px solid #FFF;
    gap: 13px;
    font-size: 1rem;
    color: var(--c-white);
    white-space: nowrap;
}

.tag-highlight {
  color: var(--c-dark) !important;
  border-color: var(--c-dark) !important;
  background-color: var(--c-white) !important;
}


.tag-fade {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background:linear-gradient(to right, rgba(0,0,0,0), var(--c-dark)); z-index: 2;
  
}

.empty{
    display: flex;
    padding: 0px 12px 2px 12px;
    justify-content: center;
    align-items: center;
    gap: 13px;
    font-size: 1rem;
    width:100px;
   
}

.showcase-container .row {
    flex-direction: row;
    gap:0px !important;
}
.image-row {
  display: flex;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  flex-wrap: wrap;
}

.img-wrapper {
  flex: 1;
  height: 100%;
  position: relative;
  transition: 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
  overflow: hidden;
  background-color: black;
}

.image-row:hover .img-wrapper {
  flex: 1; /* This ensures all other images maintain normal size when hover occurs on one image */
  
}

.img-wrapper:hover {
  flex: 3 !important; /* Increase size of the hovered wrapper */
  filter: brightness(1) !important;
}

.image-row:hover .img-wrapper:not(:hover) img {
    filter: brightness(0.6) blur(1px);
  }

/* Image styling */
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  overflow: hidden;
  
  
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}


/* Optional: Button styling */
.img-wrapper .btn.dark {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  opacity: 0;
  
}

.img-wrapper:hover .btn.dark {
  opacity: 1; /* Show the button when the wrapper is hovered */
}

.image-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  
  .image-link .image-row {
    display: flex;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    flex-wrap: wrap;
  }
.text-container {
    background-color: var(--c-dark);
    padding: var(--top-page-padding) var(--page-padding);
    
}
.text-container h3,p {
    color: var(--c-white)
}
.text-container h3 {
    font-size: 1.5rem;

    font-variation-settings: "wght" 700;
    line-height: 26px; /* 108.333% */
    letter-spacing: 1.44px;
}

  
  .text-container.show {
    display: block;
    opacity: 1;
  }


/* about--------------------------- */
.about-wrapper {
    
    width: 100vw;
    min-height: 100vh;
    padding: 0 var(--page-padding);
    padding-top: calc(var(--nav-height)*1.5);
    margin-bottom: var(--global-mb);
}


.about-element .number {
    font-size: 1.5rem;
    font-variation-settings: "wght" 300;
    line-height: 40px; /* 108.333% */
    letter-spacing: 1.44px;
}

.about-element h4 {
    font-size: 1.5rem;
    font-variation-settings: "wght" 700;
    line-height: 40px; /* 108.333% */
    letter-spacing: 1.44px;
}

.about-element p {
    color: var(--c-dark);
    font-size: 1.125rem;
    font-variation-settings: "wght" 362;
    line-height: 22px; 
    letter-spacing: 1.08px;

    max-width: 500px;
}
.about-element .tag-elements {
    border-color: var(--c-dark);
    color: var(--c-dark);
}

.about-element li {
    margin-bottom: 0.8rem;
}


  


/* footer------------------------ */
.footer-wrapper {
    height: 200px;
    width: 100%;
    padding: var(--page-padding);
    background-color: var(--c-dark);
    display: flex;
    justify-content: center;
    align-items: start;
}

.footer-wrapper a {
    margin-right: 1rem;
}

.footer-wrapper h3 {
    color: var(--c-white);
    font-size: 2rem;
    font-style: normal;
    font-variation-settings: "wght" 700;
    line-height: normal;
    letter-spacing: 1.8px;
    transition: 0.3s ease-in-out;
    margin-right: 1rem;
}
.footer-wrapper ul {
    display: flex;
}





/* privacy and copyrigt */

.privacy-policy, .copyright {
  padding: 0 var(--page-padding);
  padding-top: calc(var(--page-padding) * 2);
  text-align: center;
  margin-bottom: 9rem;
}
.privacy-policy p, .copyright p{
  margin: auto;
  margin-bottom: 2rem;
  color: var(--c-dark);
  max-width: 700px;
}


/* ---------------------contact */

.contact {
    width: 100%;
    min-height: 100vh;
    display: flex;
    padding-top: calc(var(--nav-height)*2);
    padding-bottom: 10rem;
}

.contact .row {
    gap:0;
    margin:0;
}
.contact p {
    color: var(--c-dark);
    
}
form {
    padding: 3rem!important;
    
}
.form-control {
    border-radius: 0px;
    border: 1px solid white;
    border-bottom: 1px solid var(--c-dark);
}
.form-label {
    color: var(--c-dark);
    font-variation-settings: "wght" 700;
    font-size: 1.125;
    font-style: normal;
    line-height: 36px; /* 200% */
    margin: 0;
    margin-top: 1rem;
}

.contact-text {
    padding: 3rem;
    padding-left: 0;
    


}
.contact-text ul {
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
}

.cat-contact {
    position: absolute;
    top:0;
    right: 0;
    transform: translate(-30px ,-80px);
    z-index: -1;
    opacity: 0;
    transition: 0.3s cubic-bezier(0.215, 0.610, 0.355, 1);
}
.cat-contact.active {
    position: absolute;
    top:0;
    right: 0;
    transform: translate(-30px ,-120px);
    z-index: -1;
    opacity: 1;
}




input:focus,
textarea:focus,
button:focus {
  outline: none !important;
  border: 1px solid var(--c-dark) !important;
  box-shadow: none !important; /* soft glow effect */
  
}






/* gallery----------------------------- */

.gallery {
  min-height: 100vh;
  padding-top: calc(var(--page-padding) * 3);
}

.gallery-text {
  background-color: var(--c-dark);
  height: 100%;
  width: 100%;
  padding: var(--page-padding);
}

.gallery-text-wrapper {
    padding-bottom: var(--page-padding);

}

.gallery-text h3 {
    color: var(--c-white);
    line-height: 40px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.gallery-text p {
  max-width: 380px;
}

.tags-wrapper-gallery {
  display: flex;
  justify-content: start;
  gap: 10px;
  
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}

.gallery-img {
  position: relative;
  overflow: hidden;
}
.gallery-col {
    gap: calc(var(--page-padding) / 2);
    

}
.gallery-img-inner {
  position: relative;
  display: block;
}

.gallery-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.4s ease;
  padding-bottom: var(--page-padding);
}

.gallery-img .overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  padding: var(--page-padding);
  
  color: var(--c-white);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-img-inner:hover img {
  filter: brightness(30%);
}

.gallery-img-inner:hover .overlay-text {
  opacity: 1;
}
.overlay-text h3 {
    font-size: 1.5rem;
  line-height: 30px;
  color: var(--c-white);
}

.overlay-text p {
  padding: 0rem;
  font-size: 1rem;
  max-width: 380px;
}








/* ---------alternative gallery */

.gallery-4-grid-container {
  margin: var(--page-padding);
  margin-bottom: 5rem;
  column-count: 4;
  column-gap: var(--page-padding); /* optional: space between columns */
}

.gallery-4-flex-container{
  margin: var(--page-padding);
  margin-bottom: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--page-padding) ; /* Optional: space between items */
}

.gallery-4-flex-container > * {
  flex: 1 1 calc(25% - 2rem); /* 4 per row, minus the gap */
  box-sizing: border-box;
}

.gallery-3-grid-container {
  margin: var(--page-padding);
  column-count: 3;
  column-gap: var(--page-padding); /* optional: space between columns */
  margin-bottom: 5rem;
}




.gallery-3-grid-container img + p, .gallery-4-flex-container img + p, .gallery-4-grid-container img + p {
  overflow-y: auto;
  max-height: 100%;
}

/* ---------------------------------generaive design 1 */
.custom{
  /* background-color: #0f1a20; */
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 5rem
}


/* ----------------buttons */
.btn {
    display: inline-flex;
    padding: 8px 16px 6px 16px;
    
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 25px;
    white-space: nowrap;
    font-family: "Rotunda Variable";
    font-size: 1.25rem;
    font-style: normal;
    font-variation-settings: "wght" 300;
    line-height: normal;
    letter-spacing: 1.2px;
    transition: 0.2s ease-in-out;
    color: var(--c-white);
    border: 2px solid var(--c-dark);
    background: var(--c-dark);
}
.btn:hover {
    font-variation-settings: "wght" 500;
    
}
.btn.dark {
    border: 2px solid var(--c-white);
    background: var(--c-white);
    color: var(--c-dark);
}
.btn.light {
    border: none;
    background: none;
    color: var(--c-white);
    
}
.btn.light:hover {
    border: none;
    background: none;
    
    
}


.btn.dark:hover, .btn:hover {
    border: 2px solid var(--c-red);
    background: var(--c-red);
    color: var(--c-white);
}

a.icon i {
    color: var(--c-dark);
    font-size: 2rem;
    padding-top: 0.3rem;
    transition: 0.2s ease-in-out;
}
a.icon i:hover {
    color: var(--c-red);
    
    
}


.arrow svg path{
    stroke-width: 1.5px;
    transition: 0.2s ease-in-out;
}
.btn:hover .arrow svg path{
    stroke-width: 2.5px;
}

 .arrow svg {
    
    width: 24px;
    height: 24px;
    transition: 0.2s ease-in-out;
    transform-origin: center; /* Ensures rotation happens from the center */
    transform: rotate(0) translateY(-1px); /* Rotates the SVG by 45 degrees */
}

footer .arrow svg,.about-element .arrow svg, .contact-text .arrow svg {
    
    width: 24px;
    height: 24px;
    transition: 0.2s ease-in-out;
    transform-origin: center; /* Ensures rotation happens from the center */
    transform: rotate(-45deg) translateY(-1px); /* Rotates the SVG by 45 degrees */
}


h3 .arrow svg {
    width: 0px;
    height: 32px;
    transform: rotate(-45deg) translateY(-4px);
    
    transition: 0.2s ease-in-out;
}
a:hover h3 .arrow svg {
    width: 32px;
    height: 32px;
    transform: rotate(-45deg) translateY(-4px);
   
}
h3 .arrow svg path {
    stroke-width: 3.2px;
}
.btn:hover .arrow svg {
   
    transform-origin: center; /* Ensures rotation happens from the center */
    transform: rotate(-45deg) translateY(-1px); /* Rotates the SVG by 45 degrees */
}


/* adding classes-------------- */

.c-dark {
    color: var(--c-dark)!important;
}
.c-white {
    color: var(--c-white) !important;
}

.page-margin {
  margin: 0 var(--page-padding);
}

.cookie-banner {
  position: fixed; 
  bottom: 0; 
  width: 100%; 
  background-color: var(--c-dark); 
  color: white; 
  padding: 1rem; 
  text-align: center;
  z-index: 1200;
}




@media (max-width: 1040px) {
    .titel-container .col-2 {
        display: none;
        
    }
    .contact .col-2 {
        display: none;
        
    }
    .titel-container .col-8,.col-4 {
        
        width: 100% !important;
        
    }
    .contact .row {
        
        width: 100%;
        margin-right:0 !important;
        justify-content: center;
        
    }
    .contact .row .col-8 {
        
        width: 100%;
        margin-right:0 !important;
        
    }
    .contact-text {
        padding: 3rem;;
    }
    .contact p {
        max-width: 500px;
    }
    
    
   
   /* ========== Base Styles ========== */
.img-wrapper {
    flex: 1 1 calc(50% - 20px);
    height: 300px;
  }
  
  .portfolio-row .img-wrapper {
    flex: 1 1 100%;
    height: 300px;
  }
  
  .image-row {
    padding: 0 var(--page-padding);
    gap: var(--page-padding);
    margin-top: var(--page-padding);
    height:auto;
  }
  
  /* ========== Hover Effects (Default) ========== */
  .image-row:hover .img-wrapper {
    flex: 1 1 calc(50% - 20px) !important;
  }
  
  .img-wrapper:hover {
    flex: 1 1 calc(50% - 20px) !important;
    filter: brightness(1) !important;
  }
  
  .image-row:hover .img-wrapper:not(:hover) img {
    filter: brightness(1) blur(0px);
  }
  
  /* ========== CANCEL Hover Effects for Portfolio Row ========== */
  .portfolio-row .image-row:hover .img-wrapper,
  .portfolio-row .img-wrapper:hover {
    flex: 1 1 100% !important;
    filter: brightness(1) !important;
    
  }

  .portfolio-row .image-row {
    padding: 0 ;
    gap: var(--page-padding);
    margin-top: var(--page-padding);
  }
  
  /* ========== Layout Overrides for Text on Small Screens ========== */
  .showcase-container .row {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
  .row .col-9 {
    width: 100%;
  }
  
  .text-container {
    width: 100%;
  }
  
  .text-container p {
    max-width: 500px;
  }
  .head {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start !important;
    height: auto;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .head h3{
    white-space: wrap;
  }
  .head .d-flex {
    
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  
  .tags {
   
    margin-left: 0;
  }
  .tags-wrapper{
    margin-left: 0;
  }
  
  .tag-elements {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  
  .head .btn.dark {
    align-self: flex-start;
    
  }
    
      
      
}


@media(max-width: 850px) {
    form,.contact-text {
        padding: 1.5rem !important;
    }
}

@media (max-width: 716px) {
   
    

    :root {

        font-variation-settings: "wght" 350;
        
    
        --page-padding: 1rem;
        --top-page-padding: 2rem;
    
        --global-mb: 10rem;
    
        --nav-height: 3rem;
    }

    p{
        font-size: 1rem !important;
        line-height: normal !important;
    }

    .titel-container {
        padding-bottom: 9rem;
    }

      
    
      
    .titel div{
        margin-top: -2.3rem;
        
    }
    .titel span {
        letter-spacing: 0rem;
        text-transform: uppercase; 
        font-size: 4rem;    
    }

    .titel h2 {
        letter-spacing: 0.1rem;
        font-size: 1.5rem;
        font-variation-settings: "wght" 500;
        color: var(--c-dark);
    }

   
    
      

      .menu-open a {
        color: var(--c-white);
       
        font-size: 2.5rem;
        font-variation-settings: "wght" 700;
        transition: font-variation-settings 0.3s ease-in-out, color 0.4s ease-in-out;
       
    }
    .menu-open a:hover {
        
       
        
        font-variation-settings: "wght" 700;
       
       
    }
    .menu-open li {
       
       margin-bottom: 1rem;
        
       
    }

    .footer-wrapper {
        flex-direction: column-reverse;
        align-items: center;
        height: auto;
        padding-bottom: 5rem;
        gap: 1rem;
        text-align: center;
      }
    
      .footer-wrapper ul {
        flex-direction: column-reverse;
        gap: 1rem;
      }
    
      .footer-wrapper a,
      .footer-wrapper h3 {
        margin-right: 0;
      }
      .about-element .number {
        font-size: 1.3rem;
        font-variation-settings: "wght" 300;
        line-height: 20px; /* 108.333% */
        letter-spacing: 1.44px;
        margin-top: 3rem;
    }
    
    
    .about-element h4 {
        font-size: 1.2rem;
        font-variation-settings: "wght" 700;
        line-height: 30px; /* 108.333% */
        letter-spacing: 1.44px;
    }
   
}

@media (max-width: 500px) {
    form {
        padding: 2rem 0rem !important;
    }
    .contact-text {
        padding: 2rem 0.75rem !important;
    }
    .contact {
        padding-top: calc(var(--nav-height)*3);
    }

    
   
    .head .btn {
        width: 100%;
        margin-top: 0.5rem;
      }
    .menu-open a {
        color: var(--c-white);
       
        font-size: 1.7rem;
        font-variation-settings: "wght" 700;
        transition: font-variation-settings 0.3s ease-in-out, color 0.4s ease-in-out;
       
    }
    .menu-open li {
       
       margin-bottom: 1rem;
        
       
    }

    .titel div{
        margin-top: -1.7rem;
        
    }
    .titel span {
        letter-spacing: 0rem;
        text-transform: uppercase; 
        font-size: 3rem;    
    }

    .titel h2 {
        letter-spacing: 0.1rem;
        font-size: 1.3rem;
        font-variation-settings: "wght" 500;
        color: var(--c-dark);
    }

   
}



@media (max-width: 1300px) {
  .gallery-4-flex-container > * {
    flex: 1 1 calc(32% - 1rem); /* 3 items per row, adjust gap if needed */
  }
}

@media (max-width: 890px) {
  .gallery-3-grid-container {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-4-grid-container {
    column-count: 1;
  }

  .gallery-3-grid-container {
    column-count: 1;
  }

  .gallery-4-flex-container > * {
    flex: 1 1 100%;
  }
}