@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Comfortaa:wght@300..700&display=swap');

:root {
  --navbar-height: 8vw;
  --accent-color: rgb(228 255 0);
}

html {
  height: 100%;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #000000;
  overflow-x: hidden;
  height: 100%;
}

/* ===== GENERAL CONTENT ===== */
h1,
h2 {
  font-size: 14rem;
  font-family: "Bebas Neue";
  color: var(--accent-color);
}

section {
  font-family: "Comfortaa";
  text-align: center;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 6vw;
  font-size: 1.2em;
  scroll-snap-align: start;
}

section p:not(:first-of-type) {
  margin-top: 2vw;
}


/* ===== LANDING ===== */
section#landing {
  position: relative;
  height: calc(100%);
  display: flex;
  flex-direction: column;
  padding: 0;
}

#navbar {
  display: flex;
  padding: 1vw 2vw;
  align-items: center;
  width: 100%;
  height: var(--navbar-height);
}

#logo-container {
  flex: 1;
  align-items: center;
  justify-items: start;
  height: 100%;
}

#logo-container img {
  flex: 1;
  align-items: center;
  justify-items: left;
  display: flex;
  height: 100%;
}


#navigation-container {
  display: flex;
  align-items: center;
  gap: 2vw;

}

#social-container {
  display: flex;
  align-items: center;
  gap: 1vw;
}

#social-container img {
  height: 2vw;
}

#navbar #social-container a:hover {
  border-color: black;
}


#navbar a {
  font-family: "Bebas Neue";
  font-size: 3vw;
  position: relative;
  border-bottom: solid 4px;
  border-color: black;
  padding-top: 0.4vw;
  transition: 0.2s;
  color: var(--accent-color);
  text-decoration: none;
}



#navbar a:hover {
  border-color: white;
  transition: 0.2s;
  cursor: pointer;
}


#landing video {
  flex: 1;
  width: 100%;
  object-fit: cover;
  height: calc(100% - var(--navbar-height));

  /*position: absolute;
  top: var(--navbar-height);
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  width: 100%;
  height: calc(100% - var(--navbar-height));*/
}

/* ===== ABOUT ===== */
#about-us img {
  height: 350px;
  display: inline-block;
  margin: 2vw;
  max-width: 100%;
  object-fit: contain;
}

#email-link {
  font-family: "Bebas Neue";
  color: var(--accent-color);
  font-size: 4rem;
  text-decoration: none;
}

/* ===== WORKS ===== */
#picture-thumbs {
  margin-top: 3vw;
  display: flex;
  gap: 1vw;
}

#picture-thumbs img {
  flex: 1 1 0;
  min-width: 0;
  height: auto;
  object-fit: cover;
  width: 100%;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  html {
    scroll-snap-type: inherit;
  }

  #navbar {
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: #000000;
    background: radial-gradient(circle, rgb(0 0 0 / 88%) 0%, rgba(0, 0, 0, 0) 100%);
    padding-top: 5vh;
    justify-content: center;
  }

  #logo-container {
    flex: none;
    height: fit-content;
  }

  #navbar a {
    font-size: 4vh;
    border: none;
  }

  #logo-container img {
    height: 10vh;
    margin-bottom: 2vh;
  }

  #logo-container img {
    height: 10vh;
    margin-bottom: 2vh;
  }

  #navigation-container {
    flex-direction: column;
    gap: 1vh;
  }

  #social-container {
    gap: 2vh;
  }

  #social-container img {
    height: 4vh;
  }

  h1,
  h2 {
    font-size: 6rem;
  }

  #email-link {
    font-size: 2rem;
  }

  #picture-thumbs {
    flex-direction: column;
  }

}