@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100vh;
}
body {
  font: 100%/1.5 "Droid Sans", "Calibri", "Lucida Grande", "Trebuchet MS", "Helvetica Neue", "Arial", sans-serif;
  background: rgb(247, 242, 234);
  overflow-x: hidden;
}

a {
  color: #444;
}
a:hover {
  color: hsl(189 100% 43%);
}

h1,
h2,
h3,
h4,
h5 {
  letter-spacing: -1px;
}

.resize-animation-stopper * {
  animation: none !important;
  transition: none !important;
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.flex {
  display: flex;
  gap: var(--gap, 2rem);
}

.hp {
  display: none;
}

.page-wrap {
  position: relative;
  min-height: 100svh;
}

.page-glow {
  position: fixed;
  overflow: hidden;
  top: -120px;
  left: -68vw;
  width: 190vw;
  height: 260px;
  rotate: -2.5deg;
  background: radial-gradient(hsl(189, 41%, 70%) 0%, hsl(0 0% 0% / 0) 70%);
  z-index: 1;
}

.page-head {
  position: sticky;
  top: 0;
  width: 100vw;
  background-color: hsl(0 0% 100% / 0.6);
  transition: 250ms linear;
  z-index: 1000;
}

.scrolledHead {
  background-color: hsl(0 0% 100% / 1);
  box-shadow: 0px 0px 4px 0px hsl(0 0% 0% / 0.45);
}

.head-wrap {
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}

.head-logo {
  position: relative;
  margin: 0.7rem 1rem;
  width: 67px;
  height: 36px;
}

.site-nav-toggle {
  display: none;
}

@media (max-width: 37em) {
  /* logo scale */
  .head-logo {
    scale: 0.8;
    transform-origin: left;
  }
}

.site-nav {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 9000;
}

.site-nav a {
  font-size: 1.1rem;
  font-weight: 200;
  color: hsl(0 0% 15%);
  text-decoration: none;
  transition: 250ms linear;
  border-bottom: solid 3px hsl(189 100% 43% / 0);
}

.site-nav a:hover {
  border-bottom: solid 3px hsl(189 100% 43%);
}

@media (max-width: 55em) {
  .site-nav {
    --gap: 2em;
    position: fixed;
    z-index: 9000;
    inset: 0 0 0 30%;
    flex-direction: column;
    padding: 5rem 2.4rem;
    background-color: hsl(0 0% 0% / 0.75);
    backdrop-filter: blur(0.8rem);
    transform: translateX(100%);
    transition: transform 150ms ease-out;
  }

  .site-nav[data-visible="true"] {
    transform: translateX(0%);
  }

  .site-nav a {
    font-size: 1.2rem;
    color: hsl(0 0% 100%);
  }

  .site-nav a:hover {
    border-bottom: solid 3px hsl(0 0% 100%);
  }

  .site-nav-toggle {
    display: block;
    position: absolute;
    z-index: 9999;
    background-color: transparent;
    background-image: url("../img/menuOpen.svg");
    background-repeat: no-repeat;
    background-size: cover;
    border: 0;
    cursor: pointer;
    width: 1.8rem;
    aspect-ratio: 1;
    top: 0.9rem;
    right: 1rem;
  }

  .site-nav-toggle[aria-expanded="true"] {
    background-image: url("../img/menuClose.svg");
  }
}

@media (min-width: 55em) {
  .site-nav {
    --gap: 2.5rem;
    padding-block: 1rem;
    padding-inline: 2rem;
  }
}

main {
  position: relative;
  width: 100%;
  padding-bottom: 375px; /* Footer Height */
  z-index: 2;
}

.main-wrap {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

.title-wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.4rem;
  color: hsl(0 0% 25%);
}

.title-text {
  display: flex;
  flex-direction: column;
  flex: 2;
}

.page-title {
  position: relative;
  margin-left: -2px;
  font-size: 3rem;
  font-weight: normal;
  line-height: 1;
  width: mim-content;
}
.page-subtitle {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.3;
  width: 100%;
}
.page-description {
  margin-top: 0rem;
  font-size: 1.1rem;
  line-height: 1.2;
}

@media (max-width: 37em) {
  .title-wrap {
    gap: 1rem;
  }
  .page-title {
    font-size: 2.5rem;
  }
  .page-subtitle {
    font-size: 1.2rem;
  }
  .page-description {
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.1;
  }
}

@media (max-width: 30em) {
  .main-wrap {
    padding: 0.5rem;
  }
  .title-wrap {
    gap: 1rem;
  }
  .title-text {
    flex: 1 0 100%;
  }
  .page-title {
    font-size: 2rem;
  }
  .page-subtitle {
    font-size: 1rem;
  }
  .page-description {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 0.9rem;
  }
}

.check-wrap {
  position: relative;
  background-color: hsl(0 0% 0% / 0.15);
  backdrop-filter: blur(0.3rem);
  padding: 0.3rem;
  color: hsl(0 0% 100%);
  z-index: 888;
}

.check-wrap form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 5px;
  width: 100%;
}

