* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
a {
  text-decoration: none;
  color: white;
}

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;
}

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

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

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

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

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

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 500px;
}

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

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

.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

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

.slider-dot.active {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .entertainment-content {
    padding: 50px 0 60px;
  }

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

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

  .slider {
    height: 400px;
  }
}

@media screen and (max-width: 576px) {
  .entertainment-content {
    padding: 30px 0 40px;
  }

  .slider {
    height: 300px;
  }
}

.entertainments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.entertainment-card {
  background: white;
  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;
}

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

.entertainment-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.entertainment-info {
  padding: 25px;
}

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

.entertainment-excerpt {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.entertainment-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #555;
}

.detail-item i {
  color: #65e7d9;
}

.entertainment-content {
  color: #444;
  line-height: 1.7;
}

.entertainment-content p {
  margin-bottom: 10px;
}

.no-entertainments {
  text-align: center;
  grid-column: 1 / -1;
  font-size: 18px;
  color: #666;
  padding: 40px;
}

/* Адаптивность */
@media screen and (max-width: 768px) {
  .entertainments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .entertainment-info {
    padding: 20px;
  }

  .entertainment-title {
    font-size: 20px;
  }

  .entertainment-details {
    flex-direction: column;
    gap: 10px;
  }
}
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;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

@media screen and (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .sitemap {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .header-right {
    gap: 15px;
  }

  .social-icons {
    display: none;
  }

  .nav-bubble {
    display: none;
    position: fixed;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 999;
  }

  .nav-active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
  }

  .nav-links li {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .burger {
    display: flex;
  }
}

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

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}
.telephone {
  color: #2c3e50!important;
}