@font-face {
  font-family: "goldeneye";
  src: url(/font/special-font.ttf);
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
}

.special-font {
  font-family: "Ballet", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Navbar */
/* Navbar */
.navbar {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: center; /* Zentriert horizontal */
  align-items: center; /* Zentriert vertikal */
}

.navbar-brand {
  margin: 0; /* Auto rausnehmen, sonst buggt es */
}

.navbar .container {
  display: flex;
  justify-content: center; /* zentriert horizontal */
  align-items: center;
}

/* Hero */
.hero {
  height: 100vh;
  background: url("/media/main-picture\ Kopie.jpg") no-repeat center
    center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;
  padding-top: 80px; /* Höhe der Navbar ausgleichen */
}

.hero h1 {
  font-family: "goldeneye";
  font-size: 85px;
  color: black;
}

.hero .btn {
  margin: 10px;
  padding: 10px 30px;
  font-size: 1rem;
  border-radius: 0;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-light {
  color: white;
  border-color: black;
  background-color: black;
}

.btn-outline-light {
  color: black;
  border-color: black;
}

.btn-outline-light:hover,
.btn-outline-light:active {
  color: white !important;
  border-color: black !important;
  background-color: black !important;
}

.btn-light:hover,
.btn-light:active {
  background-color: transparent !important;
  border-color: black !important;
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 0.9rem;
}

::selection {
  background: #000;
  color: #fff;
}

/* Responsive Font Sizes */
@media (max-width: 992px) {
  /* Tablets */
  .hero h1 {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  /* Kleine Tablets / große Handys */
  .hero h1 {
    font-size: 45px;
  }
}

@media (max-width: 480px) {
  /* Smartphones */
  .hero h1 {
    font-size: 32px;
  }
}