.check-wrap label {
  position: relative;
  top: -0.1rem;
  flex: 1;
  color: #222;
  font-size: 0.8rem;
}

#ca1,
#ca2 {
  flex: 1.6;
}
#ca3,
#ca4,
#ca5 {
  flex: 1;
}
#ca5 {
  color: #999;
}

.check-wrap input,
.check-wrap select {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1;
  width: 100%;
  height: 36px;
  background-color: hsl(0 0% 100%);
  border: solid 1px hsl(0 0% 100%);
  /*outline: none;*/
}

.check-wrap input {
  padding: 0.4rem 0.4rem;
}

.check-wrap select {
  padding: 0.35rem 0.4rem;
}
.check-wrap input[type="submit"] {
  width: 19.6%;
  height: 36px;
  margin-top: 1rem;
  padding-top: 0.3rem;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(0 0% 100%);
  background-color: #60b6c7;
  border: none;
  transition: 350ms linear;
  cursor: pointer;
}

.check-wrap input:hover[type="submit"] {
  background-color: #348697;
}

.req {
  box-shadow: 0 0 5px 2px #ff661f;
}

@media (max-width: 55em) {
  #ca1,
  #ca2,
  #ca3,
  #ca4,
  #ca5 {
    margin-bottom: 5px;
  }
  #ca1,
  #ca2 {
    flex: 1.6;
  }
  #ca3,
  #ca4,
  #ca5 {
    flex: 1;
  }

  .check-wrap input[type="submit"] {
    margin-top: 0;
    width: 100%;
  }
}

@media (max-width: 37em) {
  #ca1,
  #ca2,
  #ca3,
  #ca4,
  #ca5 {
    margin-bottom: 5px;
  }
  #ca1 {
    flex: 1 0 48%;
  }
  #ca2 {
    flex: 1 0 48%;
  }
  #ca3,
  #ca4,
  #ca5 {
    flex: 1 0;
  }

  .check-wrap input[type="submit"] {
    margin-top: 0;
    width: 100%;
  }
}

@media (max-width: 25em) {
  #ca1 {
    flex: 1 0 100%;
  }
  #ca2 {
    flex: 1 0 100%;
  }
  #ca3,
  #ca4,
  #ca5 .check-wrap input[type="submit"] {
    width: 100%;
  }
}

.form-input {
  position: relative;
  display: flex;
  overflow: hidden;
}

.form-input input::placeholder {
  color: #ccc;
}

