@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900");

* {
  scrollbar-width: thin;
  scrollbar-color: #0f0f0f #181818;
}

*::-webkit-scrollbar {
  width: 10px;
  width: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #181818;
}

*::-webkit-scrollbar-track:hover {
  background-color: #181818;
}

*::-webkit-scrollbar-track:active {
  background-color: #181818;
}

*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #0f0f0f;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #0f0f0f;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #0f0f0f;
}

::-moz-selection { /* Code for Firefox */
  color: #0f0f0f;
  background: white;
}

::selection {
  color: #0f0f0f;
  background: white;
}

/* MOBILE VIEW */

@media (max-width: 650px) {
  .nav-link {
    display: none !important;
  }

  .nav-language {
    display: none !important;
  }

  .hamburger-menu {
    display: initial !important;
  }

  .section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    padding-left: 30px !important;
    padding-right: 10px !important;
  }

  .intro-reviews {
    display: none !important;
  }

  .mobile-lang-switcher {
    display: block !important;
  }
}

/* TABLET VIEW */

@media (max-width: 992px) {
  .header {
    width: calc(100% - 40px) !important;
  }

  .section {
    width: calc(100% - 60px) !important;
  }

  .footer {
    width: calc(100% - 40px) !important;
  }

  .section-title {
    font-size: 30px !important;
  }
}

/* DESKTOP VIEW */

@media (min-width: 992px) {
  .header {
    width: 80% !important;
  }

  .section {
    width: calc(80% - 20px) !important;
  }

  .footer {
    width: 80% !important;
  }

  .section-text {
    width: 360px !important;
  }
}

/* CUSTOM */

@media (max-width: 1350px) {
  .intro-review {
    max-width: 450px !important;
  }
}

@media (max-width: 1200px) {
  .intro-review {
    max-width: 350px !important;
  }
}

@media (min-width: 1300px) {
  .intro-reviews {
    margin-right: 8% !important;
  }
}

/* BODY */

