@import url('https://fonts.googleapis.com/css2?family=Caudex:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

body {
  /*font-family: 'Lato', sans-serif;*/
  font-family: 'Caudex', serif;
  color: #0B3484;
}

#header {
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #FF6829;
  height: 4.5rem;
}

.navbar {
  text-transform: uppercase;
  font-weight: 700; /* bold */
  font-size: 1rem; /* 1rem = 16px */
  letter-spacing: .1rem;
  padding: 0;
}

.nav-colored {
  background-color: #FF6829;
}

.nav-transparent {
  background-color: transparent;
}

/*spacing for the navbar */
.offset::before {
  display: block;
  content: "";
  height: 2rem;
  z-index: -1;
}

.parallax {
  /* The image used */
  background-image: url("../img/breydelkar.webp");
  /* Create the parallax scrolling effect */
  background-attachment:fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  /* Set a specific height */
  min-height: 100vh;
  width: 100%;
  opacity: 0.4;
}

.heading {
  font-family: 'Caudex', serif;
  font-weight: 700;
  text-shadow: 1px 1px #000000;
  position: absolute;
  top: 50%;
  width: 100%;
  color: #0B3484;
  z-index: 1;
  height: auto;
  /*width:fit-content;*/
}

#pictures {
  background-color: #FF6829;
}

#snacks {
  background-image: url("../img/Black-Wood.webp") !important;
  /*background-color: #0B3484;*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  z-index: -1;
}

.hide {
  display: none;
}

.show {
  display: block !important;
  border-style: solid;
  border-color: green;
  border-width: 2px;
}

footer {
  font-family: 'Lato', sans-serif;
  padding: .5rem;
  background-color: #FF6829;
}

footer, a, a:hover {
  color: #000000;
}

/* Back to top button */
#backToTop {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 60px; /* Place the button at the bottom of the page */
  right: 20px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #0B3484;
  cursor: pointer; /* Add a mouse pointer on hover */
}