/* =========================
   RESET / BASIS
========================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  color: white;

  background-image: url("img/bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #000;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  color: rgba(210, 180, 80, 1);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

hr {
  width: 100%;
  max-width: 520px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  margin: 0.6em auto;
}


/* =========================
   BACKGROUND / HERO
========================= */

.container {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  height: 100lvh;
  overflow: hidden;

  background-image: url("img/bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #000;
}

.hero {
  position: relative;
  width: 100%;
  height: 100%;
}


/* =========================
   LOGO / TITELS
========================= */

.logo {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 760px);
  text-align: center;
}

h1 {
  color: white;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(4rem, 8vw, 6rem);
  letter-spacing: 0.3em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  margin: 0;
  padding-left: 0.3em;
}

h2 {
  color: white;
  font-size: 1.3em;
  letter-spacing: 0.3em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
  margin: 0;
}

h3 {
  color: white;
  font-size: 2em;
  letter-spacing: 0.5em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  margin: 0;
  padding-left: 0.5em;
}


/* =========================
   CTA BUTTON
========================= */

.cta-button {
  font-family: Helvetica, Arial, sans-serif;
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: inline-block;
  max-width: 90vw;
  padding: 0.5em 0.75em;

  color: white;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;

  cursor: pointer;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);

  background: rgba(50, 50, 50, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

  border: 1px solid white;
  border-radius: 0.3em;
  box-shadow: inset 0px 4px 8px rgba(255, 255, 255, 0.1);

  transition: 0.25s ease;
}

.cta-button:hover {
  color: rgba(210, 180, 80, 1);
  border-color: rgba(210, 180, 80, 1);
  background: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px 4px 8px rgba(215, 215, 255, 0.3);
}

.cta-button:active {
  color: rgba(210, 180, 80, 0.75);
}


/* =========================
   BANNER
========================= */

.banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;

  padding: 0.75em 1em;
  text-align: center;
  color: white;

  pointer-events: none;
}


/* =========================
   DESKTOP FOOTER
========================= */

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 30;

  width: 100%;
  min-height: 3em;
  padding: 0.5em 1em;

  color: white;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(255, 255, 255, 0) 100%
  );

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.socials ul,
.contact ul {
  display: flex;
  align-items: center;
  gap: 0.8em;
}

.socials a,
.contact a {
  display: flex;
  align-items: center;
  gap: 0.35em;
  line-height: 1.2;
}


/* =========================
   MOBILE NAVBAR
========================= */

.navbar {
  display: none;
  position: fixed;
  top: 0.5em;
  left: 0.5em;
  z-index: 1000;
}

#menu-toggle {
  display: none;
}

.hamburger {
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background: white;
  transition: 0.3s;
}

.hamburger:hover span {
  background: rgba(210, 180, 80, 1);
}

.menu {
  display: none;
  position: absolute;
  top: 3.5em;
  left: 0;
  z-index: 1001;

  width: min(88vw, 22em);
  max-width: 88vw;
  padding: 1.2em;

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  box-shadow: inset 0px 2px 3px rgba(255, 255, 255, 0.25);
}

#menu-toggle:checked + .hamburger + .menu {
  display: block;
}

#menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

#menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mcontact ul {
  display: flex;
  flex-direction: column;
  gap: 0.85em;
}

.mcontact a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  line-height: 1.25;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.msocials ul {
  display: flex;
  align-items: center;
  gap: 1em;
}

.msocials a {
  display: flex;
  align-items: center;
}


/* =========================
   TABLET / KLEINERE DESKTOP
========================= */

@media only screen and (max-width: 1024px) {
  .contact a {
    font-size: 0.85rem;
  }

  h1 {
    font-size: clamp(3.5rem, 9vw, 5.5rem);
  }
}


/* =========================
   MOBIEL
========================= */

@media only screen and (max-width: 765px) {
  html,
  body {
    height: 100%;
    min-height: 100%;
    overflow: hidden;

    background-image: url("img/bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
  }

  .container {
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    height: 100lvh;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .hero {
    height: 100%;
  }

  .navbar {
    display: block;
  }

  footer {
    display: none;
  }

  .banner {
    top: 0.8em;
    left: auto;
    right: 0.6em;

    width: calc(100% - 5em);
    padding: 0;

    text-align: right;
    font-size: 0.65em;
    z-index: 15;
  }

  .banner h2 {
    font-size: 1em;
    letter-spacing: 0.08em;
    line-height: 1.25;
  }

  .logo {
    top: 38%;
    width: 92vw;
  }

  .logo hr {
    width: 76%;
  }

  h1 {
    font-size: clamp(2.4rem, 14vw, 3.8rem);
    letter-spacing: 0.12em;
    padding-left: 0.12em;
  }

  h3 {
    font-size: clamp(0.75rem, 4vw, 1rem);
    letter-spacing: 0.16em;
    padding-left: 0.16em;
  }

  .cta-button {
    top: 69%;
    width: auto;
    max-width: 86vw;

    font-size: 1rem;
    line-height: 1.2;
    white-space: normal;

    padding: 0.7em 0.9em;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .menu {
    width: calc(100vw - 1em);
    max-width: calc(100vw - 1em);
    padding: 1em;
  }

  .mcontact a {
    font-size: 0.85rem;
  }
}


/* =========================
   EXTRA KLEINE TELEFOONS
========================= */

@media only screen and (max-width: 390px) {
  .banner {
    font-size: 0.6em;
  }

  h1 {
    font-size: 2.55rem;
    letter-spacing: 0.1em;
    padding-left: 0.1em;
  }

  h3 {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    padding-left: 0.14em;
  }

  .cta-button {
    font-size: 0.95rem;
  }

  .mcontact a {
    font-size: 0.78rem;
  }
}


/* =========================
   FALLBACKS
========================= */

@supports not (height: 100dvh) {
  .container {
    height: 100vh;
  }
}

@supports (height: 100lvh) {
  .container {
    height: 100lvh;
  }
}