/* =============================================
   style.css — Оновлена версія (для Tailwind)
   ============================================= */

@layer base {
  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
  }

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

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/* Кастомні кольори для зручності */
:root {
  --primary: #005bbb;
  --accent: #ffd500;
}

/* =============================================
   ГАЛЕРЕЯ (горизонтальний скрол)
   ============================================= */
.gallery-scroll {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #005bbb #e5e7eb;
  scroll-snap-type: x mandatory;
}

.gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background-color: #005bbb;
  border-radius: 20px;
}

.gallery-scroll img {
  scroll-snap-align: start;
}

/* =============================================
   СТАТТЯ (single news)
   ============================================= */
.news-full-img {
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
}

/* Красивий blockquote */
blockquote {
  background: #f0f8ff;
  border-left: 6px solid #005bbb;
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
  font-style: italic;
  border-radius: 0 8px 8px 0;
  color: #334155;
}

/* =============================================
   ТАБЛИЦЯ (графік роботи)
   ============================================= */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.schedule-table th,
.schedule-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.schedule-table th {
  background: #005bbb;
  color: white;
  font-weight: 600;
}

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

.schedule-table tr:nth-child(even) {
  background: #f8fbff;
}

/* =============================================
   АДАПТИВНІСТЬ ДЛЯ СТАРИХ КЛАСІВ (на всяк випадок)
   ============================================= */
.full-width {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .pupil-block,
  .contact-block,
  .news-item {
    padding: 1.25rem;
  }
}

/* =============================================
   ДРІБНІ ПОКРАЩЕННЯ
   ============================================= */
.highlight,
.call-to-action {
  background: #f0f8ff;
  border-radius: 12px;
  padding: 1.25rem;
  color: #005bbb;
  font-weight: 600;
}

.download-link {
  color: #005bbb;
  font-weight: 600;
  text-decoration: underline;
}

.download-link:hover {
  color: #003366;
}

/* Якщо хочеш прибрати скролбар на мобільних */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
