/* vault.css */

/* Font */
@font-face {
  font-family: "goldeneye";
  src: url(/font/007\ GoldenEye.ttf);
}

/* Body */
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 */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-brand {
  margin: 0;
}
.navbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Content Wrapper */
.content-wrapper {
  flex: 1;
  padding-top: 140px; /* Platz für Navbar */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

/* Headings */
h1 {
  font-family: "goldeneye";
  font-size: 60px;
  margin: 90px 0 1.5rem 0;
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 180px;
}
.card {
  background: #0b0b0b;
  border: 1px solid #222;
  border-radius: 12px;
  width: 300px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.card:hover {
  transform: translateY(-5px);
  border-color: #fff;
}
.card h3 {
  font-family: "goldeneye";
  font-size: 30px;
  color: #fff;
  margin-bottom: 0;
}

/* Text */
p {
  color: #fff;
  font-size: 15px;
}
::selection {
  background: #fff;
  color: #000;
}

.border-bottom {
  display: block;

  border-color: #222 !important;
  width: 735px;
  margin: 25px 0;
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 0.9rem;
  margin-top: auto; /* Footer unten */
}

/* Responsiveness */

/* Tablets */
@media (max-width: 992px) {
  h1 {
    font-size: 48px;
  }
  .card {
    width: 220px;
    padding: 1.5rem;
  }
}

/* Small Tablets */
@media (max-width: 768px) {
  h1 {
    font-size: 38px;
  }
  .card {
    width: 100%;
    max-width: 300px;
  }
  .cards {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .content-wrapper {
    padding-top: 290px;
  }
}

/* Smartphones */
@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: 0;
  }
  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;
  }
  .border-bottom {
    width: calc(100% - 4rem);
    margin: 25px 2rem;
  }
}
