body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f5fefe;
  color: #333;
  line-height: 1.8;
}

header {
  background: linear-gradient(90deg, #4fc3f7, #81c784);
  color: white;
  padding: 60px 30px;
  padding-top: 80px; /* увеличили верхний отступ */
  text-align: center;
  position: relative;
}


header h1 {
  margin: 0;
  font-size: 48px;
  letter-spacing: 1.5px;
}

.lang-switch {
  position: absolute;
  top: 30px;
  right: 30px;
}

.lang-switch button {
  background: white;
  color: #4fc3f7;
  border: none;
  padding: 14px 24px;
  margin-left: 12px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 6px;
  font-size: 20px;
  transition: background 0.2s;
}

.lang-switch button:hover {
  background: #e0f7fa;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 60px 30px;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.description {
  padding: 60px 30px;
  font-size: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.map iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.call-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #4fc3f7;
  color: white;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 24px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  transition: background 0.2s;
}

.call-button:hover {
  background: #03a9f4;
}

#lightbox {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

#lightbox .close {
  position: absolute;
  top: 40px;
  right: 50px;
  font-size: 60px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

#lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 70px;
  color: white;
  cursor: pointer;
  padding: 30px;
  user-select: none;
}

#lightbox .prev {
  left: 50px;
}

#lightbox .next {
  right: 50px;
}

/* Адаптация под смартфоны */
@media (max-width: 768px) {
  header {
    padding: 60px 20px;
    padding-top: 100px; /* больше отступа сверху */
  }
  header h1 {
    font-size: 32px;
  }
  .lang-switch {
    top: 10px; /* опустим кнопки чуть ниже */
    right: 10px;
  }
  .lang-switch button {
    font-size: 16px;
    padding: 8px 16px;
  }
  .gallery {
    gap: 20px;
    padding: 40px 20px;
  }
  .gallery img {
    height: 220px;
  }
  .description {
    font-size: 18px;
    padding: 40px 20px;
  }
  .map iframe {
    height: 300px;
  }
  .call-button {
    font-size: 20px;
    padding: 16px 32px;
    bottom: 20px;
    right: 20px;
  }
  #lightbox .close {
    font-size: 40px;
    top: 20px;
    right: 20px;
  }
  #lightbox .nav {
    font-size: 50px;
    padding: 20px;
  }
}

.contact-phone {
  text-align: center;
  margin: 40px 0;
}

.contact-phone a {
  display: inline-flex;
  align-items: center;
  background: #4fc3f7;
  color: white;
  text-decoration: none;
  font-size: 24px;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.contact-phone a:hover {
  background: #03a9f4;
}

.contact-phone .phone-icon {
  font-size: 28px;
  margin-right: 12px;
}

.about {
  padding: 60px 30px;
  background: #ffffff;
  font-size: 20px;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.7;
}

.about h2 {
  font-size: 36px;
  color: #4fc3f7;
  margin-bottom: 20px;
}

.about strong {
  color: #333;
}

@media (max-width: 768px) {
  .about {
    padding: 40px 20px;
    font-size: 18px;
  }
  .about h2 {
    font-size: 28px;
  }
}



