@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Montserrat+Alternates&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@1&display=swap');

:root {
  --main-yellow: #F8C727;
  --yellow-shade: rgba(249, 199, 39, 0.5);
  --bg: #333;
  --bg-light: #434343;
  --text-white-light: #b5b5b5;
  --text-white: #fafafa;
  --grey: #aeadb5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: 'Montserrat', sans-serif;
}
body {
  background-color: var(--bg);
  color: var(--text-white);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat Alternates', sans-serif;
}
main {
  width: 85%;
  margin: 4rem auto;
}
img {
  display: block;
  width: 100%;
  height: auto;
  user-drag: none; 
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* Navigation */

header {
  font-family: 'Montserrat Alternates', sans-serif;
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  background-color: var(--bg);
}
.nav-bar {
  width: 85%;
  height: 4.5rem;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 6rem;
  height: auto;
  margin-bottom: 0.5rem;
}
.icons {
  display: none;
  pointer-events: none;
}
.nav-list {
  display: flex;
  list-style: none;
}
.nav-item {
  margin: 1rem;
}
.nav-item a {
  position: relative;
  text-decoration: none;
  color: var(--text-white);
}
.nav-item:hover:not(:last-child) a {
  color: var(--main-yellow);
  transition: all 0.3s ease;
}
.nav-item.active a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 0.125rem;
  background-color: var(--main-yellow);
}
.nav-item.lang {
  position: relative;
}
.nav-item.lang div img {
  display: inline;
  width: 1.5rem;
  height: 1rem;
  margin-top: 0.1rem;
  border-radius: 0.2rem;
}
.mobile-lang {
  display: none;
}
/* Media Queries */
@media (max-width: 910px) {
  .icons {
    display: block;
    font-size: 1.4rem;
    pointer-events: all;
    cursor: pointer;
    color: var(--text-white);
  }
  .close-menu {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 2rem;
    color: #eb648c;
  }
  .nav-list {
    width: 20rem;
    height: 100vh;
    background-color: #88878f;
    position: fixed;
    top: 0;
    right: -26rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    transition: all 650ms ease-in-out;
  }
  .nav-list.active {
    right: 0;
  }
  .nav-item {
    font-size: 1.4rem;
    padding: 0.25rem;
    margin: 0.75rem;
  }
  .nav-item a {
    color: #fff;
    margin: 1rem;
  }
  .desktop-lang {
    display: none;
  }
  .mobile-lang {
    display: inline;
  }
}

/* Hero section */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 4.5rem);
  background: url('../Images/compressed/SocialeWerkenVanDeBurgemeesterkampenhout2019.jpg') center;
  background-size: cover;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.container {
  position: relative;
  width: 85%;
  height: calc(100vh - 4.5rem);
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-text .hero-title {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  max-width: 1100px;
}
.hero-text .hero-desc {
  max-width: 40rem;
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
}
.call {
  display: inline-flex;
  overflow: hidden;
}
.call .btn {
  font-weight: 600;
}
.btn {
  position: relative;
  text-decoration: none;
  padding: 0.85rem 0.85rem;
  border-radius: 0.5rem;
  background-color: var(--main-yellow);
  color: #000;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background: linear-gradient(90deg, transparent, white, transparent);
  transition: all 0.5s;
}
.btn:hover::before {
  left: 100%;
}
@media (max-width: 500px) {
  .hero-text .hero-title {
    font-size: 1.8rem;
  }
  .hero-text .hero-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  /* .hero {
    height: 28rem;
  } */
}

/* Main homepage section */

.main-placeholder .btn {
  display: inline-block;
}


/* Footer */
footer {
  background: var(--bg-light);
}
.footer-container {
  width: 85%;
  height: 100%;
  margin: auto;
  padding: 2rem;
  display: flex;
  justify-content: space-evenly;
}
.column {
  background: var(--bg);
  border-radius: 1rem;
  padding: 2rem;
  margin: 1rem;
}
.footer-title {
  position: relative;
  z-index: 1;
  /* text-align: center; */
  margin-bottom: 0.75rem;
  font-family: 'Montserrat Alternates', sans-serif;
}
.footer-title h2 {
  font-size: 1.5rem;
}
.footer-title::before {
  content: '';
  position: absolute;
  left: -0.3rem;
  top: -0.3rem;
  width: 1rem;
  height: 1rem;
  border-radius: 30% 70% 70% 30% / 30% 45% 55% 70% ;
  background-color: var(--main-yellow);
  z-index: -5;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: -0.7rem;
  top: -0.7rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 30% 70% 70% 30% / 30% 45% 55% 70% ;
  background-color: var(--yellow-shade);
  z-index: -5;
}
.footer-items {
  display: flex;
  flex-direction: column;
}
.footer-link {
  margin: 0.5rem 0;
  /* text-align: center; */
  color: var(--text-white-light);
  text-decoration: none;
  font-weight: 600;
}
.footer-link:hover {
  color: var(--main-yellow);
  transition: all 0.3s ease;
}
.footer-link.contact i {
  margin-right: 1rem;
}
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .footer-container {
    padding: 0;
  }
  .column {
    padding: 1.5rem;
  }
}
