/* --- Harta e Shkollës – Homepage (dark, minimal) --- */

:root {
  --bg: #0a0a0b;
  --bg-soft: #111113;
  --text: #e8e8ea;
  --text-muted: #8a8a8f;
  --accent: #5ba3e8;
  --accent-hover: #7bb8f0;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.content {
  text-align: center;
  max-width: 42rem;
}

.title {
  margin: 0 0 0.75rem;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.subtitle {
  margin: 0 0 2.5rem;
  font-size: 1.35rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cta {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bg);
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

.cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.footer {
  margin-top: auto;
  padding-top: 3rem;
}

.credits {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}

.credits a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.credits a:hover {
  color: var(--accent-hover);
}

.credits a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}