.form-input input,
.form-input textarea,
.form-input select {
  color: hsl(0 0% 0% / 1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  width: 100%;
  padding: 0.5rem;
  background: hsl(0 0% 100%);
  border: solid 2px hsl(0 0% 100%);
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  outline: none;
}

.form-input select {
  padding: 0.45rem 0.3rem;
}

.form-input textarea {
  line-height: 1.3rem;
  resize: none;
}

.form-input input:focus,
.form-input textarea:focus,
.form-input select:focus {
  border: solid 2px hsl(0 0% 68% / 1);
}

.form-input label {
  flex: 0 0 7.5rem;
  padding: 0.5rem;
  text-align: right;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: hsl(0 0% 100% / 0.9);
  background-color: hsl(0 0% 68% / 1);
}

@media (max-width: 40em) {
  .form-input label {
    flex: 0 0 6rem;
    font-size: 1rem;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 350px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 750ms opacity ease-in-out;
  transition-delay: 750ms;
  z-index: 7;
}
.slide[data-active] {
  opacity: 1;
  transition-delay: 0ms;
  z-index: 8;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guest-quotes {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 0;
  width: 100%;
  height: 20%;
  color: hsl(0 0% 0% / 0);
  background-color: hsl(0 0% 0% / 0.5);
  z-index: 9;
}
.guest-quotes p {
  align-self: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.3rem;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 4px #000;
}

.cards-wrap {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.card {
  flex: 1 0 30%;
  color: hsl(0 0% 25%);
}
.card h2 {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.3rem;
  margin-bottom: 5px;
}
.card p {
  font-size: 1.1rem;
  line-height: 1.3rem;
}
.card img {
  width: 100%;
  aspect-ratio: 16/9;
}

@media (max-width: 45em) {
  .guest-quotes p {
    font-size: 1.2rem;
  }
  .card {
    flex: 1 0 45%;
  }
}

@media (max-width: 30em) {
  .guest-quotes {
    height: 25%;
  }
  .guest-quotes p {
    font-size: 1.1rem;
  }
  .card {
    flex: 1 0 100%;
  }
  .card p {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
@media (max-width: 27em) {
  .hero {
    min-height: 200px;
  }
  .guest-quotes {
    height: 30%;
  }
  .guest-quotes p {
    font-size: 1rem;
  }
}

.check-section-title {
  position: relative;
  display: none;
  margin: 1.5rem 0 1rem;
  font-size: 2.3rem;
  font-weight: normal;
  line-height: 1.5rem;
  color: hsl(0 0% 25%);
}

#availMsg {
  position: relative;
  margin: 1rem auto 1rem;
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
  box-shadow: 0 0 3px rgba(50, 50, 50, 0.75);
}
#availMsg h3 {
  font-size: 1.8rem;
  font-weight: normal;
  margin: 0;
}
#availMsg p {
  margin-bottom: 1rem;
}

.spinna {
  margin: 0 auto 0;
}

.availRoom {
  display: none;
  /* display: flex; */
  flex-wrap: wrap;
  align-items: stretch;
  gap: 6px;
  width: 100%;
  margin: 1.5rem 0;
  padding: 6px;
  font-size: 1rem;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(50, 50, 50, 0.75);
}

.rmPhoto {
  flex: 0;
  width: 200px;
  height: 150px;
}

.aDesc {
  flex: 1 0 180px;
  padding: 2px 6px;
}

.aDesc h4 {
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 1.7rem;
  font-weight: normal;
  line-height: 1.5rem;
}

.aDesc p.dItem {
  padding: 2px 0;
  border-top: solid 1px #aaa;
}

.noSmoking {
  vertical-align: middle;
}

.aDetail {
  flex: 0 1 150px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  line-height: 1.3rem;
}

.aDetail div {
  position: relative;
  flex: 1;
  padding: 2px 6px;
  text-align: right;
  border: 1px dotted #ccc;
  background-color: #e6f6ff;
}

.aDetail h5 {
  position: absolute;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.4rem;
  color: #444;
}

.aDetail p.dList {
  padding: 1px 0;
  margin-left: 4.5rem;
  border-bottom: solid 1px #ccc;
}

.aDetail p.dPrice {
  padding: 0 0 1px 0;
  margin-left: 4.5rem;
  font-size: 1.3rem;
  line-height: 1.6rem;
  border-bottom: solid 1px #ccc;
}

.aDetail p.disc {
  position: absolute;
  bottom: 2px;
  left: 6px;
  font-size: 13px;
  color: #666;
  font-style: italic;
}

.aBook {
  position: relative;
  display: grid;
  align-content: center;
  flex: 1;
  min-width: 185px;
  padding: 8px;
  text-align: center;
  border: 1px dotted #ccc;
  background-color: hsl(120, 100%, 95%);
}

.aBook p {
  font-size: 0.9rem;
  line-height: 1rem;
}

.aBook input[type="submit"] {
  width: 100%;
  height: 36px;
  margin-bottom: 0.3rem;
  padding-top: 0.1rem;
  font-size: 1.1rem;
  font-weight: normal;
  color: hsl(190, 48%, 58%);
  background-color: hsl(0, 0%, 100%);
  border: solid 1px hsl(0, 0%, 64%);
  transition: 350ms linear;
  cursor: pointer;
}

.aBook input:hover[type="submit"] {
  color: #fff;
  background-color: hsl(190, 48%, 58%);
  border: none;
}

.aCall {
  position: absolute;
  z-index: 99;
  display: none;
  /* display: grid; ** For testing/debugging */
  align-content: center;
  width: 100%;
  height: 100%;
  padding: 8px;
  background-color: hsl(12, 92%, 90%);
}

.aCall h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.aCall p {
  font-size: 1rem;
  line-height: 1.1rem;
}

@media (max-width: 60em) {
  #availMsg {
    font-size: 1rem;
  }
  #availMsg h3 {
    font-size: 1.6rem;
  }
  .aDetail {
    flex-direction: column;
  }
  .aBook {
    max-width: 100%;
  }
}

@media (max-width: 38em) {
  #availMsg {
    font-size: 0.9rem;
  }
  #availMsg h3 {
    font-size: 1.4rem;
  }
  .aDesc {
    flex: 1 0 140px;
  }
  .aDetail {
    flex: 1 0 100%;
    flex-direction: row;
  }
  .aBook {
    min-width: 100%;
  }
}
@media (max-width: 26em) {
  .availRoom {
    align-items: normal;
  }
  .rmPhoto {
    flex: 1;
    object-fit: cover;
  }
  .aDesc {
    font-size: 0.9rem;
    flex: 1 0 100%;
  }
  .aDesc h4 {
    font-size: 1.4rem;
  }
  .aDetail {
    flex-direction: column;
    font-size: 0.9rem;
  }
  .aDetail h5 {
    font-size: 1.3rem;
  }
  .aDetail p.dPrice {
    font-size: 1.3rem;
  }
}

