/* --- 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;
  min-height: 100dvh;
  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;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  padding-top: max(2rem, env(safe-area-inset-top));
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
  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;
  -webkit-tap-highlight-color: transparent;
}

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

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

@media (max-width: 768px) {
  .page {
    padding: 1.5rem 1.25rem;
  }

  .subtitle {
    margin-bottom: 2rem;
    font-size: 1.15rem;
  }

  .cta {
    min-height: 48px;
    padding: 0.875rem 1.75rem;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 1.25rem 1rem;
  }

  .title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .subtitle {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .cta {
    width: 100%;
    max-width: 320px;
    min-height: 52px;
    font-size: 1.1rem;
  }
}

.footer {
  margin-top: auto;
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.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;
}
