:root {
  --clr-primary: #294c68;
  --clr-primary-hover: #41749d;
  --clr-secondary: #001c38;
}

* {
  font-family: sans-serif;
}

.shell-header *,
.shell-hero *,
.shell-subheader *,
.shell-footer * {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

/* Fixes big gap between list items in the room description caused by the <br> tag that is automatically added by the PMS */
.roomdescBody ul br {
  display: none;
}

/* Shell styles */
.shell-header {
  padding: 1.5em 0;
  text-align: center;
  background: #fff;
}

.h-logo {
  width: 200px;
}

.shell-subheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #3c5c76;
  padding: 0px 25px 0px 9px;
  box-shadow: 0px 0px 1px 1px rgba(1.9999999999999567, 0.9999999999999784, 0.9999999999999784, 0.8);
}

.hotel-name {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  padding: 10px;
  letter-spacing: -0.0415625em;
}
.hotel-name a {
  color: #fff;
  text-decoration: none;
}
.shell-nav {
  width: 51.197%;
}
.shell-nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.shell-nav ul li {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shell-nav ul li a {
  flex-grow: 1;
  text-decoration: none;
  color: #fff;
  padding: 15px 0;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  transition: background-color 0.3s ease;
}

.menu-btn {
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  background: none;
  outline: none;
  cursor: pointer;
  padding: 5px;
  margin: 0 auto 10px auto;
  position: relative;
  display: none;
}

.menu-icon-bar {
  display: block;
  width: 15px;
  height: 2px;
  background-color: #fff;
  margin: 2px auto;
  transform-origin: center;
}

/* ACTIVE STATE */
.menu-btn.active .menu-icon-bar:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.menu-btn.active .menu-icon-bar:nth-child(2) {
  opacity: 0;
}

.menu-btn.active .menu-icon-bar:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}
.shell-nav ul li a:hover {
  background-color: var(--clr-primary);
}

.contact {
  position: relative;
}

.contact a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  padding: 10px 0;
}

.contact p a::after {
  content: "⏷";
  padding: 0 7px;
  font-size: 14px;
}

.contact-dropdown {
  list-style: none;
  display: none;
  position: absolute;
  top: 30px;
  left: -18px;
  padding: 15px 18px;
  background-color: rgba(41, 76, 104, 0.79);
  transition: background-color 0.3s ease;
}

.contact-dropdown:hover {
  background-color: #3f444b;
}

.shell-hero {
  width: 100%;
  height: 45vh;
}

.shell-footer {
  padding: 70px 0;
  background-color: var(--clr-secondary);
}

.shell-footer h3 {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

.shell-footer .inner-container {
  max-width: 1140px;
  display: flex;
  margin: 0 auto;
  position: relative;
}

.footer-col {
  width: 33.333%;
}

.footer-col-inner p strong {
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col:nth-child(1) {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.footer-col:nth-child(1) .footer-col-inner,
.footer-col:nth-child(2) {
  padding: 10px;
}

.footer-col:nth-child(3) {
  padding-left: 18px;
}

.footer-col:nth-child(2) p {
  color: #7a7a7a;
  font-size: 18px;
  margin-top: 20px;
}

.footer-col-inner {
  margin-right: 80px;
}

.location-links {
  list-style: none;
  margin-top: 20px;
  margin-left: 0;
  padding-left: 0;
}

.footer-link-item {
  padding-bottom: calc(5px / 2);
}

.footer-link-item a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  font-size: 14px;
}

/* Shell BE */
.shell-be {
  padding: 8rem 0;
  background-color: #f3f3f3;
}

/* Booking Engine custom styles */
#cancelReservation {
  font-size: 12px;
}

.summary .summaryHeader {
  font-size: 13px;
}

.ui-datepicker-header,
.summary .summaryHeader {
  background: var(--clr-secondary);
}

.reserveRoom,
.roomName {
  background: var(--clr-primary);
}

.reserveRoom:hover,
.reserveRoom:focus,
.roomName:hover,
.roomName:focus {
  background: var(--clr-primary-hover);
}

/* select room */
.roomName h4 {
  color: #fff;
}

/* Responsive Styles */
@media only screen and (max-width: 1100px) {
  .shell-subheader {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 20px 0px;
    gap: 10px;
  }

  .shell-nav {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .main-header {
    position: relative;
    box-shadow: none;
    margin: 0;
  }
  .h-logo {
    width: 150px;
  }

  .shell-nav ul {
    display: none;
    background-color: #4c7493cc;
  }

  .shell-nav ul.active {
    display: block;
  }
  .shell-nav ul li a {
    text-align: left;
    font-size: 16px;
    padding: 10px 15px;
  }
  .contact-dropdown {
    top: 35px
  }
  .menu-btn {
    display: block;
  }
  .shell-hero {
    height: 25vh;
  }
  .shell-be {
    padding: 4rem 0;
  }

  .shell-footer {
    padding: 35px 20px 35px 20px;
  }

  .shell-footer .inner-container {
    display: flex;
    flex-direction: column;
  }
  .footer-col {
    width: 100%;
    margin-bottom: 40px;
  }

  .footer-col-inner {
    margin-right: 0px;
  }

  .footer-col:nth-child(3) {
    padding-left: 0px;
  }

  .footer-col:nth-child(1) .footer-col-inner,
  .footer-col:nth-child(2) {
    padding: 0px;
  }

  #mainStage {
    margin-top: 35px;
  }

  #guest-login {
    position: relative;
    width: 100px;
    margin-bottom: 20px;
  }
}