.book-wrap {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 1.5rem;
}

.chosen-wrap {
  color: #333;
  padding: 0 0.6rem 0.6rem;
  background-color: hsl(0 0% 20% / 0.1);
}
.chosen-wrap h3 {
  display: inline-block;
  font-size: 2rem;
  font-weight: normal;
  margin-right: 8px;
}

.changeLink {
  position: relative;
  top: -5px;
  color: #0bd;
  padding: 0.2rem 0.6rem;
  background-color: hsl(0 0% 100% / 0.4);
  border-radius: 99px;
  cursor: pointer;
  transition: 500ms;
}
.changeLink:hover {
  color: #eee;
  background-color: #0bd;
}

.chosenRoom {
  display: none;
  /* display: flex; */
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  margin: 0;
  padding: 6px;
  font-size: 1rem;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(50, 50, 50, 0.75);
}
.chosenRoom .btm {
  padding: 2px 0 0;
  border: none;
}

.cDesc {
  flex: 1 0;
  display: flex;
  gap: 6px;
}

.cPhoto {
  flex: 0;
  width: auto;
  height: 95px;
}

.cRoom {
  flex: 1 0;
  min-width: 200px;
}
.cRoom h4 {
  position: relative;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
.cRoom p {
  padding: 3px 0;
  border-bottom: solid 1px #aaa;
}

.cDetail {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 6px;
  line-height: 1.3rem;
}
.cDetail div {
  flex: 1 0;
  min-width: 170px;
  padding: 0.4rem;
  border: 1px dotted #ccc;
  background-color: #e6f6ff;
}
.cDetail h5 {
  position: absolute;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.4rem;
}
.cDetail p {
  display: flex;
  padding: 3px 0;
  margin-left: 3.4rem;
  border-bottom: solid 1px #ccc;
}
.cDetail p.dList {
  justify-content: right;
  text-wrap: nowrap;
}
.cDetail p.dListS {
  justify-content: space-between;
}

.dListS i {
  font-size: 0.8rem;
  line-height: 1.4rem;
  font-style: normal;
  text-transform: uppercase;
}

/* ! */

.reserve-wrap {
  color: #333;
  margin-top: 15px;
}

.reserve-wrap h2 {
  font-size: 2rem;
  font-weight: normal;
  line-height: 2rem;
  margin: 0 0 4px 0;
}

.reserve-wrap p.titleSup {
  line-height: 1.1rem;
  margin-bottom: 10px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
}

.form-section em {
  position: absolute;
  right: 1.5rem;
  font-size: 0.9rem;
  color: #b03;
}

.form-section fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0.2rem 1rem 1rem;
  width: 100%;
  border: solid 1px #aaa;
}

.form-section legend {
  margin-left: -0.5rem;
  padding: 0 0.2rem;
  font-size: 1.7rem;
  letter-spacing: -1px;
  color: #444;
}

.form-section .form-input {
  flex: 1;
  flex-direction: column;
  overflow: visible;
}

.form-section .form-input label {
  flex: 0;
  padding: 0;
  text-align: left;
  font-size: 0.8rem;
  color: hsl(0 0% 0% / 0.8);
  background-color: hsl(0 0% 68% / 0);
}

.ccIcons {
  display: flex;
  flex: 1 100%;
}

.form-section .card-num {
  flex: 1 0 24rem;
}
.form-section .card-cvv {
  flex: 0 0 5rem;
}
.form-section .card-date {
  flex: 0 0 9rem;
}

.form-section .bill-name {
  flex: 1 1 17.25rem;
}
.form-section .bill-add {
  flex: 1 0 45rem;
}
.form-section .bill-city {
  flex: 1 0 30rem;
}
.form-section .bill-state-zip {
  flex: 1 0 9rem;
}

#complete-reservation {
  padding: 0 1rem 1rem;
  background-color: #e6f6ff;
}

