/* === Reset & Base === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
body {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  color: #EDEBDE; text-align: center;
  background: #000;
}

/* === Hintergrund (Lace) === */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("images/lace.jpg"); /* Dein dunkles Lace */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
}

/* Overlay (Lesbarkeit) */
body::after {
  content: "";
  position: fixed; inset: 0;
  background: radial-gradient(circle at center,
              rgba(0,0,0,0.45) 60%,
              rgba(0,0,0,0.65) 100%);
  z-index: -1;
}

/* iOS-Fix (mobile Safari ignoriert fixed auf Pseudo-Elementen) */
@media (max-width: 768px) {
  body::before { background-attachment: scroll; }
}

/* === Logo === */
.logo {
  width: clamp(240px, 34vw, 760px);
  margin-bottom: 1.5rem;
  animation: fadeIn 1.8s ease forwards;
}

/* === Headline + Subline === */
h1 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-shadow: 0 0 6px rgba(0,0,0,0.3);
}
p.subline {
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  color: #e0e0e0;
  margin-bottom: 1.4rem;
  text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

/* === Buttons === */
.btn-group {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  min-width: 140px;
  text-decoration: none;
  backdrop-filter: blur(2px);
}
.btn:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.btn:focus {
  outline: 2px solid #EDEBDE;
  outline-offset: 2px;
}

/* Optional: Icon-Feinschliff */
.btn i { font-size: 1.05em; line-height: 0; }

/* === Coming Soon === */
.coming {
  margin-top: 2rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #EDEBDE;
  opacity: 0.9;
}

/* === Animations === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === Mobile Tweaks === */
@media (max-width: 768px) {
  .logo { width: clamp(180px, 46vw, 400px); }
}
