:root {
  color-scheme: light;
  --page-width: 1120px;
  --pink: #e84368;
  --orange: #f26a00;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff8f4;
  font-family: Arial, Helvetica, sans-serif;
}

.booking-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(36, 31, 33, 0.12);
  backdrop-filter: blur(10px);
}

.brand-link {
  flex: 0 0 auto;
  display: block;
  width: 118px;
}

.brand-link img {
  display: block;
  width: 100%;
  height: auto;
}

.booking-bar span {
  flex: 0 0 auto;
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-bar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.booking-bar nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.poster {
  position: relative;
  width: min(100%, var(--page-width));
  margin: 0 auto;
  background: #fff;
}

.poster img {
  display: block;
  width: 100%;
  height: auto;
}

.anchor {
  position: absolute;
  top: var(--top);
  left: 0;
  width: 1px;
  height: 1px;
  scroll-margin-top: 88px;
}

.offer-link,
.reserve-link {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 4px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.offer-link:focus-visible,
.reserve-link:focus-visible {
  outline: 3px solid rgba(114, 69, 121, 0.75);
  outline-offset: 3px;
}

.offer-link {
  top: 16.4%;
  width: 20%;
  height: 8.1%;
}

.offer-1 {
  left: 5.4%;
}

.offer-2 {
  left: 28%;
}

.offer-3 {
  left: 50.8%;
}

.offer-4 {
  left: 73.5%;
}

.reserve-link {
  left: 62.2%;
  width: 20.8%;
  height: 1.55%;
}

.reserve-1 {
  top: 35.32%;
}

.reserve-2 {
  top: 47.82%;
}

.reserve-3 {
  top: 60.32%;
}

.reserve-4 {
  top: 72.82%;
}

@media (max-width: 720px) {
  .booking-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .brand-link {
    align-self: center;
    width: 132px;
  }

  .booking-bar span {
    text-align: center;
  }

  .booking-bar nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .booking-bar nav a {
    width: 100%;
    min-width: 0;
    padding-inline: 8px;
    font-size: 12px;
  }

  .anchor {
    scroll-margin-top: 126px;
  }
}