.terms {
  flex: 1 100%;
  margin: 0 0 5px;
}
.terms h3 {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.7rem;
  border-bottom: solid 1px #777;
}
.terms p {
  margin: 0.5rem 0;
  line-height: 1.1rem;
}
#petsTerms {
  display: none;
}

.bookOption {
  flex: 1 0 17rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bookOption input.check {
  margin: 2px 7px 0 0;
  border: none;
  outline: 0;
}
.bookOption label.checkLbl {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 5px 10px;
  border: 1px dotted #ccc;
  background-color: #fff;
}
.checkLbl img {
  margin-right: 10px;
}

.rDetail {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 6px;
}
.rDetail div {
  flex: 1 0;
  padding: 0.4rem;
  border: 1px dotted #ccc;
  background-color: #fff;
}
.rDetail h5 {
  position: absolute;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.3rem;
}
.rDetail p {
  display: flex;
  padding: 3px 0;
  margin-left: 8rem;
  line-height: 1.3rem;
  gap: 1rem;
  border-bottom: solid 1px #ccc;
}
.rDetail p.dList {
  justify-content: right;
}
.rDetail p.dListS {
  justify-content: space-between;
}
.rDetail .btm {
  padding: 3px 0 0;
  border: none;
}

#agree {
  flex: 1 100%;
  padding: 0.4rem 0.8rem;
  margin-top: 5px;
  font-size: 1rem;
  line-height: 1.7rem;
  border: 1px dotted #ccc;
  background-color: #fff;
}
#agree input[type="checkbox"] {
  position: relative;
  top: 2px;
  margin: 0 7px 0 0;
  border: none;
  outline: 0;
}

.bookItBtn {
  flex: 1 100%;
  margin-top: 0.4rem;
  padding: 0.6rem;
  font-size: 1.2rem;
  color: hsl(0 0% 100%);
  background-color: hsl(190, 48%, 58%);
  border: none;
  transition: linear 350ms;
  cursor: pointer;
}
.bookItBtn:hover {
  background-color: hsl(190, 48%, 38%);
}
.bookItBtn:disabled {
  color: #eee;
  background-color: hsl(0, 0%, 73%);
  cursor: default;
}

.alertTag {
  position: absolute;
  bottom: -30px;
  left: 5px;
  padding: 5px;
  background-color: #fff;
  font-size: 0.9rem;
  color: #000;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.75);
  z-index: 1499;
}
.alertStem {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 26px;
  height: 12px;
}
.alertIco {
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-right: 5px;
}

#doneBtn {
  width: 100%;
  height: 36px;
  padding: 0.3rem;
  font-size: 1rem;
  color: hsl(0 0% 100%);
  background-color: #60b6c7;
  border: none;
  transition: 350ms linear;
  cursor: pointer;
}

@media (max-width: 56em) {
  #contact-info .form-input {
    flex: 1 35%;
  }
  #payment-detail .form-input {
    flex: 1 35%;
  }
  #payment-detail .form-input.card-num {
    flex: 1 0 28rem;
  }
  #payment-detail .form-input.card-cvv {
    flex: 0 0 5rem;
  }
  #payment-detail .form-input.card-date {
    flex: 1 0 35%;
  }
  #cardholder-info .form-input {
    flex: 1 35%;
  }
  .bookOption {
    flex-direction: row;
  }
}

@media (max-width: 38em) {
  .book-wrap {
    padding: 0.5rem;
  }
  #contact-info .form-input {
    flex: 1 100%;
  }
  #payment-detail .form-input.card-num {
    flex: 1 1 20rem;
  }
  #cardholder-info .form-input {
    flex: 1 100%;
  }
  #cardholder-info .form-input.bill-state-zip {
    flex: 1 35%;
  }
  .bookOption {
    flex: 1 0 100%;
    flex-direction: column;
  }
  .rDetail {
    flex-direction: column;
  }
}

@media (max-width: 27em) {
  .cDesc {
    flex-wrap: wrap;
  }
  .cPhoto {
    flex: 1;
    object-fit: cover;
  }
  .cRoom {
    flex: 1 0 100%;
  }
  .cRoom h4 {
    font-size: 1.8rem;
    line-height: 1.2rem;
    margin-bottom: 1rem;
  }
  .cRoom p {
    font-size: 0.95rem;
    padding: 2px 0;
    border-bottom: solid 1px #aaa;
  }
  .cDetail {
    flex-direction: column;
  }
  .cDetail div {
    flex: 1 0;
  }
  .bookOption label.checkLbl {
    font-size: 0.9rem;
  }
  #complete-reservation {
    padding: 0rem 0.5rem 0.5rem;
  }
  .form-section fieldset {
    padding: 0.2rem 0.5rem 0.5rem;
  }
  .form-section em {
    position: absolute;
    right: 0.5rem;
    font-size: 0.8rem;
  }
  .form-section legend {
    font-size: 1.6rem;
  }
  .rDetail h5 {
    font-size: 1.1rem;
  }
  .rDetail p {
    font-size: 0.9rem;
    gap: 0.5rem;
  }
  .bookItBtn {
    font-size: 1rem;
  }
}

