/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

body {
  font-family: 'Open Sans';
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 16px;
  }
}

/* LATO REGULAR */
@font-face {
  font-family: 'Lato';
  src: url('/fontsHPNYB0f/lato-regularHPNYB0f.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* LATO BOLD */
@font-face {
  font-family: 'Lato';
  src: url('/fontsHPNYB0f/lato-boldHPNYB0f.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* PLAYFAIR DISPLAY VARIABLE */
@font-face {
  font-family: 'Playfair Display';
  src: url('/fontsHPNYB0f/playfairdisplay-variablefontHPNYB0f.woff2')
    format('woff2-variations');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

.headerHPNYB0f {
  padding: 10px 16px 24px;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-innerHPNYB0f {
  display: flex;
  align-items: center;
  justify-content: space-between;

  border-radius: 22px;
  background: #fff6d2;
  box-shadow: 0 9px 11.4px 0 rgba(141, 71, 24, 0.11);

  padding: 16px 32px;
}

.logoHPNYB0f {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logoHPNYB0f img {
  width: 48px;
  height: 48px;
}

.logoHPNYB0f p {
  color: #3b2a16;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
}

.nav-listHPNYB0f {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-listHPNYB0f a {
  color: var(--button, #f47a28);
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.burgerHPNYB0f {
  position: relative;
  width: 36px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;

  display: none;

  z-index: 1001;
}

.burgerHPNYB0f span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;

  background-color: #f47a28;
  border-radius: 4px;

  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.burgerHPNYB0f span:nth-child(1) {
  top: 0;
}

.burgerHPNYB0f span:nth-child(2) {
  top: 12px;
}

.burgerHPNYB0f span:nth-child(3) {
  top: 24px;
}

.burgerHPNYB0f.active span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}

.burgerHPNYB0f.active span:nth-child(2) {
  opacity: 0;
}

.burgerHPNYB0f.active span:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .burgerHPNYB0f {
    display: block;
  }
  .nav-listHPNYB0f {
    flex-direction: column;
  }

  .navHPNYB0f {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #fff6d2;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    padding: 100px 24px 24px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .navHPNYB0f.open {
    right: 0;
  }

  .header-innerHPNYB0f {
    border-radius: 0;
  }
  .headerHPNYB0f {
    padding: 0;
  }
}

.heroHPNYB0f {
  position: relative;
  padding: 220px 16px 140px;
  background: url('/imagesHPNYB0f/hero-bgHPNYB0f.webp') center / cover no-repeat;
  overflow: hidden;
}

.hero-innerHPNYB0f {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.hero-titleHPNYB0f {
  margin: 0;
  color: var(--black, #372013);
  text-align: center;
  font-family: 'Playfair Display';
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-textHPNYB0f {
  margin: 16px 0 28px;
  color: var(--black, #372013);
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
}

.hero-btnHPNYB0f {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 318px;
  padding: 12px 40px;

  border-radius: 13px;
  border: 1px solid var(--stroke, #8d4718);
  background: #f47a28;
  box-shadow: 0 4px 0 0 #8d4718;

  color: #fff;
  font-family: Lato;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.hero-decorHPNYB0f {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-pizzaHPNYB0f {
  width: 269.703px;
  height: 213.169px;
  left: -194px;
  top: -113px;
  transform: rotate(-20.67deg);
}

.hero-gondolaHPNYB0f {
  width: 255px;
  height: 170px;
  left: -80px;
  top: 132px;
}

.hero-bikeHPNYB0f {
  width: 369px;
  height: 246px;
  right: -200px;
  top: -129px;
  transform: rotate(-16.21deg);
}

.hero-iceHPNYB0f {
  width: 105.438px;
  height: 158.158px;
  right: -27px;
  bottom: -47px;
  transform: rotate(11.321deg);
}

@media (max-width: 1200px) {
  .heroHPNYB0f {
    padding: 200px 16px 120px;
  }

  .hero-pizzaHPNYB0f {
    width: 220px;
    left: -140px;
    top: -90px;
  }

  .hero-gondolaHPNYB0f {
    width: 210px;
    left: -60px;
    top: 140px;
  }

  .hero-bikeHPNYB0f {
    width: 300px;
    right: -150px;
    top: -90px;
  }

  .hero-iceHPNYB0f {
    width: 90px;
    right: -20px;
    bottom: -35px;
  }
}

@media (max-width: 1135px) {
  .hero-decorHPNYB0f {
    display: none;
  }
  .heroHPNYB0f {
    padding: 180px 16px 110px;
  }

  .hero-titleHPNYB0f {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .heroHPNYB0f {
    padding: 80px 16px 100px;
  }

  .hero-titleHPNYB0f {
    margin-top: 20px;
  }

  .hero-textHPNYB0f {
    font-size: 15px;
  }

  .hero-decorHPNYB0f {
    display: none;
  }
}

.toursHPNYB0f {
  background: #fff6d2;
  padding: 80px 16px;
}

.containerHPNYB0f {
  max-width: 1280px;
  margin: 0 auto;
}

.tours-titleHPNYB0f {
  margin-bottom: 48px;
  text-align: center;
  color: var(--black, #372013);
  font-family: 'Playfair Display';
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.tours-listHPNYB0f {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tour-cardHPNYB0f {
  background: #fffcf0;
  border: 1px solid #8d4718;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tour-imgHPNYB0f {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tour-contentHPNYB0f {
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-cityHPNYB0f {
  margin-bottom: 6px;
  color: var(--black, #372013);
  text-shadow: 0 5px 13px rgba(255, 255, 255, 0.4);
  font-family: 'Playfair Display';
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
}

.tour-subtitleHPNYB0f {
  margin-bottom: 14px;
  color: var(--black, #372013);
  font-family: 'Playfair Display';
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.tour-featuresHPNYB0f {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tour-featuresHPNYB0f li {
  display: flex;
  gap: 12px;
  font-family: Lato;
  font-size: 16px;
  color: #372013;
}

.tour-featuresHPNYB0f img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.tour-btnHPNYB0f {
  margin-top: auto;
  padding: 14px 20px;
  border-radius: 12px;
  background: #f47a28;
  box-shadow: 0 4px 0 #8d4718;
  text-align: center;
  color: #fff;
  font-family: Lato;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .tours-listHPNYB0f {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tours-listHPNYB0f {
    grid-template-columns: 1fr;
  }

  .tour-imgHPNYB0f {
    height: 200px;
  }
}

.galleryHPNYB0f {
  background: #fff6d2;
  padding: 80px 16px;
}

.gallery-containerHPNYB0f {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-titleHPNYB0f {
  text-align: center;
  margin-bottom: 48px;
  color: #372013;
  font-family: 'Playfair Display';
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-layoutHPNYB0f {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-radius: 12px;
  border: 1px solid #8d4718;
  background: #fffcf0;
  padding: 24px;
}

.gallery-mainHPNYB0f {
  border-radius: 12px;
  overflow: hidden;
}

.gallery-mainImgHPNYB0f {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.gallery-thumbsHPNYB0f {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 12px 0;
  margin: 0;
}

.gallery-thumbsHPNYB0f li {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}

.gallery-thumbsHPNYB0f li.active {
  border-color: #f47a28;
}

.gallery-thumbsHPNYB0f img {
  width: 90px;
  height: 70px;
  object-fit: cover;
}

.gallery-navHPNYB0f {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.gallery-btnHPNYB0f {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  border: 1px solid #8d4718;
  background: #f47a28;
  box-shadow: 0 4px 0 #8d4718;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.gallery-textHPNYB0f {
  color: #372013;
  font-family: Lato;
  font-size: 16px;
  margin-bottom: 20px;
}

.gallery-cardsHPNYB0f {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-cardHPNYB0f {
  border-radius: 12px;
  border: 1px solid #8d4718;
  background: #fff6d2;
  padding: 16px;
  text-align: center;
}

.gallery-cardHPNYB0f img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.gallery-cardHPNYB0f p {
  color: #372013;
  font-family: Lato;
  font-size: 16px;
}

.gallery-thumbsHPNYB0f li {
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-thumbsHPNYB0f li.active {
  opacity: 1;
  transform: scale(1.05);
  outline: 2px solid #f47a28;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .gallery-layoutHPNYB0f {
    grid-template-columns: 1fr;
  }

  .gallery-cardsHPNYB0f {
    grid-template-columns: 1fr;
  }

  .gallery-mainImgHPNYB0f {
    height: 260px;
  }
  .gallery-thumbsHPNYB0f {
    justify-content: center;
  }
}

.contactHPNYB0f {
  background: #fff6d2;
  padding: 56px 16px 64px;
}

.contact-wrapHPNYB0f {
  max-width: 1240px;
  margin: 0 auto;
}

.contact-titleHPNYB0f {
  margin: 0 0 28px;
  text-align: center;
  color: #372013;
  font-family: 'Playfair Display';
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-gridHPNYB0f {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.contact-formHPNYB0f {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-inputHPNYB0f {
  height: 66px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid #8d4718;
  background: #fffcf0;
  color: #372013;
  font-family: Lato;
  font-size: 16px;
  outline: none;
}

.contact-inputHPNYB0f::placeholder {
  color: #372013;
  opacity: 1;
}

.contact-rowHPNYB0f {
  display: grid;
  grid-template-columns: 1fr 176px;
  gap: 14px;
  align-items: stretch;
  position: relative;
}

.contact-dateBtnHPNYB0f {
  width: 100%;
  height: 66px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid #8d4718;
  background: #fffcf0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #372013;
  font-family: Lato;
  font-size: 16px;
}

.contact-dateIconHPNYB0f img {
  width: 22px;
  height: 22px;
}

.contact-counterHPNYB0f {
  height: 66px;
  border-radius: 12px;
  border: 1px solid #8d4718;
  background: #fffcf0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 14px;
}

.counterBtnHPNYB0f {
  width: 48px;
  height: 40px;
  border-radius: 13px;
  border: 1px solid #8d4718;
  background: #f47a28;
  box-shadow: 0 4px 0 0 #8d4718;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

.counterValueHPNYB0f {
  width: 28px;
  text-align: center;
  color: #372013;
  font-family: Lato;
  font-size: 16px;
}

.contact-submitHPNYB0f {
  height: 72px;
  border-radius: 13px;
  border: 1px solid #8d4718;
  background: #f47a28;
  box-shadow: 0 4px 0 0 #8d4718;
  color: #fff;
  font-family: Lato;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.contact-successHPNYB0f {
  margin-top: 6px;
  color: #372013;
  font-family: Lato;
  font-size: 16px;
}

.contact-visualHPNYB0f img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.calOverlayHPNYB0f {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  max-width: 360px;
  z-index: 20;
  display: none;
}

.calOverlayHPNYB0f.active {
  display: block;
}

.calBoxHPNYB0f {
  background: #fffcf0;
  border: 1px solid #8d4718;
  border-radius: 18px;
  padding: 18px 16px 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.calHeadHPNYB0f {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.calNavBtnHPNYB0f {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #8d4718;
  background: #f47a28;
  box-shadow: 0 3px 0 0 #8d4718;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.calMonthHPNYB0f {
  text-align: center;
  color: #372013;
  font-family: Lato;
  font-size: 18px;
}

.calWeekHPNYB0f {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 10px;
  text-align: center;
  font-size: 13px;
  color: #372013;
}

.calGridHPNYB0f {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calGridHPNYB0f li {
  height: 40px;
  display: grid;
  place-items: center;
  font-family: Lato;
  font-size: 16px;
  color: #372013;
  border-radius: 10px;
  cursor: pointer;
}

.calGridHPNYB0f li.muted {
  opacity: 0.25;
  cursor: default;
}

.calGridHPNYB0f li.inRange {
  background: rgba(244, 122, 40, 0.18);
  border-radius: 0;
}

.calGridHPNYB0f li.start,
.calGridHPNYB0f li.end {
  background: #f47a28;
  color: #fff;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .contact-gridHPNYB0f {
    grid-template-columns: 1fr;
  }

  .contact-visualHPNYB0f {
    display: none;
  }

  .contact-rowHPNYB0f {
    grid-template-columns: 1fr;
  }
}

.contact-dateHPNYB0f {
  position: relative;
  z-index: 5;
}

.calOverlayHPNYB0f {
  z-index: 999;
}

.footerHPNYB0f {
  background: #fff6d2;
  padding: 26px 16px 28px;
}

.footer-wrapHPNYB0f {
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid #8d4718;
  padding-top: 26px;
  padding: 26px;
}

.footer-gridHPNYB0f {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  align-items: start;
}

.footer-leftHPNYB0f {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
  justify-items: start;
}

.footer-logoHPNYB0f {
  width: 126px;
  height: 110px;
  object-fit: contain;
  display: block;
}

.footer-textHPNYB0f,
.footer-copyHPNYB0f {
  margin: 0;
  color: #372013;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-copyHPNYB0f {
  margin-top: 28px;
}

.footer-rightHPNYB0f {
  display: grid;
  grid-template-rows: auto 1fr auto;
  row-gap: 28px;
  justify-items: end;
  height: 100%;
}
.footer-navHPNYB0f {
  align-self: end;
}

.footer-contactsHPNYB0f {
  display: grid;
  row-gap: 18px;
  justify-items: start;
}

.footer-contactHPNYB0f {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #372013;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-iconHPNYB0f {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 auto;
}

.footer-iconHPNYB0f img {
  width: 40px;
  height: 40px;
  display: block;
}

.footer-navHPNYB0f {
  justify-self: end;
}

.footer-navListHPNYB0f {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 44px;
  align-items: center;
  justify-content: flex-end;
}

.footer-linkHPNYB0f {
  text-decoration: none;
  color: #f47a28;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-linkHPNYB0f:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-gridHPNYB0f {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .footer-rightHPNYB0f {
    justify-items: start;
    row-gap: 20px;
  }

  .footer-contactsHPNYB0f {
    justify-items: start;
  }

  .footer-navListHPNYB0f {
    flex-wrap: wrap;
    gap: 16px 26px;
    justify-content: center;
  }

  .footer-navHPNYB0f {
    width: 100%;
  }

  .footer-copyHPNYB0f {
    margin-top: 10px;
  }
}

.terms {
  background-color: #fff6d2;
  padding: 132px 0;
}

.terms h1 {
  color: #372013;
  text-align: center;
  font-family: 'Playfair Display';
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.terms h2 {
  color: #372013;
  font-family: 'Playfair Display';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.terms p,
ul {
  color: #372013;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
}

.terms ul,
.terms ul li {
  list-style-type: disc;
  margin-left: 15px;
}
