/* :root variables and the html font-size base already live in style.css
   (loaded before this file on every page that uses it) - this used to
   redeclare both identically, which was harmless except for
   --primary-font: redeclaring it here silently shadowed style.css's
   value (Oswald here vs. the site-wide Manrope) on every page that loads
   res.css (res.html, menu.html, checkout.html). Removed rather than kept
   in sync by hand. */

.reservation__cards {
  margin: 3rem 0;
  padding: 3rem 0;
}

.main__reservtion {
  background-image: url(../images/bg/steakhouse-img-12.jpg);
}
@supports (-webkit-touch-callout: none) {
  .main__reservtion {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  .main__reservtion::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg/steakhouse-img-12.jpg);
    background-size: cover;
    background-position: center;
    transform: translateZ(0);
    will-change: transform;
    z-index: -1;
  }
}
.address__res {
  background-image: url(../images/klara-kulikova-oB68s9qJ87Q-unsplash.jpg);
}
.opening__res {
  background-image: url(../images/ali-choubin-GGAMO-CEEg-unsplash.jpg);
}
.form__res {
  background-image: url(../images/shio-yang-RQYKAv-4F-U-unsplash.jpg);
}

.res__card {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid var(--main-color);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem 0;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.res__card::after {
  content: "";
  inset: 0;
  background-color: #0e0d0a;
  position: absolute;
  z-index: -1;
  transition: all 1.5s;
}
.res__card:hover::after {
  background-color: #0e0d0a7c;
}

.res__h3 {
  color: var(--main-color);
  text-align: center;
  font-size: 2.4rem;
  font-family: var(--header-font);
  padding: 2rem 0;
  padding-top: 2rem;
  margin: 2rem 0;
}
.address__openingHours__details {
  text-align: center;
  color: var(--white-color);
  font-size: 1.8rem;
  line-height: 3rem;
}
.address__openingHours__details h4 {
  font-size: 2.2rem;

  font-family: var(--primary-font);
}
.res__phones {
  font-size: 2.4rem;
}
.resMap__btn a {
  background-color: transparent;
  color: var(--white-color);
}
.resMap__btn {
  position: relative;
  margin: 1rem 0;
}
.resMap__btn::after {
  content: " ";
  width: 0%;
  height: 0.2rem;
  background-color: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0.8rem;
  transition: all 1s;
}
.resMap__btn:hover::after {
  width: 80%;
}

label {
  padding: 0 !important;
  margin: 0 !important;
  color: var(--main-color);
  font-family: var(--header-font);
  font-size: 1.7rem;
}
input,
textarea {
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid lightgray !important;
  color: var(--white-color) !important;
  font-size: 1.8rem !important;
  resize: vertical;

  /* padding: 1.2rem 0; */
}
input:focus,
textarea:focus {
  outline: none !important;
  border-bottom-color: var(--main-color) !important;
}
input span {
  color: var(--white-color) !important;
}

.submit__btn {
  background-color: var(--main-color);
  color: var(--white-color);
  transition: all 1s;
  margin: 1.4rem 0;
}
.res__card:hover .submit__btn {
  background-color: var(--bg-color);
}
label {
  transition: all 1s;
}
.res__card:hover label {
  color: var(--white-color);
}

.date__div {
  position: relative;
  padding-top: 1.5rem;
}
.form-control {
    font-size: 1.6rem !important;
    margin-bottom: 0.4rem !important;
    /* padding: 0 !important; */
}
p {
    margin-top: 0;
    /* margin-bottom: 0 !important; */
}
.calendar__container {
  /* Intentionally in normal flow (not absolutely positioned): it must push
     the fields below it down when open, never float over their labels/inputs. */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background-color: var(--bg-color);
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 1.5rem;
  border: 1px solid var(--main-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.6);
}

.calendar {
  width: 26rem;
  max-width: 100%;
  height: 30rem;
  box-sizing: border-box;
  background-color: #222227;
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.month {
  width: 100%;
  height: 8rem;
  background-color: var(--main-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  text-align: center;
  text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
}

.month i {
  font-size: 2.5rem;
  cursor: pointer;
}

.month i.nav-disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: not-allowed;
}

.month h1 {
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}
.month p {
  font-size: 1.2rem;
}
.weekdays {
  width: 100%;
  height: 3rem;
  padding: 0 0.2rem;
  display: flex;
  align-items: center;
}

.weekdays div {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  width: calc(100% / 7);
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
}

.days {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0.1rem;
}

.days div {
  font-size: 1.4rem;
  margin: 0.1rem;
  width: calc(100% / 7 - 0.2rem);
  height: 2.6rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s;
}

.days div:hover:not(.today) {
  background-color: #262626;
  border: 0.2rem solid #777;
  cursor: pointer;
}

.prev-date,
.next-date,
.disabled-date {
  opacity: 0.5;
}
.disabled-date {
  pointer-events: none;
  cursor: not-allowed;
}

.today {
  /* background-color: var(--main-color); */
  cursor: pointer;
}
.date__input {
  color: var(--white-color);
  font-size: 1.8rem;
}
.res__time {
  color: var(--white-color);
  font-size: 1.8rem;
}

/* allAboutReservation */

.show__res {
  padding: 2.3rem;
}
.allAboutReservation {
  margin: 3rem 0;
  padding-bottom: 4rem;
}

.reservedUserName {
  font-size: 3.6rem;
  text-align: center;
  color: var(--white-color);
  padding: 1.6rem 0;
}

.reservedUserName span {
  color: var(--main-color);
  animation-name: smallToBig;
  animation-duration: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
/* .reservation__display p {
  font-size: 1.8rem;
} */
.reservation__display span {
  color: var(--main-color);
  font-size: 2rem;
}
.reservationMsg p {
  font-size: 2.3rem;
  color: #262626;
}
.reservationMsg span {
  font-size: 1.5rem !important;
}
.all__details__txts p {
  line-height: 2;
}

/* "No upcoming reservation" panel (res.html only - replaces the old
   generic .all__details__txts fact-dump with something reservation-
   focused). Reuses the .rsv-card__label/.rsv-card__text look already
   established by the Location/Opening Hours side cards above. */
.rsv-info-panel__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--main-color);
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.rsv-info-panel__eyebrow .material-symbols-outlined {
  font-size: 2rem;
}
.rsv-info-panel__lead {
  margin-bottom: 2.4rem !important;
}
.rsv-info-panel__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
}
.rsv-info-panel__item {
  flex: 1 1 200px;
}
@keyframes smallToBig {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.reservedUserDetails,
.reservedNumbers {
  font-size: 2rem;
  /* text-align: center; */
  color: var(--white-color);
}
.reservedUserDetails p {
  padding-bottom: 2rem;
}
.res-nonlogged {
  width: 90%;
  margin-left: auto;
}

.res-nonlogged p {
  font-family: var(--main-font);
  text-align: center;
  margin-top: 0.5rem;
  font-size: 3.2rem;
  color: var(--white-color);
}
.res-nonlogged a {
  color: var(--white-color);
  background-color: var(--main-color);
  font-family: var(--primary-font);
  text-transform: capitalize;
  font-size: 1.4rem;
  letter-spacing: 1px;
  border: none;
  transition: all 0.5s;
  margin-bottom: 2rem;
}
.res-nonlogged a:hover {
  background-color: #a1480d;
}

.reservation__footer {
  margin-top: 7.7rem;
}

.reservation__footer h5 {
  font-size: 2rem;
}
.reservation__footer img {
  width: 100%;
}

/* allAboutReservation */

/* start our place */
.our__place {
  margin: 4rem 0;
  padding: 3rem 0;
}

.resBg {
  height: 80vh;
  background-image: url(.././images/bg/steakhouse-img-12.jpg);
  position: relative;
}
.resBg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0e0d0a81;
  z-index: 1;
}
.sss {
  width: 100%;
}
/* end our place */

@media screen and (max-width: 1400px) {
  .show__res {
    padding: 1.3rem;
  }
  .res__h3 {
    font-size: 2.6rem;
  }
  .address__openingHours__details {
    text-align: center;
    font-size: 2.2rem;
  }
  label {
    font-size: 2rem;
  }
  .submit__btn__container {
    padding-top: 0;
  }
  .submit__btn {
    margin: 2.5rem 0;
  }

  .submit__btn .reservedUserName {
    font-size: 4.3rem;
  }

  .reservedUserDetails,
  .reservedNumbers,
  .reservation__display span {
    font-size: 2.6rem;
  }
  .reservedUserDetails p {
    padding-bottom: 1rem;
  }
  .reservation__footer {
    margin-top: 6.4rem;
  }

  .reservation__footer h5 {
    font-size: 2.4rem;
    padding-top: 2rem;
  }
  .res-nonlogged {
    width: 100%;
  }
  #reservationPlaceholder {
    padding: 0 !important;
  }

  .res-nonlogged p {
    font-size: 3rem;
    margin-bottom: 0;
  }
  .res-nonlogged a {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .show__res {
    padding: 0 1.3rem;
  }
  .reservedUserName {
    font-size: 4rem;
    margin: 1rem 0;
  }

  .reservation__footer {
    margin-top: 7.1rem;
  }
  .reservedUserDetails,
  .reservedNumbers,
  .reservation__display span {
    font-size: 2.2rem;
  }
  .reservedUserDetails p {
    padding-bottom: 1rem;
  }
  .res-nonlogged p {
    font-size: 2.7rem;
    margin-bottom: 0;
  }
  .res-nonlogged a {
    margin-bottom: 0rem;
  }
}

@media screen and (max-width: 992px) {
  .show__res {
    padding: 0;
  }
  .res-nonlogged {
    /* Columns stack below this breakpoint - center the card instead of
       the desktop's right-aligned margin-left:auto. */
    margin: 0 auto;
  }
  .res__h3 {
    font-size: 2.6rem;
  }
  .address__openingHours__details {
    text-align: center;
    font-size: 2.2rem;
  }
  label {
    font-size: 1.9rem;
  }
  .submit__btn__container {
    padding-top: 0;
  }
  .reservedUserName {
    font-size: 4.3rem;
  }

  .reservedUserDetails,
  .reservation__display span {
    font-size: 2.8rem;
    text-align: center;
  }
  .reservation__footer {
    margin-top: 4rem;
  }

  .reservation__footer h5 {
    font-size: 2.4rem;
    padding-top: 2rem;
  }
  .res-nonlogged p {
    font-size: 3rem;
    margin-bottom: 0;
  }
  .res-nonlogged a {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .reservedUserDetails,
  .reservation__display span {
    font-size: 2.4rem;
  }
  .reservation__footer {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  /* Scoped to the reservation page's own sections (not a bare .container
     override) since res.css is also loaded by checkout/menu/myReservations. */
  .main__reservtion .container,
  .reservation__cards > .container,
  .allAboutReservation .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .reservedUserName {
    font-size: 3rem;
  }
  .reservation__display span {
    font-size: 3rem;
  }
  .reservedUserDetails,
  .reservedNumbers,
  .reservation__display span {
    font-size: 2.2rem;
  }
  .reservation__footer {
    display: flex;
    flex-direction: column;
  }

  .reservation__footer h5 {
    font-size: 2rem;
  }
   .res-nonlogged p {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
  .btn {
  padding: 12px 17px !important;
  }
}

/* start real reservation system additions (time slots, table preference &
   success modals, inline validation notes) - reuses existing colors/fonts
   and the existing .overlay/.msg__container modal system, no new palette */

/* .reservation__msg (menu.html's "please sign in" popup) now gets its
   background/border/radius/shadow/padding/typography/buttons straight
   from the shared .msg__container/.btns__container base in style.css -
   that base was itself modeled on #loginRequiredOverlay .reservation__msg
   (res.html) so every popup on the site reads as one consistent design.
   Nothing left to override here. */

.time__placeholder {
  opacity: 0.6;
  font-size: 1.5rem;
}

.res__time {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.time__slot {
  background-color: transparent;
  border: 1px solid var(--main-color);
  color: var(--white-color);
  font-family: var(--primary-font);
  font-size: 1.3rem;
  padding: 0.6rem 1.2rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
}

.time__slot:hover:not(:disabled) {
  background-color: var(--main-color);
}

.time__slot.selected {
  background-color: var(--main-color);
  color: var(--white-color);
}

.time__slot:disabled {
  opacity: 0.35;
  border-color: #777;
  cursor: not-allowed;
}

.password-note.error {
  color: #ff8a65;
}

.suggested__times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.6rem 0;
}

.suggested__times button {
  background-color: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  font-size: 1.2rem;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  cursor: pointer;
}

.suggested__times button:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

/* richer modal variant for forms (table preference / success), same visual
   family as .msg__container but sized for real content instead of one line */
.msg__container--form {
  width: 90%;
  max-width: 505px;
  height: auto;
  max-height: 85vh;
  overflow-y: auto;
  font-size: 1.8rem;
  padding: 3rem 2.5rem;
  text-align: left;
  align-items: stretch;
}

.msg__container--form h3 {
  font-family: var(--header-font);
  color: var(--main-color);
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.preference__group__title {
  color: var(--main-color);
  font-family: var(--primary-font);
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  margin: 1.2rem 0 0.6rem;
}

.preference__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 1.2rem;
}

.preference__grid label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  color: var(--white-color);
  font-family: var(--primary-font);
  cursor: pointer;
}

.msg__container--form input[type="checkbox"],
.msg__container--form input[type="radio"] {
  width: auto !important;
  border: none !important;
  accent-color: var(--main-color);
  cursor: pointer;
}

.preference__btns {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  justify-content: center;
  gap: 1rem;
}

.success__details {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 1.5rem 0;
}

.success__details span {
  color: var(--main-color);
}

.reservation__manage__link {
  display: inline-block;
  /* margin-top: 2rem; */
  background-color: var(--main-color);
  color:var(--white-color); 
  font-size: 1.8rem;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 3px;
  transition: all 0.3s;
}
.reservation__manage__link:hover {
  color:var(--white-color);
  background-color: #883a06;
}
@media screen and (max-width: 576px) {
  .preference__grid {
    grid-template-columns: 1fr;
  }
}

/* end real reservation system additions */

/* =======================================================================
   start res.html redesign (matches the "res-de" reference)
   Every new selector below is prefixed `rsv-` and guaranteed unique to
   this page's markup, so nothing here can leak into menu.html or
   checkout.html even though they also load this stylesheet. The existing
   .res__card/.address__res/.opening__res/.form__res selectors are
   restyled directly - confirmed exclusive to res.html's own markup even
   though the file is shared.
   ======================================================================= */

/* ---- hero -------------------------------------------------------------- */
.main__reservtion {
  height: 92vh;
  min-height: 680px;
  overflow: hidden;
}
.rsv-hero .container {
  position: relative;
  z-index: 2;
}
.rsv-hero__content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.rsv-hero__title {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 6.4rem;
  line-height: 1.1;
  color: var(--white-color);
  margin: 0 0 1.6rem;
}
.rsv-hero__subtitle {
  font-family: var(--primary-font);
  font-size: 1.7rem;
  line-height: 1.7;
  color: #d8d3ce;
  margin: 0 0 3rem;
}
.rsv-hero__btns {
  justify-content: center;
  margin-bottom: 0;
}
.rsv-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 9rem;
  transform: translateX(-50%);
  z-index: 2;
}

/* ---- 3-column reservation area: overlaps the bottom of the hero ------- */
.reservation__cards {
  position: relative;
  z-index: 2;
  margin-top: -7rem;
  padding: 0 0 3rem;
}

/* side cards (location / opening hours) */
.rsv-side-card {
  background-color: rgba(16, 14, 12, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  padding: 3rem 2.6rem !important;
}
.rsv-side-card::after {
  /* display: none; */
}

.rsv-card__label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--main-color);
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.rsv-card__label--sub {
  margin-top: 2rem;
}
.rsv-card__label .material-symbols-outlined {
  font-size: 1.9rem;
}
.rsv-card__text {
  text-align: left;
  color: var(--white-color);
  font-size: 1.5rem;
  line-height: 1.8;
  margin: 0;
}
.rsv-side-card .address__openingHours__details {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 0;
}
.rsv-side-card .address__openingHours__details h4 {
  color: var(--main-color);
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}
.rsv-outline-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  background-color: transparent !important;
  border: 1px solid var(--main-color) !important;
  border-radius: 3px;
  color: var(--white-color) !important;
  font-family: var(--primary-font);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 1rem 1.8rem !important;
  transition: all 0.3s ease;
}
.rsv-outline-btn:hover {
  background-color: var(--main-color) !important;
}
.rsv-outline-btn a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit !important;
}
.rsv-outline-btn .material-symbols-outlined {
  font-size: 1.7rem;
}
.rsv-side-card > a.rsv-outline-btn {
  color: var(--white-color) !important;
}