.amen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  margin-top: 0.5rem;
  padding: 0 1rem 1rem;
  background-color: hsl(0 0% 100% / 0.6);
  border-radius: 0.4rem;
  border: solid 1px hsl(0 0% 0% / 0.1);
}
.amen > h3 {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0.8rem;
  border-bottom: solid 1px hsl(0 0% 25%);
}
.amen > ul {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.3;
  gap: 0.8rem;
}
.amen li {
  margin-left: 15px;
}

.rooms-section-title {
  position: relative;
  margin-top: 2rem;
  font-size: 2.3rem;
  font-weight: normal;
  line-height: 1.5rem;
  color: hsl(0 0% 25%);
}

.rooms-grid {
  position: relative;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(4, 1fr);
  margin-block: 1rem;
}

.room-lmnt {
  display: grid;
  gap: 0.3rem;
  padding: 0 0 0.4rem;
  background-color: hsla(0, 0%, 100%, 1);
  border-radius: 0.4rem;
  transition: 0.2s linear;
  box-shadow: 0 1.5px 3px 0 hsl(0 0% 0% / 0.3);
}

.room-lmnt:hover {
  scale: 1.08;
  box-shadow: 0 10px 8px 0 hsl(0 0% 0% / 0.15);
}

.room-lmnt > img {
  inline-size: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 0.4rem 0.4rem 0 0;
}

.room-lmnt > p {
  width: max-content;
  padding-left: 0.5rem;
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 55em) {
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .room-lmnt > p {
    font-size: 1.1rem;
  }

  .rooms-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 37em) {
  .amen > h3 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }
  .amen > ul {
    font-size: 0.9rem;
    line-height: 1.15;
  }
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .room-lmnt > p {
    font-size: 1rem;
  }
  .rooms-section-title {
    font-size: 2rem;
    line-height: 1;
  }
}

.review-average {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0.7rem;
  padding: 0.5rem 2rem;
  text-align: center;
  border-radius: 0.4rem;
  background-color: hsl(0 0% 100% / 1);
  border: solid 1px hsl(0 0% 0% / 0.1);
}

.review-average-stars {
  position: relative;
  width: 97px;
  height: 16px;
  margin: 0.3rem 0;
  background-color: #ccc;
}

.review-average-stars img {
  position: absolute;
  left: 0;
  z-index: 2;
}

.review-average-stars-fill {
  position: absolute;
  width: 1%;
  height: 16px;
  background-color: #3bd;
  z-index: 1;
}

.submit-review-toggle {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  padding: 0.3rem 0.3rem;
  margin-top: 1.8rem;
  color: hsl(0, 0%, 43%);
  background-color: hsl(0 0% 100% / 0.8);
  border: solid 0.3rem hsl(0 0% 0% / 0.12);
  border-bottom: none;
  cursor: pointer;
}

.submit-review-toggle:hover {
  color: hsl(190, 48%, 58%);
}

.toggle-arrow {
  position: relative;
  font-size: 1.3rem;
  margin-right: 0.25rem;
  scale: 1 0.7;
}

.submit-review-wrap {
  display: grid;
  grid-template-rows: 0fr; /* Change back to 0fr */
  background-color: hsl(0 0% 0% / 0.12);
  padding: 0.3rem 0.3rem 0;
  color: #333;
  transition: grid-template-rows 0.35s ease-out;
}

.submit-review-wrap[data-visible="true"] {
  grid-template-rows: 1fr;
  padding: 0.3rem 0.3rem;
  background-color: hsl(0 0% 0% / 0.12);
}

#guest-review {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  overflow: hidden;
}

.submit-review-wrap .form-input {
  flex: 40%;
}

#guest-review input[type="submit"] {
  width: 100%;
  padding: 0.65rem;
  font-size: 1.1rem;
  line-height: 1.1;
  color: hsl(0 0% 100%);
  background-color: hsl(190, 48%, 58%);
  border: none;
  transition: linear 350ms;
  cursor: pointer;
}

#guest-review input:hover[type="submit"] {
  background-color: hsl(190, 48%, 48%);
}

