@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Montserrat:wght@300;700&display=swap');

/* -------------------- RESET -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* -------------------- BASE STYLES -------------------- */
body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to bottom, #ede7e7 0%, #f7f5ef 100%);
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

p, li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

ul {
  padding-left: 20px;
}

html {
  scroll-behavior: smooth;
}

/* -------------------- NAVIGATION -------------------- */
.main-menu {
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;
    font-weight: 300;
    z-index: 100;
    background-color: #ede7e7cc; /* полупрозрачный фон */
    backdrop-filter: blur(6px);  /* размываем фон */
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .main-menu ul {
    list-style: none;
    display: inline-flex;
    gap: 40px;
    padding: 0;
    margin: 0;
  }
  
  .main-menu a {
    text-decoration: none;
    font-size: 16px;
    color: #444;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
  }
  
  .main-menu a:hover {
    color: #a08e80;
  }
  .menu-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
  }
  
  .menu-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
    color: #777;
    line-height: 1.4;
  }
  .burger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #444;
  }
  
  /* Стили только для мобильных */
  @media (max-width: 768px) {
    .burger {
      display: block;
    }
  
    .menu-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
      align-items: flex-start; /* выравниваем влево */
      text-align: left;
      padding-left: 20px;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-info {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-end;   /* выравниваем вправо */
      text-align: right;
      font-size: 13px;
      margin-top: 10px;
      padding-right: 20px;
    }
  }
/* -------------------- HERO -------------------- */
.hero {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 600px;
  background-color: #f7f5ef;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 20px auto 20px auto;
}

/* -------------------- LOGO -------------------- */
.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 10px 30px;
  border-radius: 15px;
  transition: transform 0.3s ease-out;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-box {
  width: 80px;
  height: 80px;
  background-image: url('images/logo.png');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.subtext {
  font-size: 18px;
  font-weight: 300;
  color: #555;
}

/* -------------------- IMAGE BOXES -------------------- */
.image-box {
  position: absolute;
  width: 20%;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.8);
  animation: none;  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}
.img2, .img4, .img6 {
    cursor: pointer;
  }
.image-box:hover {
  transform: scale(1.2) translateY(-4px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* -------------------- IMAGE POSITIONS -------------------- */
.img1 { top: 10%; left: 5%; aspect-ratio: 1 / 1; background-image: url('images/main_1.JPEG'); }
.img2 { top: 5%; left: 40%; aspect-ratio: 1 / 1; background-image: url('images/main_2.png'); }
.img3 { top: 10%; right: 5%; aspect-ratio: 1 / 1; background-image: url('images/main_3.JPEG'); }
.img4 { bottom: 10%; left: 5%; aspect-ratio: 1 / 1; background-image: url('images/main_4.jpg'); }
.img5 { bottom: 5%; left: 40%; aspect-ratio: 1 / 1; background-image: url('images/main_5.jpg'); }
.img6 { bottom: 10%; right: 5%; aspect-ratio: 1 / 1; background-image: url('images/main_6.jpg'); }

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 768px) {
  .hero {
    height: 500px;
  }

  .image-box {
    width: 25%;
  }


  .about-split {
    flex-direction: column;
  }

  .about-text,
  .opening-hours {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 650px;
  }

  .image-box {
    width: 30%;
  }

}

/* -------------------- SECTIONS -------------------- */
.section {
  padding: 20px 20px;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 20px;
  text-align: center;
  background-color: transparent;
}

.section h2 {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  margin-top: 0;
  margin-bottom: 12;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid #a08e80;
  color: #3d3d3d;
}

.section h3 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 6px;
  color: #a08e80;
  font-weight: 600;
  text-align: left;
}

.section p,
.section li {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  color: #333;
  text-align: left;
}

.booking-widget {
  background-color: #f3f2f0;
  padding: 20px;
  border-radius: 10px;
  border: 1px dashed #ccc;
  margin-top: 12px;
  margin-bottom: 4px;
}


.booking-widget iframe {
  width: 100%;
  height: 1000px;
  border: none;
  border-radius: 10px;
}

.rating-top {
  max-width: 1000px;
  width: 90%;
  margin: 40px auto -40px auto; /* прижимаем к .hero */
  padding-top: 60px;          /* не слишком далеко от меню */
  text-align: left;
  position: relative;
  z-index: 1;
}

.custom-rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.rating-score {
  font-size: 32px;
  font-weight: 700;
  color: #e6ac00;
  line-height: 1;
}

.rating-stars {
  font-size: 24px;
  color: #e6ac00;
  letter-spacing: 1px;
  line-height: 1;
}

.rating-count {
  font-size: 14px;
  color: #777;
  font-weight: 300;
  margin-left: 8px;
}