/* ---- booking card (glassmorphism) -------------------------------------- */
.rsv-booking-card {
  /* .form__res (shared base class) sets its own background-image, which
     paints above background-color and was showing through untouched -
     needs to be explicitly cleared here, same as .rsv-side-card. */
  background-image: none !important;
  background-color: rgba(12, 10, 9, 0.72) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  align-items: stretch !important;
  padding: 3rem !important;
}
.rsv-booking-card::after {
  display: none;
}
.rsv-booking-card form {
  width: 100%;
}
.rsv-booking-card__header {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2.2rem;
}
.rsv-booking-card__icon {
  color: var(--main-color);
  font-size: 2.6rem;
}
.rsv-booking-card__title {
  font-family: var(--header-font);
  color: var(--main-color);
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0;
}
.rsv-booking-card__subtitle {
  font-family: var(--primary-font);
  color: var(--body-color);
  font-size: 1.3rem;
  margin: 0.2rem 0 0;
}

.rsv-field {
  margin-bottom: 1.8rem;
}
.rsv-field__label {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--primary-font) !important;
  color: var(--white-color) !important;
  font-weight: 600;
  font-size: 1.3rem !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.7rem !important;
}
.rsv-field__label .material-symbols-outlined {
  color: var(--main-color);
  font-size: 1.8rem;
}
.rsv-field__optional {
  text-transform: none;
  color: var(--body-color);
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1.2rem;
}
.rsv-field__control {
  position: relative;
}
.rsv-field__chevron {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--body-color);
  pointer-events: none;
  font-size: 2rem;
}
.rsv-booking-card .form-control.rsv-field__input,
.rsv-booking-card input.date__input,
.rsv-booking-card input.rsv-guests__input {
  background-color: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 8px !important;
  padding: 1.2rem 1.4rem !important;
  font-size: 1.5rem !important;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.rsv-booking-card .form-control.rsv-field__input:focus,
.rsv-booking-card input.date__input:focus {
  background-color: rgba(255, 255, 255, 0.07) !important;
  border-color: var(--main-color) !important;
}
.rsv-booking-card textarea.rsv-field__input {
  min-height: 5.4rem;
}
.rsv-booking-card input[readonly].rsv-field__input {
  opacity: 0.75;
  cursor: default;
}

.rsv-guests {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rsv-guests__input {
  text-align: center;
  flex: 1;
  appearance: textfield;
  -moz-appearance: textfield;
}
.rsv-guests__input::-webkit-outer-spin-button,
.rsv-guests__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.rsv-guests__btn {
  flex-shrink: 0;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--white-color);
  font-size: 2rem;
  line-height: 1;
  transition: all 0.3s ease;
}
.rsv-guests__btn:hover {
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.rsv-submit-btn {
  width: 100%;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1.5rem !important;
}
.rsv-availability-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
  font-family: var(--primary-font);
  font-size: 1.3rem;
  color: var(--body-color);
}
/* .hide is only ever defined as `.password-note.hide` elsewhere in this
   codebase - this element isn't a .password-note, so it needs its own
   rule for the same "hide" class to actually do anything. */
.rsv-availability-note.hide {
  display: none;
}
.rsv-availability-note__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4caf50;
  flex-shrink: 0;
}