body {
    margin: 0;
    height: auto;
    font-family: Libre Franklin;
    font-size: 20px;
    background: #181818;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

/* BUTTON */

.button {
    padding: 10px 15px;
    background: white;
    color: #0f0f0f;
    font-weight: bold;
    font-size: 16px !important;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
}

/*MODAL*/

.modal{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: -webkit-fill-available;
    z-index: 999;
    padding: 20px;
    background: #0f0f0f;
    color: white;
    outline: 1px solid #272727;
    border-radius: 20px;
    box-shadow: 0px 0px 50px 25px #27272730;
    display:none;
}

.modal_button{
    background: #0f0f0f;
    width: max-content;
    color: white;
    font-size: 18px;
    padding: 5px 10px;
    margin-top: 20px;
    border-radius: 10px;
    outline: 1px solid #272727;
    transition: 300ms;
}

.modal_button:hover{
    background: #272727;
    outline: 1px solid #555555;
    cursor: pointer;
}

/* HEADER */

.header {
  height: 50px;
  width: calc(100% - 100px);
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #0f0f0f;
  margin: 10px;
  border-radius: 20px;
  z-index: 100;
  box-shadow: 0px -20px 50px 8px rgba(39, 39, 39, 0.75);
  outline: 1px solid #272727;
}

.header-background {
  background: #181818;
  width: 100%;
  height: 45px;
  position: fixed;
  top: 0;
  z-index: 99;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-logo {
  height: 25px;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

/* .header-logo:hover {
  background: #141414;
  height: 26px;
} */

.header-logo-href {
  margin: 0;
}

/* FOOTER */

.footer {
  height: 12px;
  background: #0f0f0f;
  color: white;
  padding: 10px;
  border-radius: 20px;
  margin-top: 2.5px;
  margin-bottom: 5px;
  outline: 1px solid #272727;
  box-shadow: 0px -20px 50px 8px rgba(39, 39, 39, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  position: relative;
  bottom: 0;
}

#footer_naseno {
  font-weight: bold;
  font-size: 15px;
}

#footer_naseno::after {
  content: "\00a0";
}

/* DESKTOP NAV MENU */

.nav-link {
  padding: 15px 15px;
  border-radius: 20px;
  color: white;
  font-weight: 500;
  text-decoration: none;
  height: 30px;
  transition: background 0.3s ease;
  font-size: 20px;
}

.nav-link:hover {
  background: #272727;
}

.nav-language {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 10px;
  outline: 1px solid #272727;
  background: #141414;
  transition: 0.3s;
}

.lang-toggle:hover {
  background: #272727;
}

.lang-toggle.lang-toggle-active {
  background: #272727;
}

.lang-flag {
  width: 22px;
  height: 15px;
  display: block;
  border-radius: 2px;
}

/* MOBILE NAV MENU */

.hamburger-menu {
  padding: 15px 15px;
  border-radius: 20px;
  color: white;
  font-weight: 500;
  text-decoration: none;
  height: 30px;
  transition: 0.3s;
  display: none;
  background: #141414;
  font-size: 16px;
  outline: 1px solid #272727;
}

.hamburger-menu:hover {
  background: #272727;
}

.mobile-nav {
  position: fixed;
  display: none;
  width: 71px;
  height: 30px;
  background: #141414;
  z-index: 999;
  top: 20px;
  right: 20px;
  border-radius: 20px;
  padding: 10px;
  z-index: 999;
  outline: 1px solid #272727;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
}

.mobile-lang-switcher {
  display: none;
  margin: 5px 5px 0px 5px;
}

.mobile-lang-switcher .nav-language {
  margin-left: 0;
  display: flex !important;
}

.mobile-nav-link {
  padding: 15px 15px;
  border-radius: 20px;
  color: white;
  font-weight: 500;
  text-decoration: none;
  height: 30px;
  transition: background 0.3s ease;
  display: none;
  height: min-content;
  width: max-content;
  background: #141414;
  outline: 1px solid #272727;
  margin: 5px;
  display: none;
}

.mobile-nav-link:hover{
    background: #272727;
}

.mobile-nav-link.mobile-nav-link-active{
    background: #272727;
}

.mobile-nav-close {
  width: 15px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  display: none;
}

.backdrop {
  z-index: 998;
  width: 100%;
  height: 100%;
  background: #00000099;
  position: fixed;
  top: 0;
  display: none;
}

/* SECTION */

.section {
  background: #0f0f0f;
  margin: 2.5px 10px;
  border-radius: 20px;
  height: min-content;
  color: white;
  box-shadow: 0px -20px 50px 8px rgba(39, 39, 39, 0.25);
  outline: 1px solid #272727;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 40px;
  padding-right: 0px;
}

.section:last-of-type {
  margin-bottom: 10px;
}

.section-title {
  font-size: 35px;
  color:white;
  margin: 0;
  font-weight: 400;
  margin-bottom: -5px;
}

.section-subtitle {
  font-weight: 600;
  margin-bottom: 10px;
}

.section-text {
  width: 290px;
  line-height: 24px;
  color: #d8d8d8;
  font-size: 18px;
}

.section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* INTRO SECTION */

#intro.section {
  background: linear-gradient(
      to right,
      #0f0f0f 0%,
      #0f0f0feb 60%,
      #0f0f0fe6 70%,
      #0f0f0fd1
    ),
    url(../img/grid.png) !important;
  background-repeat: revert;
  background-position: 100% 0;
  margin-top: 85px !important;
  display: flex;
  justify-content: space-between;
  height: fit-content;
  min-height:280px;
}

.intro-review {
  display: none;
  outline: 1px solid #272727;
  background: #0f0f0f;
  padding: 20px;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0px 0px 50px 25px rgba(15, 15, 15, 0.47);
}

.intro-reviews {
  margin: 0px 40px;
  display: flex;
  align-items: center;
}

.intro-review-stars {
  margin-bottom: 2px;
  margin-top: -6px;
}

.intro-review-stars img {
  width: 15px;
}

.intro-review-url {
  color: #d8d8d8;
  font-size: 14px;
}

.intro-review-url::before {
  content: " ";
}

.intro-review-text {
  color: #d8d8d8;
  margin-top: 3px;
  font-size: 16px;
}

.reviews {
    background: #0f0f0f;
    color: white;
    padding: 20px 30px;
    margin: 2.5px 10px;
    border-radius: 20px;
    min-width: calc(100% - 80px);
    height: auto !important;
    transition: height 0.5s ease;
    outline: 1px solid #272727;
    display: initial !important;
}

.review {
  display: none;
  padding: 10px;
  transition: height 0.5s ease;
}

@media (min-width: 650px) {
  .reviews {
    display: none !important;
  }
}

.review-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.intro-review-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.review-stars {
  margin-bottom: 2px;
  margin-top: -6px;
}

.review-stars img {
  width: 15px;
}

.review-url {
  color: #d8d8d8;
  font-size: 14px;
}

.review-url::before {
  content: " ";
}

.review-text {
  color: #d8d8d8;
  margin-top: 3px;
  font-size: 16px;
  line-height: 24px;
}

.review:first-of-type {
  margin-left: 0px;
}

.reviews::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.projecten {
    display: flex;
    flex-wrap: wrap;
    width:calc(100% - 20px);
    margin: 2.5px 0px;
}

.project {
    width: 50%;
    box-sizing: border-box;
    margin: 2.5px;
    padding: 20px;
    padding-left:30px;
    height:200px;
    outline:1px solid #272727;
    border-radius:20px;
    background:#0f0f0f;
    color:white;
    position:relative;
    text-decoration:none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#lichtflits.project{
    background: linear-gradient(140deg, rgb(15 15 15 / 74%) 0%, rgba(15,15,15,0) 100%), #5c5bf0 !important;
    margin: 2.5px;
}

#dilune.project{
    background: linear-gradient(140deg, rgb(15 15 15 / 64%) 0%, rgba(15,15,16,0) 90%), #d1c9b2 !important;
    margin: 2.5px;
}

#pakdiebonus.project{
    background: linear-gradient(140deg, rgb(15 15 15 / 45%) 0%, rgba(15,15,16,0) 40%), #ea5b0c !important;
    margin: 2.5px;
}

.project-title{
    font-size:25px;
    filter: drop-shadow(0px 0px 10px #0f0f0f)
}

.project-url{
    text-decoration:none;
    color: #d8d8d8;
    font-size:14px;
    filter: drop-shadow(0px 0px 10px #0f0f0f)
}

.project-text {
    font-size: 18px;
    margin-top: 15px;
    opacity: 0.85;
    max-width: 175px;
    filter: drop-shadow(0px 0px 10px #0f0f0f)
}

@media (min-width: 640px) {
    .project {
        padding-left: 40px;
    }
}

@media (max-width: 650px) {
    .project {
        width: 100%;
    }
    
    .project:first-of-type {
        margin-top:0px;
    }
}

@media (min-width: 650px) {
    .project {
        margin-left:2.5px;
        margin-right: 2.5px;
        margin-top:0px;
        margin-bottom:0px;
        width:calc(50% - 5px);
    }
    
    .project:last-of-type {
        margin-right:0px;

    }
}

@media (max-width: 992px) {
  .projecten {
    width: calc(100% - 20px) !important;
  }
}


@media (min-width: 992px) {
  .projecten {
    width: calc(80% + 20px) !important
  }
}
