* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Helvetica, sans-serif;
  font-weight: lighter;
}

.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Shell Header */
.shell-header {
  background-color: #fff;
  padding: 20px;
  border-bottom: 4px solid #898989;
}

.shell-header .section-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
}

.header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.book-btn {
  display: none;
  background-color: #305285;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 10px 0;
  min-width: 140px;
  border-radius: 100px;
  transition: background-color 300ms ease;
  font-size: 20px;
}

.book-btn:hover {
  background-color: #ec4645;
  color: #fff;
  text-decoration: none;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 25px;
  height: 20px;
  z-index: 10007;
}

.bar {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #2e2e2e;
  transition: all 0.1s ease;
  left: 0;
  top: 0;
}

.bar:first-child {
  top: 0;
}

.bar:nth-child(2) {
  top: 50%;
}

.bar:last-child {
  top: 100% !important;
  bottom: 0 !important;
}

.menu-btn.active {
  margin-top: 1.5rem;
}

.menu-btn.active .bar:first-child {
  top: -19px;
  transform: translateY(19px) rotate(45deg);
}

.menu-btn.active .bar:nth-child(2) {
  display: none;
}

.menu-btn.active .bar:last-child {
  top: 19px;
  transform: translateY(-19px) rotate(-45deg);
}

.navigation {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.navigation a {
  text-decoration: none;
}

.nav-link,
.dropdown-item a {
  padding: 5px 15px;
  color: #5c5c5c;
  transition: background-color 300ms ease;
}

.nav-link:hover,
.dropdown-item a:hover {
  color: #5c5c5c;
  background-color: #ede9e199;
  cursor: pointer;
}

.dropdown {
  list-style: none;
  display: none;
  text-align: center;
}

.dropdown.active {
  display: block;
  position: absolute;
  background-color: #fff;
  margin-top: 10px;
  z-index: 10006;
}

.dropdown-toggle {
  display: none;
}

.dropdown-item a {
  display: inline-block;
  width: 100%;
}

/* Shell BE */
.shell-be {
  padding: 8rem 0;
  background-color: #f5f5f5;
}

/* Booking Engine custom styles */
#cancelReservation {
  font-size: 12px;
}

.done .step-number,
.done .step-number:before {
  background: #C68131;
  color: #fff;
}

.reserveRoom {
  background: #305285;
  color: #fff;
}

.reserveRoom:hover {
  background: #ec4645;
}

/* Shell Footer */
.shell-footer {
  padding: 31px 0;
  border-top: 4px solid #fafafa;
  color: #5c5c5c;
  background: #fff;
}

.shell-footer .section-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 900px;
  flex-wrap: wrap-reverse;
}

.shell-footer a {
  text-decoration: none;
  color: #5c5c5c;
}

.shell-footer .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}

.shell-footer .footer-row:first-child {
  padding: 0 40px;
}

.shell-footer .footer-row:last-child {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 15px;
}

.shell-footer .footer-row:last-child,
p:nth-child(1) {
  line-height: 25px;
}

.footer-nav {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
}

.footer-nav .footer-nav-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-nav:not(.policies) .footer-link:nth-child(1),
.footer-link:nth-child(3),
.footer-link:nth-child(7) {
  text-decoration: underline;
}

.policies {
  margin-top: 3rem;
  font-weight: bold;
  text-decoration: underline;
}

.footer-row:nth-child(2) {
  margin-top: 4rem;
}

.contact-col {
  text-align: end;
}

.contact-col p {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 870px) {
  .shell-footer .section-container,
  .shell-footer .footer-row {
    flex-direction: column-reverse;
  }

  .shell-footer .footer-nav {
    flex-direction: column;
    gap: 0;
  }

  .header-content {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .logo a {
    display: inline-block;
  }

  .logo {
    margin-top: 0.5rem;
  }

  .footer-row:nth-child(2) {
    margin-top: 0;
  }

  .shell-footer .section-container {
    gap: 2rem;
  }

  .shell-footer .footer-row:first-child {
    padding: 0;
  }

  .contact-col {
    width: 100%;
  }

  .policies {
    margin-top: 1rem;
  }

  .menu-btn {
    display: block;
  }

  .navigation {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 65%;
    background-color: #2e2e2e;
    padding: 80px 20px 0 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10005;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 400ms ease;
  }

  .navigation.active {
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
    padding: 20px 0;
  }

  .nav-item:not(:last-child) {
    border-bottom: 2px solid #555;
  }

  .navigation a {
    color: #fff;
    width: 100%;
    padding: 0;
    letter-spacing: 2px;
    font-size: 18px;
  }

  .dropdown {
    text-align: left;
    margin-top: 4rem;
    padding-inline-start: 0 !important;
  }

  .dropdown-toggle {
    display: inline-block;
    width: 20px;
    text-align: center;
    margin-right: 10px;
    font-size: 20px;
  }

  .dropdown.active {
    position: static;
    display: block;
    background-color: transparent;
    padding-left: 20px;
  }

  .dropdown-item {
    padding: 10px 0;
  }

  .nav-link,
  .dropdown-item a {
    font-weight: light;
    opacity: 0.8;
  }

  .nav-link:hover,
  .dropdown-item a:hover {
  color: #fff;
    background-color: #ffff0000;
    opacity: 1;
  }
}

@media screen and (max-width: 800px) {
  .main-header {
    position: relative;
    box-shadow: none;
    margin: 0;
  }

  #mainStage {
    margin-top: 35px;
  }

  #guest-login {
    position: relative;
    width: 100px;
    margin-bottom: 20px;
  }

  .shell-header .section-container {
    flex-direction: column-reverse;
    gap: 1rem;
  }

  .book-btn {
    padding: 15px 0;
  }

  .logo img {
    max-width: 260px;
  }

  .shell-footer .footer-row:last-child {
    font-size: 18px;
    align-items: flex-start;
  }

  .footer-nav {
    font-size: 20px;
  }

  .contact-col {
    font-size: 18px;
  }

  .copyright {
    width: 100%;
    text-align: center;
    font-size: 17px;
  }
}
