
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body.modal-open {
    padding-right: 0 !important;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 1);
  border-bottom: 3px solid #044758;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  box-shadow: 0 1px 10px rgba(0,0,0,0.06);
}

.header_mob{
  display: none;
}

.header_logo_mob{
  display: none;
}

.header_logo {
  width: 835px;
  cursor: pointer;
}

.btn_head{
  width: 805px;
  display: flex;
  justify-content: space-between;
}
.header_nav {
  width: 390px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.header_nav a {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #044758;
  text-decoration: none;
  transition: filter 0.3s ease;
  margin: 0;
  cursor: pointer;
}

.header_nav a:hover {
  opacity: 0.7;
}

.reserve_btn {
  width: 185px;
  height: 54px;
  background: #BA7263;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.reserve_btn:hover{
  background: #a85d3a;

}

/* ===== HERO ===== */
.hero {
  height: 840px;
  background: url(/static/main/img/background_top.png) no-repeat;
  margin-top: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.hero_title {
  padding-top: 13.7%;
  text-align: center;
  font-size: 50px;
  line-height: normal;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

/* ===== BOOKING BAR ===== */
.booking_bar {
  width: 100%;
  background: rgba(4, 71, 88, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 100px;
  flex-wrap: wrap;
  gap: 10px;
}

.booking_bar_label {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

.booking_bar_right_box{
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.booking_bar_calendar_in{
  width: 168px;
  height: 54px;
  background-color: #FFFFFF;
  padding-left: 12px;
}

.booking_bar_calendar_out{
  width: 168px;
  height: 54px;
  background-color: #FFFFFF;
  padding-left: 12px;
}

.booking_bar_guest{
  width: 252px;
  height: 54px;
  background-color: #FFFFFF;
}

.booking_bar_right_box label{
  font-weight: 400;
  font-size: 14px;
  color: #044758;
}

.guest_dropdown_booking {
    display: none;
    position: relative;
    width: 252px;
    background: white;
    border: 1px solid #D9D9D9;
    border-top: none;
    padding: 15px;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
    box-sizing: border-box;
}

.guest_dropdown_booking.show {
    display: block;
}
.guest_booking_label {
    font-size: 14px;
    font-weight: 400;
    color: #044758;
    line-height: normal;
    letter-spacing: 0;
    padding-left: 12px;
    padding-top: 3px;
    margin-bottom: 5px;
}
.guest_value_set{
    padding-left: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #044758;
    font-weight: 700;
}



.find_price_btn{
  width: 155px;
  height: 54px;
  background: #BA7263;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.find_price_btn:hover{
  background: #a85d3a;
}

.find_price_btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 50px;
}

.section_title {
  line-height: normal;
  font-size: 38px;
  font-weight: 500;
  color: #1F3F44;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.section__subtitle {
  font-size: 14px;
  color: #666;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.section--left .section__subtitle {
  margin: 0 0 40px;
  max-width: 600px;
}

.btn-primary {
  display: inline-block;
  background: #c4704a;
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #a85d3a;
}

/* ===== ABOUT ===== */
.about {
  background: #fff;
  padding: 80px 50px 80px;
  text-align: center;
}

.about_text {
  line-height: normal;
  font-size: 16px;
  font-weight: 400;
  color: #044758;
  max-width: 1140px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
  background: #FFFFFF;
  padding: 54px 100px;
}

.features_mob{
  display: none;
}

.features_box {
  display: flex;
  justify-content: space-between;
}

.features_title h1 {
  font-size: 38px;
  font-weight: 500;
  color: #044758;
  text-transform: uppercase;
  line-height: 100%;
  max-width: 560px;
  margin-bottom: 37px;
  letter-spacing: 0;
}

.features_title p {
  line-height: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #044758;
  max-width: 560px;
  margin-bottom: 37px;
  letter-spacing: 0;
}

.pht_features_title {
  width: 560px;
  height: 420px;
  object-fit: cover;
  object-position: center;
}
.pht_features_mid {
  width: 560px;
  height: 704px;
  object-fit: cover;
  object-position: center;
}
.features_end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.pht_features_end {
  width: 560px;
  height: 461px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 46.5px;
}
.features_end p {
  line-height: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #044758;
  max-width: 560px;
  margin-bottom: 46.5px;
  letter-spacing: 0;
}
.features_end_btn {
  width: 162px;
  height: 54px;
  background: #BA7263;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.features_end_btn:hover{
  background: #a85d3a;
}

/* ===== ACTIVITIES ===== */
.activities {
  background: #FFFFFF;
  padding: 54px 100px;
}
.activities_box{
  
}

.activities_top{
  max-height: 349px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;

}

.activities h1 {
  font-size: 38px;
  font-weight: 500;
  color: #044758;
  text-transform: uppercase;
  line-height: 100%;
  max-width: 745px;
  margin-bottom: 40px;
  letter-spacing: 0;
}

.activities_top p {
  line-height: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #044758;
  max-width: 411px;
  letter-spacing: 0;
}
.col-pht{
  display: flex;
  flex-direction: column;
}
.pht_activ_top_bot {
  object-fit: cover;
  object-position: center;
}
.pht1{
  width: 561px;
  height: 312px;
}
.pht2{
  width: 271px;
  height: 203px;
}
.pht3{
  width: 415px;
  height: 312px;
}
.pht4{
  width: 703px;
  height: 312px;
}
.pht5{
  width: 269px;
  height: 203px;
}

.col-pht h2{
  font-weight: 500;
  font-size: 24px;
  color: #044758;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 20px;
}
.activities_bot{
  max-height: 349px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}


/* ===== CTA BANNER ===== */
.cta_banner {
  height: 336px;
  background: url(/static/main/img/background_mid.png) no-repeat;
  padding: 98px 100px;
}

.cta_banner_title {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 32px;
  max-width: 1048px;
}

.cta_banner_text {
  font-size: 24px;
  color: #FFFFFF;
  max-width: 828px;
  line-height: 100%;
  letter-spacing: 0;
  margin: 0;
}



/* ===== LOCATION ===== */
.location {
  background: #fff;
  padding: 54px 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.location_title{
  font-size: 38px;
  font-weight: 500;
  color: #044758;
  text-transform: uppercase;
  line-height: 100%;
  max-width: 995px;
  margin-bottom: 40px;
  letter-spacing: 0;
}
.location_text {
  max-width: 995px;
  font-size: 16px;
  color: #044758;
  line-height: 120%;
  letter-spacing: 0;
  margin-bottom: 40px;
}

/*  =====  Yandex map  =====  */

.yandex_map{
  height: 474px;

}

/* ===== REVIEWS ===== */
.reviews {
  background: #fff;
  padding: 54px 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.reviews_left_side_box{
  max-width: 705px;
}
.reviews_title{
  font-size: 38px;
  font-weight: 500;
  color: #044758;
  text-transform: uppercase;
  line-height: 100%;
  margin-bottom: 40px;
  letter-spacing: 0;
}
.reviews_text {
  font-size: 16px;
  color: #044758;
  line-height: 120%;
  letter-spacing: 0;
}
.reviews_right_side_box{
  width: 705px;

}
.centered_container {
  width: 705px;
  height: 444px;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
}

/* ===== PRE-FOOTER ===== */

.pre_footer{
  height: 292px;
  padding-top: 48px;
  display: flex;
  justify-content: center;
  background: url(/static/main/img/background_bot.png) no-repeat;
}

/* ===== FOOTER ===== */
.footer {
  background: #044758;
  padding: 54px 100px 42px 100px;
}
.footer_box{
  display: flex;
  flex-direction: column;
}
.footer_top{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer_contacts{
  display: flex;
  flex-direction: column;
}
.footer_contacts .footer_number,
.footer_contacts .footer_max,
.footer_contacts .footer_vk {
  display: flex;
  flex-direction: row;
  margin-bottom: 18px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer_number:hover,
.footer_max:hover,
.footer_vk:hover{
  transform: scale(1.1);
}

.footer_contacts_title{
  margin: 0 0 24px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  color: #FFFFFF;
}
.footer_contacts_text{
  margin: 0 0 0 8px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
}
.footer_info{
  display: flex;
  flex-direction: row;
}
.footer_info .footer_info_left,
.footer_info .footer_info_right{
  display: flex;
  flex-direction: column;
}
.footer_info_text{
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 100%;
  letter-spacing: 0;
  margin-bottom: 18px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.footer_info .footer_info_text:hover{
  text-decoration: underline;
}

.footer_number_link,
.footer_max_link,
.footer_vk_link {
    text-decoration: none;
    display: block;
}


.in_lf{
  max-width: 232px;
}
.in_rt{
  max-width: 340px;
}
.footer_metrik{
  width: 90px;
  height: 30px;
}
.footer_bot{
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.feedback_table_box{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feedback_fullName_box{
  width: 400px;
  height: 97px;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feedback_mobile_box{
  width: 400px;
  height: 97px;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feedback_mail_box{
  width: 400px;
  height: 97px;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feedback_text{
  width: 400px;
  height: 200px;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feedback_table_box textarea{
    border: 1px solid #D9D9D9;
    padding: 0;
}

textarea::placeholder {
    color: #044758;
    padding-left: 40px;
    padding-top: 5px;
}

textarea:focus {
    outline: 1px solid #C4C4C4;
}

.feedback_table_box label{
    font-size: 16px;
    font-weight: 400;
    color: #044758;
    text-transform: uppercase;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.feedback_table_box input{
    border: 1px solid #D9D9D9;
    height: 40px;
}
input::placeholder {
    color: #044758;
    padding-left: 40px;
}
input:focus {
    outline: 1px solid #C4C4C4;
}

.btns_main_box{
  display: flex;
  flex-direction: row;
  gap: 20px;
}