:root {
  --sans: "gravesend-sans", sans-serif;
  --serif: "the-seasons", sans-serif;

  --dark: #213638;
  --columbia: #cfe7e5;
  --yellow: #e5a13e;

  --bg: black;
}

body {
  overflow-x: hidden;
}

a {
  color: black;
  text-decoration: none;
}

nav {
  background-color: var(--bg);
  position: fixed;
  left: 0px;
  top: 0px;
  width: calc(100vw - 20%);
  padding: 1.5rem;
  padding-left: 10%;
  padding-right: 10%;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s;
}

nav.show {
  opacity: 1;
}

nav img {
  height: 3rem;
}

.banner {
  background-position: center center;
  background-size: cover;
  height: 100vh;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100vw;
}

.banner-above {
  margin-bottom: calc(100vh + 3rem);
}

.banner .dark {
  background-color: black;
  opacity: 0.7;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.banner .inner {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80%;
  color: white;
  padding: 10vw;
  height: 80%;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.banner .inner img {
  height: 6rem;
}

h1.serif {
  font-family: var(--serif);
  font-weight: lighter;
  font-size: 3.5rem;
  line-height: 3.5rem;
}

h1.serif.big {
  font-size: 4.5rem;
  line-height: 4.5rem;
}

.inner h1 {
  margin-top: 1.5rem;
  width: 45rem;
  max-width: 100%;
}

h1,
p {
  text-transform: uppercase;
}

input {
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(3, 3, 3, 0.4);
  backdrop-filter: blur(7.5px);
  outline: none;
  color: white;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 2.5rem;
  padding: 0 30px 0 15px;
  border-radius: 0px;
  text-transform: none;
  font-style: italic;
}

button {
  outline: none;
  color: black;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 700;
  border-radius: 0px;
  text-transform: none;
  text-align: center;
  letter-spacing: 0.3em;
  line-height: 1.3em;
  min-width: 130px;
  padding: 1rem;
  cursor: pointer;
  border: 1px solid #000;
  display: block;
  background-color:white;
  transition: background-color .3s, color .3s;
}

button:hover:not(.disabled) {
    color: white;
    background-color: var(--bg);
}

.book button, form button {
  transition: all 0.8s;
  width: 100%;
}

button.disabled {
  cursor: default;
  background-color: #646464;
  border-color: #646464;
}

.book input, form input {
  width: 100%;
}

.book, form {
  flex-direction: row !important;
  gap: 1rem !important;
  width: 100% !important;
  display: flex !important;
  padding: 0px;
}

.section {
  padding-left: 10%;
  padding-right: 10%;
  width: calc(100vw - 20%);
  position: relative;
  left: -.5rem;
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.section h1 {
  font-family: var(--serif);
  font-weight: normal;
  font-size: 3rem;
  margin: 0px;
}

.section p {
  font-family: var(--serif);
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  text-transform: none;
  margin: 0px;
}

.split {
  display: flex;
  gap: 1rem;
}

.split div {
  width: 100%;
}

.accomodation img {
  width: calc(100% + 3rem);
  position: relative;
  left: -1.5rem;
  top: -1.5rem;
  height: 15rem;
  object-fit: cover;
}

.accomodation {
  padding: 1.5rem;
  box-shadow: 0px 0px 0.85rem rgba(0, 0, 0, 0.215);
  min-width: 20rem;
}

.accomodations {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  width: 100%;
  padding-left: 10vw;
  position: relative;
  left: -10vw;
  padding-right: 10vw;
  overflow-x: auto;
  padding-bottom: 2rem;
  scroll-behavior: smooth;
}

.accomodation h3 {
  width: 100%;
  text-align: center;
  font-family: var(--sans);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  border-radius: 0px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.accomodation p {
  margin-bottom: 2rem;
  text-align: center;
}

.barrier {
  text-align: center;
  margin-bottom: 1.5rem;
}

.barrier span {
  width: 3rem;
  border-bottom: 2px solid black;
  display: inline-block;
}

.accomodations::-webkit-scrollbar {
  display: none;
}

.accomodations {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews {
    display: block;
  column-count: 2;
  column-gap: 3rem;
  width: 100%;
  text-align: center;
  margin-top: 3rem;
}

.review {
    padding: 2rem;
    background-color: white;
    width: calc(calc(100% - 4rem) - 0px);
    display: block;
    margin-bottom: 3rem;
    break-inside: avoid;
}

.review span {
    font-family: var(--sans);
    margin-top: 1rem;
    display: block;
    opacity: .7;
    letter-spacing: 0.15em;
}

footer {
    background-color: var(--bg);
    padding: 12rem;
    text-align: center;
    width: calc(100vw - 24rem);
    position: relative;
    left: -.5rem;
    bottom: -.5rem;
}

footer img {
    width: 14rem;
}

.footer-items {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
}

.footer-section {
    color: white;
    text-align: left;
}

.footer-section span {
    font-family: var(--serif);
    font-weight: normal;
    display: block;
}

.footer-section a {
    font-family: var(--sans);
    letter-spacing: 0.15em;
    display: block;
    margin-top: 1rem;
    color: white;
    text-decoration: none;
    font-size: .9rem;
    transition: opacity .3s;
}

.footer-outer {
    display: inline-block;
}

.right {
    text-align: right;
    display: inline-block;
    float: right;
    position: relative;
    top: 1rem;
    font-family: var(--sans);
    letter-spacing: .1rem;
}

.right a {
    margin-left: 1rem;
    color: white;
    text-decoration: none;
}

nav a {
  transition: opacity .3s;
}

footer a:hover, nav a:hover {
    opacity: .5;
}

.inner-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%)
}

.inner-inner.wide {
  width: 80%;
}

form input {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
}

form input::placeholder {
  font-family: var(--serif);
  font-style: italic;
}

.inner-inner img {
  margin-top: 0px;
}

.banner .scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.banner .scroll img {
  height: 1.2rem;
  cursor: pointer;
  transition: opacity .3s;
}

.banner .scroll img:hover {
  opacity: .5;
}

.section button {
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.amenities h1 {
  font-family: var(--sans);
  font-size: 2rem;
  letter-spacing: .3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.amenities table b {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: .1rem;
  text-align: center;
  margin-bottom: .5rem;
  display: inline-block;
}

.amenities table span {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--serif);
  font-size: .9rem;
  opacity: .7;
}

.amenities table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}

.amenities table td {
  text-align: center;
  padding: 1rem;
  vertical-align: top;
}

p.centered {
  padding-left: 10%;
    padding-right: 10%;
    text-align: center;
}

.accomodation span:not(.barrier span) {
  font-family: var(--serif);
  font-style: italic;
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: -.8rem;
    font-weight: lighter;
    opacity: .8;
}

.details label {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1rem;
  display: block;
}

.details b {
  font-size: 1.4rem;
  font-family: var(--serif);
  display: block;
  margin-top: .4rem;
  margin-bottom: 1rem;
}

.details .together {
  display: flex;
  width: 100%;
}

.details .together p {
  width: 100%;
}

.buttons {
  display: flex;
  width: 100%;
  gap: 1rem;
}

.buttons a {
  width: 100%;
}