.reviews-wrap {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.review-box {
  display: flex;
  flex: 48%;
  gap: 1rem;
  border-radius: 0.4rem;
  background-color: hsl(0 0% 100% / 0.75);
  background: linear-gradient(5deg, hsl(48, 67%, 85%), rgba(255, 255, 255, 1) 30%);
  box-shadow: 0 0 3px hsla(0 0% 20% / 0.25);
}

.review-box-left {
  padding: 1rem;
  flex: 1;
}

.review-box-right {
  padding: 1rem;
  flex: 8;
}

.review-box-stars {
  position: relative;
  width: 97px;
  height: 16px;
  margin: 2px 0 5px;
  background-color: #ccc;
}

.review-box-stars img {
  position: absolute;
  left: 0;
  z-index: 2;
}

.review-box-stars-fill {
  position: absolute;
  width: 1%;
  height: 16px;
  background-color: #3bd;
  z-index: 1;
}

.response {
  margin-top: 10px;
  background-color: #e6fffe;
  padding: 10px;
}
.response ol {
  list-style-position: inside;
}

@media (max-width: 55em) {
  .submit-review-wrap .form-input {
    flex: 100%;
  }
}

@media (max-width: 37em) {
  .review-average {
    margin-top: 0.5rem;
    padding: 0.5rem 0.5rem;
  }
  .review-average-stars {
    scale: 0.9;
  }
  .review-box {
    gap: 0.5rem;
  }
  .review-box-stars {
    transform-origin: top left;
    scale: 0.9;
    margin: 0;
    background-color: #ccc;
  }
  .review-box-left {
    display: none;
  }
  .review-box-right {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
}

@media (max-width: 30em) {
  .review-average {
    font-size: 0.8rem;
  }
  .submit-review-wrap .form-input {
    flex: 1 0 100%;
    flex-direction: column;
  }

  .submit-review-wrap .form-input label {
    flex: 0;
    padding: 0;
    text-align: left;
    font-size: 0.8rem;
    color: hsl(0 0% 0% / 0.8);
    background-color: hsl(0 0% 68% / 0);
  }
}

.about-section {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.8rem;
}
.about-section h2 {
  flex: 1 100%;
  font-size: 2.1rem;
  font-weight: normal;
  line-height: 2rem;
}

.hot-info {
  flex: 0 1 25%;
  min-width: 250px;
}
.hot-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 2px;
  margin-bottom: 8px;
  line-height: 1rem;
}
.pet-policy {
  flex: 0 1 60%;
}
.pet-policy p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 2px;
  margin-bottom: 5px;
  font-size: 1.3rem;
  line-height: 1.1rem;
}
.pet-policy ul {
  margin-left: 25px;
}

.loc-info {
  flex: 0 1 25%;
  min-width: 250px;
}
.loc-info p {
  line-height: 1.2rem;
  margin-bottom: 15px;
  font-style: italic;
}
.loc-info span {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.3rem;
  padding: 0.5rem 0.2rem;
}
.loc-map {
  display: block;
  flex: 0 1 50%;
  height: 200px;
  border: none;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 3rem;
}
.amenities p {
  display: flex;
  flex: 1 1 20%;
  flex-direction: column;
  align-items: center;
  line-height: 1.5rem;
}

.fine-print {
  flex: 1;
}
.fine-print dt {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.2rem;
}
.fine-print dd {
  margin-bottom: 1rem;
}

@media (max-width: 45em) {
  .hot-info {
    flex: 1 100%;
  }
  .pet-policy {
    flex: 1 100%;
  }
  .loc-map {
    flex: 1;
    width: 100%;
  }
}
@media (max-width: 35em) {
  .about-section {
    gap: 1rem;
  }
  .hot-info p {
    margin-bottom: 3px;
    line-height: 1.1rem;
  }
  .loc-info {
    min-width: 100%;
  }
  .loc-info span {
    padding: 0.4rem 0.2rem;
  }
  .loc-map {
    flex: 1;
    width: 100%;
  }
  .pet-policy,
  .amenities {
    font-size: 0.9rem;
    gap: 1.1rem;
  }
  .amenities p {
    flex: 1 1 30%;
  }
  .fine-print dt {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.1rem;
  }
  .fine-print dd {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

.contact-wrap {
  margin-top: 3rem;
  display: flex;
}

.contact-cards-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  flex: 35%;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: hsl(0 0% 25%);
  padding: 0.7rem 1rem;
}

.contact-card h2 {
  width: 100%;
  font-size: 2.3rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.contact-card p {
  font-size: 1.1rem;
  line-height: 1.2;
}

.contact-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 65%;
}

#cForm {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 90%;
  padding: 0.5rem;
  background-color: hsl(0 0% 0% / 0.15);
}

