/* assets/css/main.css */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #f9fafb;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-weight: 700;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.hidden {
  display: none;
}

/* Hero */
.hero-bg {
  background-size: cover;
  background-position: center;
  height: 70vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* Карточки услуг */
.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

/* Галерея */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Кнопки */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: bold;
  transition: background-color 0.2s;
}

.bg-blue-600 {
  background-color: #2563eb;
  color: white;
}

.bg-blue-600:hover {
  background-color: #1d4ed8;
}

/* Другие стили */
.text-gray-600 { color: #4b5563; }
.text-gray-900 { color: #111827; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-white { background-color: white; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.text-center { text-align: center; }
.space-y-2 > * + * { margin-top: 0.5rem; }
