/* vault.css */
@font-face {
  font-family: "goldeneye";
  src: url(/font/007\ GoldenEye.ttf);
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Page Wrapper für Footer Sticky */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-brand {
  margin: 0;
}
.navbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Page Content */
.content-wrapper {
  flex: 1; /* Damit Footer nach unten gedrückt wird */
  padding-top: 140px; /* Platz für Navbar */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

h1 {
  font-family: "goldeneye";
  font-size: 60px;
  margin-bottom: 1.5rem;
  margin-top: 90px;
}

.card {
  display: block; /* falls nötig */
  text-decoration: none;
  color: inherit;
  /* Rest bleibt wie gehabt */
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.card {
  background: #0b0b0b;
  border: 1px solid #222;
  border-radius: 12px;
  width: 250px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-5px);
  border-color: #fff;
}
.card h3 {
  font-family: "goldeneye";
  font-size: 30px;
  color: #fff;
  margin-bottom: 0;
}

::selection {
  background: white;
  color: black;
}

p {
  color: white;
  font-size: 15px;
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 0.9rem;
  margin-top: auto; /* Footer immer unten */
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 992px) {
  h1 {
    font-size: 48px;
  }

  .card {
    width: 220px;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 38px;
  }

  .card {
    width: 100%;
    max-width: 300px;
  }
  .cards {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    position: relative;
  }
  .navbar .container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 0;
  }

  .content-wrapper {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  h1 {
    font-size: 28px;
    margin-top: 0.5rem;
  }
  .cards {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    align-items: center;
    margin-top: 0;
  }
  .card {
    width: 90%;
    max-width: 300px;
    padding: 1.5rem;
    box-sizing: border-box;
  }
}