@media (max-width: 480px) {
  .rating-score {
    font-size: 32px;
  }

  .rating-stars {
    font-size: 24px;
  }

  .rating-count {
    font-size: 14px;
  }
}
blockquote {
  font-style: italic;
  margin: 20px 0;
  padding: 10px 20px;
  border-left: 4px solid #a08e80;
  background-color: #f7f5ef;
  border-radius: 5px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

blockquote p {
  margin: 0;
}

cite {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

.button.small {
  font-size: 14px;
  padding: 8px 20px;
  background-color: transparent;
  color: #a08e80;
  border: 1px solid #a08e80;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.button.small:hover {
  background-color: #a08e80;
  color: #fff;
}

/* -------------------- ABOUT SPLIT -------------------- */
.about-split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.about-text {
  flex: 1 1 55%;
  text-align: left;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.about-list li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.about-list strong {
  font-weight: 600;
  color: #a08e80;
}

.opening-hours {
  flex: 1 1 35%;
  background-color: #f3f2f0;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.opening-hours h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.opening-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.opening-hours li span {
  font-weight: 600;
  color: #a08e80;
}
.site-footer {
    background-color: #ede7e7;
    text-align: center;
    font-size: 14px;
    color: #555;
    padding: 24px 20px;
    border-top: 1px solid #ddd;
  }
  
  .site-footer p {
    margin: 0;
    letter-spacing: 0.3px;
  }
  
  .site-footer a {
    color: #a08e80;
    text-decoration: none;
    font-weight: 600;
  }
  
  .site-footer a:hover {
    text-decoration: underline;
  }
  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    text-align: left;
  }
  
  .contact-link {
    font-size: 16px;
    color: #a08e80;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-link:hover {
    color: #7a6b60;
    text-decoration: underline;
  }
  .rating-link {
    text-decoration: none;
    display: block;
  }
  
  .rating-link:hover .custom-rating {
    opacity: 0.9;
    transform: scale(1.01);
    transition: 0.3s ease;
    cursor: pointer;
  }


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Montserrat:wght@300;700&display=swap');

/* -------------------- RESET -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to bottom, #ede7e7 0%, #f7f5ef 100%);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* -------------------- NAVIGATION -------------------- */
.main-menu {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ede7e7cc;
  backdrop-filter: blur(6px);
  padding: 16px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 100;
}

.menu-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}


.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links li a {
  font-size: 16px;
  color: #444;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #a08e80;
}

.menu-info {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  text-align: right;
  color: #555;
}

/* ----- БУРГЕР (по умолчанию скрыт) ----- */
.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  top: 18px;
  left: 20px;
  background: none;
  border: none;
  color: #333;
}

/* ----- Стили иконки крестика (если используем 3 полоски) ----- */
.burger-lines {
  width: 28px;
  height: 2px;
  background-color: #333;
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

.burger-lines::before,
.burger-lines::after {
  content: '';
  width: 28px;
  height: 2px;
  background-color: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.burger-lines::before {
  top: -8px;
}

.burger-lines::after {
  top: 8px;
}

/* ----- Анимация крестика ----- */
.burger.open .burger-lines {
  background-color: transparent;
}

.burger.open .burger-lines::before {
  transform: rotate(45deg);
  top: 0;
}

.burger.open .burger-lines::after {
  transform: rotate(-45deg);
  top: 0;
}


@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .main-menu ul {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .main-menu.active ul {
    display: flex;
  }

  .menu-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;   /* выравниваем вправо */
    text-align: right;
    font-size: 13px;
    margin-top: 10px;
    padding-right: 20px;
  }
}

/* -------------------- HERO -------------------- */
.hero {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 600px;
  background-color: #f7f5ef;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 60px auto 20px auto;
}

.image-box {
  position: absolute;
  width: 20%;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.8);
  animation: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
  aspect-ratio: 1 / 1;
}

.image-box:hover {
  transform: scale(1.2) translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.img1 { top: 10%; left: 5%; background-image: url('images/main_1.JPEG'); }
.img2 { top: 5%; left: 40%; background-image: url('images/main_2.png'); }
.img3 { top: 10%; right: 5%; background-image: url('images/main_3.JPEG'); }
.img4 { bottom: 10%; left: 5%; background-image: url('images/main_4.jpg'); }
.img5 { bottom: 5%; left: 40%; background-image: url('images/main_5.jpg'); }
.img6 { bottom: 10%; right: 5%; background-image: url('images/main_6.jpg'); }

@media (max-width: 480px) {
  .hero {
    height: 500px;
  }

  .image-box {
    width: 28%;
    aspect-ratio: 1 / 1;
  }

  /* Скрываем img2 и img5 */
  .img2,
  .img5 {
    display: none;
  }

  /* Расставим оставшиеся */
  .img1 { top: 5%; left: 10%; }
  .img3 { top: 5%; right: 10%; }
  .img4 { bottom: 5%; left: 10%; }
  .img6 { bottom: 5%; right: 10%; }
}
@media (max-width: 480px) {
  #book {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }

  .booking-widget {
    border-radius: 0;
    padding: 0;
    margin: 0;
    border: none;
  }

  .booking-widget iframe {
    height: 600px;
    border-radius: 0;
  }
}