/* styles.css  */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- Layout & Farben --- */
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(180deg, #006EA1 0%, #ffffff 80%);
  color: #0c0c0c;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

header {
  margin-top: 4rem;
}

.logo {
  width: 90px;
  height: auto;
  margin-bottom: 1rem;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin: 0.3em 0;
}

.subtitle {
  color: #444;
  font-size: 1.1em;
  margin-bottom: 2em;
}

/* --- Linkbuttons --- */
.links {
  width: 90%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.linkbtn {
  background-color: #006EA1;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.linkbtn:hover {
  background-color: #BF0000;
  transform: scale(1.03);
}

/* --- Footer --- */
footer {
  margin-top: auto;
  padding: 2rem 0;
  font-size: 0.9em;
  color: #333;
}

.tiny {
  font-size: 0.8em;
  opacity: 0.7;
}