* {
  margin: 0px;
  padding: 0px;
}
html,
body {
  position: relative;
}

body {
  overflow-y: auto;
  min-height: 100vh;
}
textarea:focus,
input:focus {
  outline: none;
}
a {
  color: inherit !important;
  text-decoration: none !important;
}
footer {
  background: #f1f1f1;
  width: 100%;
  padding: 16px 0px;
  color: #999;
  vertical-align: bottom;
  margin-top: 40px;
  text-align: center;
}

.banner {
  height: 500px;
  width: 100%;
  background: #999;
  margin: 20px 0px;
}

.content {
  padding: 20px 6.25rem;
}

/* ================================== */
/* Layout page CSS */
/* ================================== */

.tile {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  border-radius: 8px;
  overflow: hidden;
}
.tile img {
  width: 100%;
  height: 100%;
  transition: all 0.2s;
}
.tile img:hover {
  filter: brightness(50%);
  transform: scale(1.1);
}

/* .tile2 {
  transition: all 0.2s;
}
.tile2:hover {
  filter: brightness(50%);
  transform: scale(1.1);
} */

.tile-text {
  position: absolute;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  pointer-events: none;
}

.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/hero.jpg");
  height: 33.125rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#hero-content {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 100%;
}

.hero-subheading {
  font-size: 24px;
  font-weight: 100;
}
.hero-input {
  width: 80%;
  height: 50px;
  padding: 16px;
  border-radius: 8px;
  border: none;
}

.nav-link {
  margin-right: 36px;
}

/* ================================== */
/* Adventures grid page CSS */
/* ================================== */

.adventure-card {
  height: auto;
  border-radius: 8px;
}

.adventure-card img {
  width: 100%;
  height: 18.75rem;
  object-fit: cover;
  transition: 0.2s all;
}
.adventure-card img:hover {
  filter: brightness(50%);
}
img {
  vertical-align: middle;
  border-style: none;
  overflow: hidden;
}

/* ================================== */
/* Adventure details page CSS */
/* ================================== */

.transition-effect {
  transition: all 0.2s;
  border-radius: 8px;
}

.transition-effect:hover {
  filter: brightness(50%);
}

.explore {
  color: orange;
  text-decoration: none;
}

.sold-out-card {
  border: 1px solid #eee;
  height: fit-content;
  width: 400px !important;
  left: 70%;
  border-radius: 8px;
}


.experience-content ul li {
  margin-left: 16px;
  padding: 0;
}

@media only screen and (min-width: 768px) {
  /* For desktops phones: */
  #reservation {
    width: 400px;
    position: fixed;
  }
}