/* time slot chips, restyled to sit inside the glass card */
.rsv-booking-card .time__slot {
  border-radius: 6px;
  font-size: 1.25rem;
  padding: 0.7rem 1.1rem;
}

/* ---- "your reservation status" panel - kept (not in the reference, but
   real functionality: scroll target after a successful booking, and the
   only place a logged-in user's upcoming reservation is shown) --------- */
.rsv-status {
  position: relative;
  z-index: 1;
}

/* ---- how reservation works ---------------------------------------------- */
.rsv-section-label {
  text-align: center;
  color: var(--main-color);
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}
.rsv-steps {
  padding: 5rem 0;
}
.rsv-steps__row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.rsv-step {
  flex: 1 1 200px;
  max-width: 230px;
  text-align: center;
  transition: transform 0.3s ease;
}
.rsv-step:hover {
  transform: translateY(-6px);
}
.rsv-step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background-color: var(--main-color);
  color: var(--white-color);
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.rsv-step__icon {
  display: block;
  color: var(--main-color);
  font-size: 2.6rem;
  margin-bottom: 1rem;
}
.rsv-step__title {
  font-family: var(--primary-font);
  color: var(--white-color);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.rsv-step__text {
  font-family: var(--primary-font);
  color: var(--body-color);
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0;
}
.rsv-step__arrow {
  color: rgba(255, 255, 255, 0.25);
  font-size: 2.4rem;
  margin-top: 1.6rem;
  flex-shrink: 0;
}

/* ---- promotional section ------------------------------------------------ */
.rsv-promo__img {
  min-height: 380px;
  overflow: hidden;
}
.rsv-promo__img img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.rsv-promo__img:hover img {
  transform: scale(1.05);
}
.rsv-promo__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 3rem;
  background-color: #131110;
}
.rsv-promo__label {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.6rem;
  color: var(--main-color);
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  width: 100%;
}
.rsv-promo__label .material-symbols-outlined {
  font-size: 1.6rem;
}
.rsv-promo__title {
  font-family: var(--main-font);
  color: var(--white-color);
  font-size: 3.6rem;
  line-height: 1.2;
  margin: 1.2rem 0;
}
.rsv-promo__text {
  font-family: var(--primary-font);
  color: var(--body-color);
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 340px;
}

