/* 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;
}

#loading {
  display: flex;
  justify-content: center;
  margin-top: 150px;
}

/* 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 {
  margin-top: 100px;
  padding-top: 140px; /* Platz für Navbar */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.fa-brands,
.fa-solid {
  color: #ccc;
  margin-bottom: 20px;
}

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;
}

/* Cards */
.card-container {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.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: 350px;
  padding: 2rem;
  text-align: center;
}

.card h3 {
  font-family: "goldeneye";
  font-size: 30px;
  color: #fff;
  margin-bottom: 0;
}

::selection {
  background: white;
  color: black;
}

p {
  color: white;
  font-size: 15px;
}

/* Input Styling */
.form-control {
  background: #111;
  border: 1px solid #444;
  color: #fff;
  border-radius: 0;
}

/* Placeholder Text Weiß */
.form-control::placeholder {
  color: #fff;
  opacity: 0.7;
}

/* Focus Styling */
.form-control:focus {
  background: #111;
  color: #fff;
  border-color: #fff;
  box-shadow: none;
}

.btn-save {
  background: #000;
  color: #fff;
  font-weight: bold;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 12px;
  text-transform: uppercase;
}

.btn-save:hover {
  color: rgb(0, 0, 0);
  background-color: white;
  border-color: white;
  transition: all 0.3s ease;
}

#editBtn {
  border: none;
  background-color: transparent;
  color: #222;
}
.card img {
  display: block;
  margin: 0 auto;
}

.cursor-pointer {
  cursor: pointer;
}

.helper-text {
  margin-top: 4px;
  margin-bottom: 13px;
  font-size: 12px;
  color: #aaa;
  text-align: left;
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 0.9rem;
  margin-top: auto;
}

/* 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;
    margin-top: 30px;
    padding: 0 20px;
  }

  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;
  }
}
