/* home.css — owned by index.html */

.home-hero {
  background: linear-gradient(135deg, var(--kt-blue) 0%, var(--kt-navy) 100%);
  color: #fff;
  padding: 72px 0 80px;
}
.home-hero__inner { max-width: 760px; }
.home-hero__title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.home-hero__sub {
  font-size: 18px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
}
.home-hero__search { display: flex; gap: 10px; }
.home-hero__input {
  border: none;
  font-size: 17px;
  padding: 14px 16px;
}
.home-hero__btn {
  background: var(--kt-text);
  padding: 14px 28px;
  flex-shrink: 0;
}
.home-hero__btn:hover { background: #000; }

.home-section { margin-top: 48px; }
.home-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.home-section__title { font-size: 24px; font-weight: 800; }
.home-section__more {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.home-section__more:hover { text-decoration: underline; }

.home-categories {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.home-category {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 10px;
  background: var(--kt-bg-section);
  border: 1px solid var(--kt-border);
  border-radius: var(--kt-radius-card);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--kt-text);
  text-decoration: none;
  transition: background-color 120ms ease;
}
.home-category:hover {
  background: var(--kt-blue-tint);
  border-color: var(--kt-blue);
  color: var(--kt-blue);
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .home-categories { grid-template-columns: repeat(4, 1fr); }
  .home-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .home-hero { padding: 48px 0 56px; }
  .home-hero__title { font-size: 32px; }
  .home-hero__search { flex-direction: column; }
  .home-categories { grid-template-columns: repeat(2, 1fr); }
  .home-grid { grid-template-columns: 1fr; }
}