/* ---- testimonials -------------------------------------------------------- */
.rsv-testimonials {
  padding: 5rem 0;
}
.rsv-testimonial {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.6rem 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.rsv-testimonial:hover {
  transform: translateY(-6px);
  border-color: var(--main-color);
}
.rsv-testimonial__stars {
  color: var(--main-color);
  margin-bottom: 1.2rem;
}
.rsv-testimonial__stars .material-symbols-outlined {
  font-size: 1.8rem;
  font-variation-settings: "FILL" 1;
}
.rsv-testimonial__quote {
  font-family: var(--primary-font);
  color: var(--white-color);
  font-size: 1.4rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.4rem;
}
.rsv-testimonial__name {
  font-family: var(--primary-font);
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0;
}

/* ---- footer (res.html only - other pages keep the existing minimal
   footer; this is intentionally scoped, see plan notes) ------------------ */
.rsv-footer {
  background-color: #0a0908;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 0;
}
.rsv-footer__row {
  padding-bottom: 3rem;
}
.rsv-footer__col {
  margin-bottom: 2.5rem;
}
.rsv-footer__brand {
  margin-bottom: 1.2rem;
  font-size: 2.2rem !important;
}
.rsv-footer__desc {
  font-family: var(--primary-font);
  color: var(--body-color);
  font-size: 1.35rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
  max-width: 280px;
}
.rsv-footer__social {
  display: flex;
  gap: 1rem;
}
.rsv-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white-color);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.rsv-footer__social a:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.rsv-footer__heading {
  font-family: var(--primary-font);
  color: var(--white-color);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.rsv-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rsv-footer__links li {
  margin-bottom: 1rem;
}
.rsv-footer__links a {
  font-family: var(--primary-font);
  color: var(--body-color);
  font-size: 1.35rem;
  transition: color 0.3s ease;
}
.rsv-footer__links a:hover,
.rsv-footer__links a.rsv-footer__active {
  color: var(--main-color);
}
.rsv-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rsv-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-family: var(--primary-font);
  color: var(--body-color);
  font-size: 1.35rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.rsv-footer__contact .material-symbols-outlined {
  color: var(--main-color);
  font-size: 1.7rem;
  flex-shrink: 0;
}
.rsv-footer__hours {
  font-family: var(--primary-font);
  color: var(--body-color);
  font-size: 1.35rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.rsv-footer__hours strong {
  color: var(--white-color);
}
.rsv-footer__bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  font-family: var(--primary-font);
  color: var(--body-color);
  font-size: 1.25rem;
}

/* ---- responsive ---------------------------------------------------------- */
@media screen and (max-width: 1200px) {
  .rsv-hero__title {
    font-size: 5.4rem;
  }
  .reservation__cards {
    margin-top: -5rem;
  }
}

@media screen and (max-width: 992px) {
  .main__reservtion {
    height: auto;
    min-height: 620px;
    padding: 14rem 0 12rem;
  }
  .rsv-hero__scroll {
    display: none;
  }
  .reservation__cards {
    margin-top: 3rem;
  }
  .rsv-side-card,
  .rsv-booking-card {
    margin-bottom: 2rem;
  }
  .rsv-steps__row {
    justify-content: center;
  }
  .rsv-step__arrow {
    display: none;
  }
  .rsv-promo__img {
    min-height: 280px;
  }
  .rsv-promo__img img {
    min-height: 280px;
  }
}

@media screen and (max-width: 768px) {
  .rsv-hero__title {
    font-size: 4.2rem;
  }
  .rsv-hero__subtitle {
    font-size: 1.5rem;
  }
  .rsv-hero__btns {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }
  .rsv-hero__btns .hero__btn {
    justify-content: center;
  }
  .rsv-promo__title {
    font-size: 2.8rem;
  }
  .rsv-footer__col {
    text-align: center;
  }
  .rsv-footer__social {
    justify-content: center;
  }
  .rsv-footer__contact li {
    justify-content: center;
    text-align: left;
  }
  .rsv-footer__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 576px) {
  .main__reservtion {
    min-height: 560px;
    padding: 12rem 0 10rem;
  }
  .rsv-hero__title {
    font-size: 3.2rem;
  }
  .rsv-booking-card,
  .rsv-side-card {
    padding: 2.2rem !important;
  }
  .rsv-booking-card__title {
    font-size: 2rem;
  }
  .rsv-testimonial {
    margin-bottom: 1.6rem;
  }
  .rsv-promo__img img{
    width: 85%;
    margin:auto;
  }
}

/* start "sign in required" reservation popup redesign (matches popres.png)
   - scoped to #loginRequiredOverlay so it only affects res.html; menu.html/
   checkout.html/oneProduct.html load this same res.css file but their own
   sign-in popups have no matching id and keep their existing look.
   - Measurements below were taken by pixel-sampling popres.png directly
   (1424x1104 source) rather than estimated: popup box 905x506px, border
   ~2px, radius ~8px, button 196x65px with 29px gaps, divider 378px wide,
   divider-to-buttons gap 51px, text line pitch 68px. Converted to rem at
   a 16px root. */
/* NOTE: this site's html{} sets font-size:62.5% (1rem = 10px), so this
   block uses px throughout instead of rem - required for the px values
   below to match the pixel-sampled reference exactly regardless of that
   root font-size. */
#loginRequiredOverlay {
  background-color: rgba(10, 8, 6, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: reservationOverlayFadeIn 0.35s ease;
}

#loginRequiredOverlay .reservation__msg {
  width: 505px; 
  max-width: 92vw;
  height: auto;
  max-height: 62vh;
  overflow-y: auto;
  background: linear-gradient(165deg, #171310 0%, #100d0a 100%);
  border: .5px solid var(--main-color) !important; 
  border-radius: 8px; 
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  padding: 77px 56px 80px; 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  box-sizing: border-box;
  background-image: url("../images/bg/lam.jpg");
  background-size: cover;
  background-position: bottom;
}

#loginRequiredOverlay .reservation__msg::after {
  content: " ";
  position: absolute;
  background-color: #000000d7;
  z-index: -1;
  inset: 0;
}

