* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
a {
  text-decoration: none;
  color: white;
}
li{
  list-style: none;
}
body {
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #ffffff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-header-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    max-width: none;
    padding: 0 20px;
    margin: 0 auto;
}


@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.modal-title {
  margin-bottom: 20px;
  color: #2c7da0;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.submit-btn {
  background-color: #65e7d9;
  color: #333;
  border: none;
  padding: 12px 30px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #4fd1c5;
}
footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-map {
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}

.footer-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.contact-item i {
  margin-right: 15px;
  font-size: 20px;
  color: #65e7d9;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  color: white;
  font-size: 24px;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: #65e7d9;
}

.sitemap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sitemap-column h3 {
  margin-bottom: 20px;
  color: #65e7d9;
}

.sitemap-links {
  list-style: none;
}

.sitemap-links li {
  margin-bottom: 10px;
}

.sitemap-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.sitemap-links a:hover {
  color: #65e7d9;
}

@media screen and (max-width: 992px) {
  .news-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .news-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .sitemap {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 992px) {
  .advantages-grid,
  .specialists-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide {
    height: 60vh;
  }
}

@media screen and (max-width: 768px) {




  .banner h1 {
    font-size: 36px;
  }

  .banner p {
    font-size: 18px;
  }

  .slide {
    height: 50vh;
    min-height: 400px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 576px) {
  .advantages-grid,
  .specialists-grid {
    grid-template-columns: 1fr;
  }

  .logo h1 {
    font-size: 20px;
  }

  .logo p {
    font-size: 12px;
  }



  .slide {
    height: 40vh;
    min-height: 300px;
  }

  .slider-title {
    font-size: 28px;
  }

  .action-btn {
    padding: 12px 30px;
    font-size: 16px;
  }
}
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* NO CHANGE */

.accommodation-content {
  padding: 60px 0 80px;
  background-color: #fff;
}

.accommodation-header {
  text-align: center;
  margin-bottom: 60px;
}

.accommodation-header h2 {
  font-size: 36px;
  color: #2c7da0;
  margin-bottom: 20px;
  position: relative;
  margin-top: 120px;
}

.accommodation-header h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #2c7da0;
  margin: 15px auto 0;
}

.accommodation-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.room-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.room-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.room-image {
  height: 250px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-info {
  padding: 20px;
}

.room-title {
  font-size: 22px;
  color: #2c7da0;
  margin-bottom: 15px;
  font-weight: 600;
}

.room-features {
  margin-bottom: 15px;
}

.room-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  
}

.room-features i {
  color: #65e7d9;
  margin-right: 10px;
}

.room-packages {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.room-packages h4 {
  color: #2c7da0;
  margin-bottom: 10px;
  font-size: 16px;
}

.package-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px dashed #ddd;
}

.package-item:last-child {
  border-bottom: none;
}

.comparison-section {
  background-color: #f8f9fa;
  padding: 50px 0;
  border-radius: 12px;
  margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    table-layout: fixed; 
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #dee2e6;
    word-wrap: break-word; 
}

.comparison-table th {
  background-color: #2c7da0;
  color: white;
  font-weight: 500;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover {
  background-color: #f5f5f5;
}

.feature-present {
  color: #4caf50;
  font-weight: bold;
}

.feature-absent {
  color: #f44336;
}

@media screen and (max-width: 768px) {
  .room-types {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
  }

  .accommodation-header h2 {
    font-size: 30px;
  }

  .accommodation-description {
    font-size: 16px;
    padding: 0 20px;
  }
}

.room-types {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.room-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.room-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.room-info {
    padding: 25px;

}

.room-title {
    color: #2c7da0;
    margin-bottom: 20px;
    font-size: 24px;
}

.room-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.room-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.room-features li:last-child {
    border-bottom: none;
}

.room-features i {
    color: #4caf50;
    margin-right: 10px;
    width: 20px;
}

.room-packages {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.room-packages h4 {
    margin-bottom: 15px;
    color: #2c7da0;
}

.package-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.package-item:last-child {
    border-bottom: none;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #dee2e6;
}

.comparison-table th {
    background: #2c7da0;
    color: white;
    font-weight: 600;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: #f8f9fa;
    width: 25%;
}

.feature-present {
    color: #4caf50;
    font-weight: bold;
}

.feature-absent {
    color: #dc3545;
    font-weight: bold;
}

@media (max-width: 768px) {
    .room-card {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 14px;
    }
}
.room-search-widget {
    background: linear-gradient(135deg, #2c7da0 0%, #1a5d7a 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.room-search-widget .search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.room-search-widget .search-group {
    display: flex;
    flex-direction: column;
}

.room-search-widget label {
    color: white;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.room-search-widget .input-field {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    background: white;
}

.room-search-widget .search-btn {
    background-color: #65e7d9;
    color: #333;
    border: 2px solid #2c3e50;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    height: 44px;
    font-size: 16px;
}

.room-search-widget .search-btn:hover {
    background-color: #4fd1c5;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .room-search-widget .search-form {
        grid-template-columns: 1fr;
    }
    
    .room-search-widget {
        padding: 20px;
        margin: 30px 0;
    }
}





.room-card {
    display: grid;
    grid-template-columns: 4fr 3fr;
    gap: 30px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.room-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
    height: 100%;
}

.room-slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.room-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.room-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
    pointer-events: none;
}

.room-slider-btn {
    background-color: rgba(44, 125, 160, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    pointer-events: auto;
}

.room-slider-btn:hover {
    background-color: rgba(26, 93, 122, 0.9);
    transform: scale(1.1);
}

.room-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.room-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-slider-dot.active {
    background-color: white;
    transform: scale(1.2);
}


@media (max-width: 768px) {
    .room-card {
        grid-template-columns: 1fr;
    }
    
    .room-slider {
        border-radius: 15px 15px 0 0;
        height: 250px;
    }
    
    .room-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .room-info {
        padding: 20px;
    }
}

.room-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.room-title {
    color: #2c7da0;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.room-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.room-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.room-features li:last-child {
    border-bottom: none;
}

.room-features i {
    color: #4caf50;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.room-packages {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.room-packages h4 {
    margin-bottom: 15px;
    color: #2c7da0;
    font-size: 18px;
}

.package-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.package-item:last-child {
    border-bottom: none;
}

.food-slider-section {
    margin: 80px 0 60px;
    background: #fff;
}

.food-slider-header {
    text-align: center;
    margin-bottom: 40px;
}

.food-slider-header h2 {
    font-size: 36px;
    color: #2c7da0;
    margin-bottom: 20px;
    position: relative;
}

.food-slider-header h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #2c7da0;
    margin: 15px auto 0;
}

.food-slider-container {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.food-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.food-slides-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.food-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.food-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.food-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(44, 125, 160, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    z-index: 10;
}

.food-slider-btn:hover {
    background-color: rgba(26, 93, 122, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.food-prev-btn {
    left: 20px;
}

.food-next-btn {
    right: 20px;
}


@media (max-width: 768px) {
    .food-slider {
        height: 400px;
    }
    
    .food-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .food-prev-btn {
        left: 10px;
    }
    
    .food-next-btn {
        right: 10px;
    }
    
    .food-slider-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .food-slider {
        height: 300px;
    }
    
    .food-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .food-slider-header h2 {
        font-size: 28px;
    }
}
.food-slider-section .container{
  max-width: 100%;
}


.comparison-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    margin-top: 40px;
    width: 100%;
}

.comparison-section .container {
    width: 100%;
    max-width: 100vw;
    padding: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #dee2e6;
}

.comparison-table th {
    background: #2c7da0;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: #f8f9fa;
    width: 25%;
}

.comparison-table tr:hover {
    background-color: #f5f5f5;
}

.feature-present {
    color: #4caf50;
    font-weight: bold;
}

.feature-absent {
    color: #dc3545;
    font-weight: bold;
}

@media (max-width: 992px) {
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 30px 0;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        margin-top: 20px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background: #f8f9fa;
        z-index: 1;
    }
}

@media (max-width: 576px) {
    .comparison-table th,
    .comparison-table td {
        padding: 8px 6px;
        font-size: 12px;
    }
}
.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
    width: 35%; 
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 30px 0;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        margin-top: 20px;
        table-layout: auto; 
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 13px;
        white-space: normal; /* Разрешаем перенос текста на мобильных */
    }
    
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background: #f8f9fa;
        z-index: 1;
        min-width: 120px; /* Минимальная ширина для первого столбца */
    }
    
    .comparison-table th:not(:first-child),
    .comparison-table td:not(:first-child) {
        min-width: 100px; /* Минимальная ширина для остальных столбцов */
        width: auto;
    }
}

@media (max-width: 576px) {
    .comparison-table th,
    .comparison-table td {
        padding: 8px 6px;
        font-size: 12px;
    }
}
.telephone {
  color: #2c3e50!important;
}