
/* Основные стили */
/* --- Мобильная адаптация --- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  nav {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  nav a {
    margin: 10px 10px 0 0;
  }
  .hero h2 {
    font-size: 28px;
  }
  .hero p {
    font-size: 16px;
  }
  section {
    padding: 40px 15px;
  }
  .card {
    flex: 1 1 100%;
  }
  .tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .tab {
    margin: 5px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .reviews {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    flex-direction: column;
  }
/* Контейнер кнопок */
.social-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Каждая кнопка */
.social-buttons a {
  width: 40px;
  height: 40px;
  background-color: #0077be;
  border-radius: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Анимация при наведении */
.social-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Иконки внутри кнопок */
.social-buttons img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Дополнительно: отдельные цвета (если хотите) */
.social-buttons a.telegram {
  background-color: #0088cc;
}

.social-buttons a.whatsapp {
  background-color: #25D366;
}
}