.reservation__msg__close {
  position: absolute;
  top: 31px; /* measured */
  right: 16px;
  width: 18px;
  height: 18px;
  padding: 0 !important;
  border: none;
  background: transparent;
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  transition: opacity 0.25s ease;
}
.reservation__msg__close .material-symbols-outlined {
  font-size: 24px;
}
.reservation__msg__close:hover {
  opacity: 0.7;
}

.reservation__msg__header {
  align-items: center !important;
  width: 100%;
  margin-bottom: 31px;
}



.reservation__msg__text {
  font-family: var(--main-font);
  font-size: 24px; /* derived from 68px line pitch @ 1.6 line-height */
  line-height: 1.6;
  font-weight: 400;
  color: #f2e9de;
  margin: 0;
  text-align: center;
}
.reservation__msg__accent {
  font-style: italic;
  color: var(--main-color);
}

.reservation__msg__divider {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 378px; /* measured */
  align-self: center;
  margin-bottom: 31px; /* measured, divider-to-buttons */
  color: var(--main-color);
 
}
.reservation__msg__divider::before,
.reservation__msg__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--main-color), transparent);
  opacity: 0.6;
}
.reservation__msg__divider-ornament {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
}

#loginRequiredOverlay .btns__container {
  align-self: center;
  gap: 29px; /* measured */
}