#cForm input[type="submit"] {
  padding: 0.7rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
  color: hsl(0 0% 100%);
  background-color: hsl(190, 48%, 58%);
  border: none;
  transition: linear 350ms;
  cursor: pointer;
}

#cForm input:hover[type="submit"] {
  background-color: hsl(190, 48%, 48%);
}

@media (max-width: 55em) {
  .contact-wrap {
    margin-top: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  .contact-cards-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0.5rem;
    flex: 40%;
  }
  .contact-card * {
    width: max-content;
  }
  .contact-card h2 {
    font-size: 1.8rem;
  }
  .contact-card p {
    font-size: 0.9rem;
  }
  #cForm {
    width: 100%;
  }
}

@media (max-width: 30em) {
  .contact-form-wrap .form-input {
    flex: 1;
    flex-direction: column;
  }

  .contact-form-wrap .form-input label {
    flex: 0;
    padding: 0;
    text-align: left;
    font-size: 0.8rem;
    color: hsl(0 0% 0% / 0.8);
    background-color: hsl(0 0% 68% / 0);
  }
}

.termsWrap {
  margin-top: 1rem;
}
.termsWrap h3 {
  margin-top: 20px;
}
.termsWrap p {
  margin-bottom: 20px;
  line-height: 1.2rem;
}

.privacyWrap {
  margin-top: 1rem;
}
.privacyWrap p {
  margin-bottom: 20px;
}
.privacyWrap dd {
  margin-bottom: 10px;
  font-style: italic;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 325px;
  padding-top: 145px;
  background-image: url("../img/footer_waves.png");
  background-repeat: repeat-x;
  background-position: 0 0;
  z-index: 10;
}

.foot-wrap {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem 0;
  align-items: top;
  justify-content: space-between;
  color: hsl(0 0% 100%);
}

.foot-nav {
  text-align: center;
  list-style: none;
  gap: 0.5rem;
}

.foot-nav a {
  color: hsl(0 0% 100%);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1rem;
}

.foot-nav a:hover {
  text-decoration: underline;
}

.foot-wrap p {
  text-align: right;
  font-size: 0.8rem;
}

.foot-wrap span {
  display: block;
  font-size: 0.9rem;
}

.foot-wrap img {
  margin-top: 1rem;
}

@media (max-width: 50em) {
  .foot-wrap {
    flex-direction: column;
    align-items: center;
    --gap: 1rem;
  }
  .foot-wrap p {
    text-align: center;
  }
}

@media (max-width: 40em) {
  .foot-nav a {
    font-size: 0.9rem;
  }
  .foot-wrap span {
    font-size: 0.8rem;
  }
}

@media (max-width: 30em) {
  .foot-nav a {
    font-size: 0.8rem;
  }
}

.popOver {
  position: fixed;
  display: grid;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1998;
}
.popBox {
  position: relative;
  justify-self: center;
  align-self: center;
  width: 60%;
  border-radius: 0.4rem;
  z-index: 1999;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}
.popBox h3 {
  font-size: 1.7rem;
  line-height: 1.7rem;
  font-weight: normal;
  color: #fff;
  margin-bottom: 15px;
  padding: 0.5rem;
  border-radius: 0.4rem 0.4rem 0 0;
  background-color: #40a2b5;
}
.popBox p {
  position: relative;
  padding: 0 1rem 1rem 1rem;
  line-height: 1.1rem;
}
.popBox span.changeLink {
  padding: 0;
  top: 0px;
}
.popBox span.changeLink:hover {
  color: #0bd;
  background: none;
  text-decoration: underline;
}
.popBox img.cvv {
  margin: 0 1rem 1rem;
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.popBox img.grdn {
  margin: 0 1rem 1rem;
  width: 93%;
  height: 93%;
  object-fit: contain;
}
.popBox ul {
  margin: 0;
  padding: 0 1rem 1rem 2rem;
}
.popBox #doneBtn:hover {
  background-color: #348697;
}

#closeBtn {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  color: #fff;
  font-size: 3rem;
  line-height: 1rem;
  text-decoration: none;
}
#closeBtn:hover {
  color: #333;
}

@media (min-width: 50em) {
  .popBox {
    width: 500px;
  }
}
@media (max-width: 40em) {
  .popBox h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 30em) {
  .popBox {
    width: 80%;
  }
  .popBox h3 {
    font-size: 1.4rem;
  }
}
