* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('/images/TT_Background_2k_01.webp') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

/* 🔥 Der Gamechanger */
.overlay {
  position: absolute;
  inset: 0;

  /* dunkler Verlauf */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.85)
  );

  /* leichter Blur für besseren Fokus */
  backdrop-filter: blur(6px);
}

/* Content */
.hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 20px;
  letter-spacing: 0.06em;
}

.title {
  font-size: 48px;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.description {
  opacity: 0.8;
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.3;
  margin: 20px 0px;
}

.subtitle {
  margin-top: 10px;
  font-weight: 400;
  font-size: 1.1rem;
}

/* Button */
.dethees-btn {
  margin-top: 10px;
  background: transparent;
  border: 1px solid #555;
  color: #aaa;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.3s;
  opacity: 0.6;
}

.dethees-btn:hover {
  border-color: #CFB53B;
  color: #CFB53B;
  opacity: 1;
}

.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  padding: 0 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* Links */
.footer-left a {
  margin-right: 15px;
  margin-top: 5px;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  transition: opacity 0.3s;
  text-align: left;
}

.footer-left a:hover {
  opacity: 1;
}

/* Mitte */
.footer-center {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Rechts */
.footer-right {
  margin-left: 15px;
  text-align: right;
  font-size: 11px;
  opacity: 0.5;
}

a, a:visited {
  color: rgba(216, 184, 55, 0.6);
  font-size: 14px;
}