:root {
  --clr-primary: #2d828d;
  --clr-primary-light: #8ecfd84a;
  --clr-primary-dark: #2c6a73;
  --clr-secondary: #4338ca;
  --clr-secondary-light: #818cf8;
  --clr-secondary-dark: #1d325f;
  --clr-accent: #14b8a6;
  --clr-accent-dark: #0c9488;
  --clr-text-primary: #fff;
  --clr-text-secondary: #d1d5db;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.shell-header > *:not(.info-block) {
    font-family: 'aviano-sans', sans-serif;
}

.shell-header a,
.footer-link {
  text-decoration: none;
}

.info-block {
  font-family: 'orpheuspro', serif;
}

.shell-header {
  background-color: var(--clr-primary);
  color: var(--clr-text-primary);
  border-top: 6px solid #085984;
}

.shell-header a {
  color: var(--clr-text-primary);
}

.section-container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

/* 
===========================================
Shell Header 
===========================================
*/
/* Info Block */
.info-block {
  width: 100%;
  padding: 1rem;
  background-color: var(--clr-primary-dark);
  font-size: 15px;
}

.info-block .section-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

/* .info-block .section-container p:not(.toll-free) {
  font-weight: 500;
  letter-spacing: -1px;
} */

.address {
  font-style: italic;
}

.toll-free {
  margin-left: 1rem;
  font-weight: 700;
}

.toll-free a:last-child {
  margin-left: 0.5rem;
}

/* Special Offers */
.special-offers {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.special-offers-btn {
  display: inline-block;
  padding: 18px 24px;
  background-color: var(--clr-accent);
  color: var(--clr-text-primary);
  font-size: 30px;
  font-weight: 500;
  font-family: 'aviano-sans', sans-serif;;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: 406px;
  text-align: center;
}

.special-offers-btn:hover {
  background-color: var(--clr-accent-dark);
}

/* Header Main */
.header-main .section-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5rem;
  padding: 0.5rem 0 0 0;
}

.header-main-col-left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 4rem;
}

.logo-container {
  width: 325px;
}

.logo-container .logo {
  width: 100%;
  margin-bottom: 5px;
}

.reserve-btn {
  text-transform: uppercase;
  border: 2px solid #339fa7;
  border-radius: 0.375rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 4px 1rem;
  font-weight: 600;
  font-size: 12px;
  background-color: #2b6a73;
  margin-bottom: 7px;
}

