body,
html {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: Arial, Helvetica, sans-serif; */
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #111;
}

a {
  text-decoration: none;
  color: #111;
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p2 {
  background-image: url("assets/foto-179.jpg");
  height: 500px;
}

.p3 {
  background-image: url("assets/foto-137.jpg");
  height: 500px;
}

.hero {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-shadow: #847f7f 0px 0px 10px;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero::before {
  /* content: " ";
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(assets/foto-130-3.jpg); */
  /* background-image: url(assets/foto-163.jpg); */
  /* filter: opacity(0.8); */
  /* position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0; */

  content: "";
  position: fixed; /* stretch a fixed position to the whole screen */
  top: 0;
  max-width: 100vw;
  height: 100vh; /* fix for mobile browser address bar appearing disappearing */
  left: 0;
  right: 0;
  z-index: -1; /* needed to keep in the background */
  background: url(assets/foto-130-3.jpg) center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero h2 {
  font-size: 7rem;
  text-align: center;
  margin: 0;
}

.hero h3 {
  font-size: 3rem;
  margin: 0;
  margin-top: 2rem;
}

.hero .logo {
  width: 10rem;
  height: 10rem;
  display: block;
  background: url(assets/LKLogo.png);
  background-size: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

nav {
  padding: 4rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.menuItem {
  margin: 0.5rem 2rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: 0.2s transform ease;
  padding: 0.4rem 1rem;
  cursor: pointer;
  border-radius: 0.5rem;
}
.menuItem:hover {
  transform: scale(1.05);
  background-color: #c5838c;
  color: #fff;
}

.menuItem:hover a {
  color: #fff;
}

.video {
  background-color: #d2c1ad;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
}

.mapDesc {
  padding: 5rem 10rem;
  background-color: #ffffff;
  color: #ccc;
  text-align: center;
  font-size: 2rem;
}

.mapDesc b {
  color: #c5838c;
  margin-left: 0.4rem;
}

.mapDesc .desc {
  font-size: 1.1rem;
  margin: 1rem auto 0;
  max-width: 50rem;
}

.mapDesc .desc.f {
  margin-top: 3rem;
}

/* .mapDesc .item {
  display: flex;
} */

#map {
  width: 100%;
  height: 40rem;
  background-color: #fff;
}

.timetable {
  padding: 5rem 2rem;
  background-color: #c5838c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.timetable h2 {
  color: #fff;
  font-size: 2rem;
}

.timetable .item {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #fff;
  width: 100%;
  max-width: 24rem;
  display: flex;
  /* text-align: center; */
}

.timetable b {
  margin-right: 1rem;
  color: #d8d8d8;
  font-size: 1.4rem;
}
.footer {
  height: 0rem;
}

.presents {
  padding: 5rem 2rem;
  background-color: #7887a1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.presents .text {
  max-width: 50rem;
}

.form {
  padding: 5rem 1rem;
  background-color: #c5838c;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form label {
  width: 10rem;
  display: inline-block;
  text-align: right;
  margin-right: 1rem;
}

.form .item {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 30rem;
}

.form input,
.form textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 0;
  font-size: 1.2rem;
  padding: 0.5rem 2rem 0.5rem 1rem;
  background: #d2c1ad;
}
.form textarea {
  height: 8rem;
}
.form .submitContainer {
  width: 100%;
  max-width: 23rem;
  /* margin-left: -3rem; */
  display: flex;
}
.form .submitContainer button {
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  background: #7887a1;
  color: #fff;
  cursor: pointer;
  border: 0;
}

.status {
  background: #53bf53;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-left: 1rem;
  position: relative;
  opacity: 0;
  transition: 0.5s all;
  font-size: 1rem;
  transform: scale(0.9) translateY(0) translateX(0%);
}

.status.shown {
  transform: scale(1) translateY(0) translateX(1%);
  opacity: 1;
}

.status:after {
  content: "";
  display: block;
  word-wrap: none;
  width: 0;
  height: 0;
  position: absolute;
  border-right: 0.5rem solid #53bf53;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  left: -0.4rem;
  transform: translateY(-50%);
  top: 50%;
}

@media only screen and (max-width: 812px) {
  body {
    font-size: 12px;
  }

  .hero:before {
    background-position: left -14rem top 0;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero h3 {
    font-size: 1.2rem;
    margin-top: 1rem;
  }

  .hero .logo {
    width: 5rem;
    height: 5rem;
    margin-bottom: 7.5rem;
  }

  nav {
    padding: 1rem 0;
  }
  .menuItem {
    margin: 0.5rem 0rem;
    font-size: 0.8rem;
  }

  .youtubevid {
    width: calc(100% - 2rem);
  }
  .mapDesc {
    padding: 2rem 1rem;
    font-size: 1.3rem;
  }
  .mapDesc b {
    display: block;
    margin-bottom: 1rem;
  }

  .textik {
    padding: 2rem 1rem;
  }
}
@supports (-webkit-overflow-scrolling: touch) {
  .p1,
  .p2,
  .p3 {
    background-attachment: scroll;
  }
}
