@import url("https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Montserrat:wght@400;500;700;800&display=swap");

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
/*
    2. Remove default margin
  */
* {
  margin: 0;
}
/*
    3. Allow percentage-based heights in the application
  */
html,
body {
  height: 100%;
}
/*
    Typographic tweaks!
    4. Add accessible line-height
    5. Improve text rendering
  */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
/*
    6. Improve media defaults
  */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
/*
    7. Remove built-in form typography styles
  */
input,
button,
textarea,
select {
  font: inherit;
}
/*
    8. Avoid text overflows
  */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
/*
    9. Create a root stacking context
  */
#root,
#__next {
  isolation: isolate;
}

/*START*/

body {
  font-family: "Montserrat", sans-serif;
  background-color: black;
  color: whitesmoke;
  overflow-x: hidden;
}

nav.navbar {
  width: 100%;
  height: 50px;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(
    rgb(0, 0, 0),
    rgba(0, 0, 0, 0.9) 10%,
    rgba(0, 0, 0, 0.6) 90%,
    transparent
  );
  padding: 1rem;
  z-index: 100;
}

nav.navbar a {
  text-decoration: none;
  color: inherit;
}

a.logo {
  font-family: "Black Ops One", sans-serif;
  font-size: 3rem;
  margin-right: auto;
  margin-left: 10%;
  /* width: 40%; */
}

section {
  padding-top: 4rem;
  min-height: 100vh;
}

section.landing-section {
  height: 100vh;
  position: relative;
  background: url("./assets/planet_compressed.jpeg") rgba(0, 0, 0, 0.5);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-bottom: 4rem;
}

section.landing-section h1 {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.1rem;
}

.focus-in-expand {
  -webkit-animation: focus-in-expand 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    0.3s both;
  animation: focus-in-expand 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

section.landing-section hr {
  width: 80%;
  max-width: 900px;
  opacity: 0.5;
}

section.landing-section p {
  text-align: center;
  font-size: 1.5rem;
  opacity: 0.75;
  letter-spacing: 0.1rem;
}

section.landing-section .bottom-gradient-fade {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15vh;
  background: linear-gradient(transparent, #000);
}

section.about-section {
  margin: 0 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

section.about-section .about-section-item {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: auto;
}

section.about-section img {
  width: 30%;
  max-width: 150px;
}

section.about-section p {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}

section.contact-section {
  position: relative;
  background: whitesmoke;
  color: #000;
  display: grid;
  padding: 150px 1rem 1rem 1rem;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  grid-auto-rows: minmax(100px, auto);
}

.custom-shape-divider-top-1673901601 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1673901601 svg {
  position: relative;
  display: block;
  width: calc(201% + 1.3px);
  height: 141px;
}

.custom-shape-divider-top-1673901601 .shape-fill {
  fill: #000000;
}

section.contact-section h2 {
  font-size: 2.2rem;
  letter-spacing: 1px;
  text-align: center;
  align-self: center;
  grid-column: 1 / 7;
  grid-row: 1;
}

section.contact-section .contact-section-info {
  grid-column: 1 / 3;
  grid-row: 3 / 6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: #e7e7e7;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.37);
  -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.37);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.37);
}

section.contact-section .contact-section-info .contact-section-item p {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

section.contact-section
  .contact-section-info
  .contact-section-item
  .contact-info {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

section.contact-section
  .contact-section-info
  .contact-section-item
  .contact-info.phone {
  color: rgb(0, 128, 0);
}

section.contact-section
  .contact-section-info
  .contact-section-item
  .contact-info.email
  a {
  text-decoration: none;
  color: rgb(0, 0, 150);
}

section.contact-section .location-container {
  grid-column: 3 / 7;
  grid-row: 2 / 7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

section.contact-section .location-container .map-container {
  position: relative;
  /* background-color: #757575; */
  background: url("./assets/map-background.png") rgba(0, 0, 0, 0.4);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 50px;
  margin-top: 1rem;
}

section.contact-section
  .location-container
  .map-container
  .map-consent-container {
  text-align: center;
  color: whitesmoke;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #0000003a;
  border-radius: 1rem;
  padding: 1rem;
}

.btn-consent {
  cursor: pointer;
  background-color: whitesmoke;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  margin-top: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 0.4rem;
  transition-property: background-color, color, scale;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}

.btn-consent:hover,
.btn-consent:active {
  background-color: rgba(0, 0, 255, 0.5);
  color: whitesmoke;
  scale: 1.2;
}

section.contact-section .location-container .map {
  width: 100%;
  height: 100%;
}

section.contact-section .location-container .invisible {
  display: none;
  scale: 0;
}

.custom-shape-divider-bottom-1673907177 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1673907177 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.custom-shape-divider-bottom-1673907177 .shape-fill {
  fill: #272f34;
}

footer {
  background-color: #272f34;
  color: rgba(245, 245, 245, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

footer hr {
  width: 90%;
  opacity: 0.2;
  margin: 0.5rem 0;
}

footer img {
  height: 3rem;
}

footer p {
  font-size: 0.9rem;
  text-align: center;
  opacity: 0.8;
}

footer .small-divider {
  font-weight: 600;
  color: whitesmoke;
}

footer .copyright {
  font-size: 0.75rem;
}

.hover-underline-animation {
  font-weight: 700;
  opacity: 0.7;
  display: inline-block;
  position: relative;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease-in-out;
}

.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: whitesmoke;
  transform-origin: bottom right;
  transition: transform 0.25s ease-in-out;
}

.hover-underline-animation.active {
  opacity: 1;
  scale: 1.1;
}

.noSelect {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.noSelect:focus {
  outline: none !important;
}
@-webkit-keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@media (hover: hover) and (pointer: fine) {
  .hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
}

@media (max-width: 500px) {
  nav.navbar {
    justify-content: space-around;
    gap: 1rem;
  }
  a.logo {
    font-size: 2rem;
    width: 30%;
    margin-right: 0;
    margin-left: 0;
  }

  section.landing-section {
    padding: 0.5rem;
  }

  section.landing-section h1 {
    font-size: 2rem;
  }

  section.about-section .about-section-item {
    width: 100%;
  }

  .custom-shape-divider-top-1673901601 svg {
    height: 50px;
  }

  .custom-shape-divider-bottom-1673907177 svg {
    height: 30px;
  }

  section.contact-section {
    padding-top: 60px;
  }
}

@media (max-width: 1000px) {
  section.contact-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  section.contact-section .contact-section-info {
    margin-left: auto;
    margin-right: auto;
  }

  section.contact-section h2 {
    font-size: 1.8rem;
  }

  section.contact-section .contact-section-info .contact-section-item p {
    font-size: 1.1rem;
    font-weight: 600;
  }
  section.contact-section
    .contact-section-info
    .contact-section-item
    .contact-info {
    font-size: 1rem;
    font-weight: 500;
  }
}
