@font-face {
  font-family: "Benzin";
  src: url("font/benzinBold.woff") format("woff");
  font-weight: 700;
}

@font-face {
  font-family: "Benzin";
  src: url("font/benzinRegular.woff") format("woff");
  font-weight: 400;
}

@font-face {
  font-family: "Borda";
  src: url("font/bordaDemibold.woff") format("woff");
  font-weight: 500;
}

@keyframes trIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animateTrIn {
  animation: trIn 1s;
}

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

body {
  background-color: #efcf26;
  background-image: url("img/IMG_8158.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
}

h1 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 3.5rem;
}

h2 {
  font-family: "Benzin";
  font-weight: 400;
  font-size: 2.25rem;
}

/* Welcome section */

.welcomeSection {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-color: rgb(0, 0, 0, 0.5);
}

.subHeader {
  margin-top: 1rem;
}

.mobileImage {
  display: none;
}

/* Info section */

.infoSection {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  color: #282828;
  background-color: #ddbd1f;
}

.infoSection h2 {
  margin: 1.25rem 0;
  font-size: 1.75rem;
}

.divider {
  margin: 1.5rem 0;
  width: 90%;
  height: 0.1rem;
  background-color: #282828;
}

.infoText {
  max-width: 65%;
  margin: 0.3rem 0;
  font-size: 1.2rem;
  font-family: "Borda";
  font-weight: 500;
}

.mapWrap {
  width: 40%;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
}

.blue {
  color: #0532ff;
}

/* Modal */

.modalBG {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.modalCard {
  width: 40%;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ddbd1f;
}

.closeWrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  font-family: "Benzin";
  font-weight: 500;
  font-size: 1.2rem;
}

.closeWrap span {
  cursor: pointer;
  margin-right: 0.3rem;
}

.modalText {
  margin: 0.5rem 0 0 0;
  font-family: "Borda";
}

/* Responsivity */

@media only screen and (max-width: 1000px) {
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: none;
    background-color: #ddbd1f;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .welcomeSection {
    color: #282828;
    background-color: rgb(0, 0, 0, 0);
  }

  .mobileImage {
    width: 90%;
    display: flex;
    border-radius: 0.25rem;
  }

  .infoSection h2 {
    padding: 0 0.5rem;
    font-size: 1.5rem;
  }

  .infoText {
    max-width: 80%;
  }

  .mapWrap {
    width: 80%;
  }

  iframe {
    width: 90%;
  }
}
