@font-face {
  font-family: 'ot_negligel';
  src: url('../fonts/otneglige-l-webfont.woff2') format('woff2'),
    url('../fonts/otneglige-l-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'pangramsans_slimbold';
  src: url('../fonts/pppangramsans-slimbold.woff2') format('woff2'),
    url('../fonts/pppangramsans-slimbold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'pangramsans_slimregular';
  src: url('../fonts/pppangramsans-slimregular.woff2') format('woff2'),
    url('../fonts/pppangramsans-slimregular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

:root {
  --red: #DA4A00;
  --sub: #EFDC6C;
  --yellow: #EFDC6C;
  --orange: #F79553;
  --white: #EFEEE6;
}

body {
  background-color: var(--red);
}

* {
  margin: 0px;
  padding: 0px;
  border: 0px;
}

.noiseOverlay {
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  mix-blend-mode: overlay;
  object-fit: cover;
  z-index: 2000;
}

.underconstruction {
  width: 100%;
  height: 100vh;
  display: flex;
  background-color: var(--yellow);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.underconstruction h1 {
  font-family: 'ot_negligel';
  color: var(--red);
  font-size: 6em;
  font-weight: 100;
  margin-top: 50px;
}

nav {
  min-height: 60px;
  height: 60px;
  position: fixed;
  background-color: var(--red);
  display: flex;
  width: 100%;
  padding: 10px 40px 10px 40px;
  align-items: top;
  justify-content: space-between;
  box-sizing: border-box;
  z-index: 999;
  transition: height 0.3s ease;

  flex-wrap: wrap;
}

nav.expanded {
  height: 100vh;
  /* Expand to full viewport height */
  transition-delay: 0.1s;
}

.navBar {
  display: flex;
  height: 40px;
  width: 100%;
  justify-content: space-between;
  flex-basis: 100%;
}

.navIcon,
.navLogo {
  height: 40px;
}

.navIcon,
.navMenu {
  width: 200px;
}

nav svg {
  height: 100%;
  width: auto;
  fill: var(--sub);
  transition: fill 0.3s ease;
}

.navMenu {
  display: flex;
  justify-content: flex-end;
}

.socialIcons {
  display: flex;
  gap: 10px;
  flex-direction: row;
  height: 40px;
  align-items: center;
  margin-right: 20px;
}

#navMenuItems .socialIcons {
  display: none;
}

.socialIcons a {
  line-height: 0em;
}

.socialIcons svg {
  width: auto;
  height: 30px !important;
  opacity: 1;
  transition: opacity 0.3s ease, fill 0.3s ease;
}

.socialIcons svg:hover {
  opacity: 0.7;
}

.navLangSel {
  font-family: 'ot_negligel';
  display: flex;
  flex-direction: row;
  font-size: 1.5em;
  text-transform: uppercase;

}

#navMenuItems .navLangSel {
  display: none;
}

.navLangSel a {
  text-decoration: none;
}

.langSelected {
  color: var(--red) !important;
  background-color: var(--sub);
}

.navLangSel div {
  /*border: 1px solid var(--sub);*/
  box-sizing: border-box;
  color: var(--sub);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid var(--sub);
  outline-offset: -0.5px;
  transition: outline 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.navLangSel div:hover {
  color: var(--red);
  background-color: var(--sub);
}

.navBurger {
  height: 40px;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.navBurger svg {
  height: 20px;
  display: flex;
  align-items: center;
}

#navMenuItems {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  align-items: center;
  color: var(--sub);
  font-family: 'ot_negligel';
  font-size: 3em;
  text-transform: uppercase;
  /*gap: 10px;*/
  display: flex;
  opacity: 0;
  transition: opacity 0.3s ease;
  /*
  transition-delay: 2s;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
    transition-duration: 1s;
    */
  pointer-events: none;


}

#navMenuItems.menuShow {
  opacity: 1;
  display: flex;
  pointer-events: initial;
}

#navMenuItems a {
  color: var(--sub);
  text-decoration: none;
}






#main {
  /*overflow-y: scroll;
  scroll-snap-type: y mandatory;
  width: 100%;
  max-height: 100vh;
  height: calc(100vh - 60px);
  */
  position: relative;
  top: 60px;
  color: var(--red);
}

#main a {
  color: var(--red);
  text-decoration: none;
}