.reservation__msg__btn {

  padding: 0 ;
  border-radius: 4px; /* measured */
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.reservation__msg__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  font: inherit;
}
.reservation__msg__btn--primary {
  background: linear-gradient(180deg, #c15a12, #9c4508);
  border: 1.5px solid var(--main-color);
  color: #fff;
}
.reservation__msg__btn--primary:hover {
  background: var(--main-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(177, 75, 8, 0.35);
}
.reservation__msg__btn--outline {
  background: transparent;
  border: 1.5px solid var(--main-color);
  color: #f2e9de;
}
.reservation__msg__btn--outline:hover {
  background: rgba(177, 75, 8, 0.15);
  transform: translateY(-2px);
}

@keyframes reservationOverlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 700px) {
  #loginRequiredOverlay .reservation__msg {
    padding: 42px 32px;
    align-items: center;
    text-align: center;
  }
  .reservation__msg__header {
    flex-direction: column;
    gap: 19px;
  }
  .reservation__msg__lamp {
    width: 128px;
    height: 88px;
  }
  .reservation__msg__lamp-shade {
    width: 128px;
    height: 54px;
  }
  .reservation__msg__text {
    font-size: 34px;
    text-align: center;
  }
  .reservation__msg__divider {
    width: 90%;
  }
}

@media screen and (max-width: 460px) {
  #loginRequiredOverlay .btns__container {
    flex-direction: column;
    width: 100%;
  }
  .reservation__msg__btn {
    width: 100%;
  }
}
/* end "sign in required" reservation popup redesign */

/* end res.html redesign */