.dropdown,
.sub-dropdown {
  display: none;
  position: absolute;
  background-color: #065985;
  width: 250px;
  z-index: 10004;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown.show,
.sub-dropdown.show {
  opacity: 1;
  transform: translateY(0);
}

.dropdown {
  top: 100%;
  left: 0;
}

.sub-dropdown {
  top: 0;
  left: 100%;
}

.dropdown-list,
.sub-dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-item,
.sub-dropdown-item {
  position: relative;
  cursor: pointer;
}

.dropdown-link,
.sub-dropdown-link {
  padding: 20px 10px;
}

.dropdown-link:hover,
.sub-dropdown-link:hover {
  background-color: var(--clr-secondary-dark);
}

.dropdown-link,
.sub-dropdown-link {
  display: block;
  color: var(--clr-text-primary);
  text-decoration: none;
  font-size: 11px;
  line-height: 1.5;
}

.dropdown-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-dropdown-toggle {
  cursor: pointer;
}

/* Position nav-item as relative for absolute dropdown positioning */
.navigation {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  flex-grow: 2;
  background-color: var(--clr-primary-light);
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: 40px;
  padding: 0 10px;
  letter-spacing: 0.25px;
  font-size: 11px;
  cursor: pointer;
  margin-bottom: 0;
}

.nav-link:hover {
  background-color: var(--clr-secondary-dark);
}

.dropdown-icon {
  display: inline;
  margin-left: 4px;
}

.dropdown-icon::before {
  content: " ▼";
  font-size: 6px;
}

/* Right-pointing arrow for sub-dropdown items */
.dropdown-item .dropdown-icon::before {
  content: " ▶";
  font-size: 6px;
}

.menu-btn-container {
  position: relative;
  display: none;
  width: 100%;
  height: 40px;
  /* background-color: var(--clr-primary) */
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  margin-inline: auto 0;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.menu-btn .bar {
  width: 100%;
  height: 3px;
  background-color: var(--clr-text-primary);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.menu-btn.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-btn.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.reserve-mobile {
  display: none;
}
/* 
===========================================
Shell Hero
===========================================
*/
.shell-hero {
  display: none;
  width: 100%;
  height: 700px;
  background-image: url("../../HotelFiles/1553/h-hero.jpg");
  background-size: cover;
  background-position: center;
  /* position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start; */
}

.shell-hero h2 {
  margin-top: 50px;
  padding: 1.5rem 3rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: 0.05em;
  color: #2a5760;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.15);
  border-radius: 0.75rem;
}

/* 
===========================================
BE Custom Styles
===========================================
*/
.shell-be {
  padding: 8rem 0;
  background-color: #f3f3f3;
}

/* Booking Engine custom styles */
#cancelReservation {
  font-size: 12px;
}

.summary .summaryHeader {
  font-size: 13px;
}

.roomName,
.ui-datepicker-header,
.summary .summaryHeader {
  background: #2d828d;
}

.on,
.roomName:hover,
.roomName:focus {
  background: #58adb7;
}

.reserveRoom {
  background: #085984;
}

.done .step-number,
.done .step-number:before {
  background: #0d81bf;
}

.reserveRoom:hover,
.reserveRoom:focus {
  background: #0169a1;
}

/* select room */
.roomName h4 {
  color: #fff;
}

/* 
===========================================
Shell Footer 
===========================================
*/
.shell-footer {
  background-color: var(--clr-secondary-dark);
  color: var(--clr-text-secondary);
  padding: 2rem 0;
}
.shell-footer > * {
  font-family: system-ui, sans-serif;
}

.shell-footer svg {
  width: 24px;
  height: 24px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
  padding: 8rem 2rem 2rem 2rem;
}

.footer-columns h3 {
  color: var(--clr-text-primary);
  font-weight: 500;
}

.footer-columns h3,
.footer-link,
.assistance-col p {
  font-size: 13px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.footer-link {
  color: var(--clr-text-secondary);
}

.footer-link:hover {
  color: var(--clr-text-primary);
  text-decoration: none !important;
}

.assistance-col {
  max-width: 400px;
  border-bottom: 1px solid #64748b;
}
.assistance-col p {
  margin-top: 1rem;
  line-height: 24px;
}

.contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-block: 0.75rem 1.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text-primary);
  border-radius: 0.375rem;
  text-align: center;
  background-color: var(--clr-secondary);
  text-decoration: none;
}

.contact-btn:hover {
  color: var(--clr-text-primary);
  text-decoration: none;
}

.contact-btn svg {
  width: 14px;
  height: 14px;
}

.contact-btn:hover {
  background-color: var(--clr-secondary-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.8;
  font-size: 11px;
}

.social-media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

.social-media-icon {
  color: var(--clr-text-primary);
}

@media screen and (max-width: 1278px) {
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 3rem 0 2rem 0;
  }

  .assistance-col {
    grid-column: span 4;
    max-width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .header-main .section-container,
  .footer-columns {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 1rem;
  }

  .social-media {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .header-main .section-container {
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .toll-free {
    margin-left: 0;
  }

  .reserve-btn,
  .address,
  .special-offers {
    display: none;
  }

  .navigation {
    width: 100%;
    min-height: 40px;
    position: relative;
  }

  .menu-btn {
    display: flex;
  }

  .header-main {
    padding-top: 2rem;
  }

  .reserve-mobile {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--clr-text-primary);
  }

  .reserve-mobile .reserve-btn {
    display: block;
    width: 150px;
    margin: 0 auto;
    text-align: center;
    border-radius: 2rem;
  }

  .logo-container {
    width: 300px;
  }

  .shell-hero {
    height: 300px;
  }

  .shell-hero h2 {
    width: 80%;
    margin: 50px auto;
    font-size: 14px;
    line-height: 26px;
    padding: 1.5rem;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .assistance-col {
    grid-column: span 2;
  }

  /* Mobile Navigation Styles */
  .menu-btn-container {
    display: block;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #085984;
    padding-inline: 0;
  }

  .nav-list.active {
    max-height: 2000px;
    overflow-y: auto;
  }

  .nav-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown,
  .sub-dropdown {
    display: block;
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    transition: max-height 0.3s ease;
    max-height: 0;
    overflow: hidden;
  }

  .dropdown.show,
  .sub-dropdown.show {
    max-height: 1000px;
  }

  .dropdown-item,
  .sub-dropdown-item {
    width: 100%;
  }

  .sub-dropdown-item {
    padding-left: 20px;
  }

  .dropdown-icon::before {
    content: " ▼";
    font-size: 6px;
  }

  .dropdown-item .dropdown-icon::before {
    content: " ▼";
    font-size: 6px;
  }

  .dropdown-item.active > .dropdown-link .dropdown-icon::before,
  .nav-item.active > .nav-link .dropdown-icon::before {
    transform: rotate(180deg);
    display: inline-block;
  }
  .menu-btn-hidden {
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 17px;
    cursor: pointer;
    opacity: 0.75;
  }

  .menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--clr-text-primary);
    border-radius: 2px;
  }

  /* BE */
  .shell-be {
    padding: 4rem 0;
  }
  .main-header {
    position: relative;
    box-shadow: none;
    margin: 0;
  }
  #mainStage {
    margin-top: 35px;
  }

  #guest-login {
    position: relative;
    width: 115px;
    margin-bottom: 20px;
  }
}