.child {
  scroll-snap-align: start;
  width: 100%;
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;

  flex-direction: column;
}

.sectContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 800px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.sectLanding {
  background-color: var(--yellow);
  background-size: cover;
  justify-content: center;
}

.landingLogo {
  width: auto;
  height: calc(100vh / 2);
}

.bgimage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.reserveButton {
  font-family: 'ot_negligel';
  font-size: 2em;
  text-decoration: none;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid var(--red);
  background-color: var(--yellow);
  padding: 10px 20px 10px 20px;
  margin-top: 40px;
  box-shadow: 0px 5px 0px var(--red);
  margin-bottom: 5px;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.reserveButton:hover {
  margin-top: 45px;
  margin-bottom: 0px;
  box-shadow: 0px 0px 0px var(--red);
}

section h1 {
  font-family: 'ot_negligel';
  font-size: 5em;
  font-weight: normal;
  margin-top: 0px;
  text-transform: uppercase;
}

section hr {
  border: 0.5px solid var(--red);
  width: 100%;
  margin-bottom: 20px;
}

.sectMap {
  background-color: var(--orange);
}

.mapContainer {
  width: 100%;
}

.sectMap iframe {
  width: 100% !important;
  height: calc(100vh - 400px) !important;
  border-radius: 4px;
  border: 1px solid var(--red) !important;
  margin-bottom: 20px;
}

.sectMap a {
  text-decoration: none;
}

h2 {
  font-family: 'ot_negligel';
  font-size: 3em;
  text-decoration: none !important;
  font-weight: normal;
}

h3 {
  font-family: 'pangramsans_slimregular';
  font-size: 1.5em;
  text-decoration: none !important;
  font-weight: normal;
}

.sectMenu {
  background-color: var(--white);
}

.menuItemCont {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}

.menuItemCont h2 {
  text-transform: uppercase;
}

.menuItemCont p {
  font-family: 'pangramsans_slimregular';
  font-size: 1.2em;
}

.menuSection {
  text-transform: uppercase;
  margin-top: 40px;
}

.sectPictures {
  background-color: var(--yellow);
}

.pictureGallery {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  /*repeat(3, 30% [col-start]);*/

}

.pictureGallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: all 0.3s ease;
}

.pictureGallery a {
  line-height: 0em;
}

.pictureGallery img:hover {
  opacity: 0.7;
}

.pictureFollow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.sectContact p {
  width: 100%;
  font-family: 'pangramsans_slimregular';
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 40px;
}

.contactItem {
  font-family: 'pangramsans_slimregular';
  font-size: 2em;
  margin-bottom: 20px;
}

.endBird {
  margin-top: 80px;
  width: 200px;
  height: auto;
}


@media only screen and (max-width: 840px) {
  .sectContent {
    width: 100%;
    padding: 0px 20px 0px 20px;
    box-sizing: border-box;
  }

  .navMenu .socialIcons {
    display: none;
  }

  #navMenuItems .socialIcons {
    display: flex;
    margin-right: 0px;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .navMenu .navLangSel {
    display: none;
    font-size: 1em;
  }

  #navMenuItems .navLangSel {
    margin-top: 20px;
    font-size: 0.5em;
    display: flex;
  }


  nav {
    height: 50px;
    min-height: 50px;
    padding: 10px 10px 10px 10px;
  }

  .navBar {
    display: flex;
    height: 30px;
  }

  .navIcon,
  .navLogo,
  .navBurger {
    height: 30px;
  }

  #main {
    top: 50px;
  }

  #main a {
    color: var(--red);
    text-decoration: none;
  }

  .child {
    min-height: calc(100vh - 50px);
  }

  .sectContent {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .sectContact p {
    font-size: 1em;
  }

  section h1 {
    font-size: 3em;
  }

  .sectMap iframe {
    height: calc(100vh - 290px) !important;
  }

  .pictureGallery {
    grid-template-columns: 1fr 1fr 1fr;
  }

  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.2em;
  }

  .contactItem {
    font-size: 1.2em;
    font-family: 'pangramsans_slimbold';
  }

  .endBird {
    margin-top: 20px;
    width: 100px;
  }
}
