/* ============================================================
   Oliver Talanga – talanga.de
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: #000;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   PARTIKEL-CANVAS
   ============================================================ */

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   HERO – alles vertikal zentriert als Gruppe
   ============================================================ */

.hero {
  width: 100%;
  height: 100svh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ============================================================
   LOGO – 15% größer als vorher (340px → 391px)
   ============================================================ */

.logo-wrap {
  opacity: 0;
  animation: logoEntrance 2.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.logo {
  width: 391px;
  max-width: 75vw;
  display: block;
  animation: breathe 8s ease-in-out 4s infinite;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* ============================================================
   TEXTBLOCK – direkt unter dem Logo
   ============================================================ */

.text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  opacity: 0;
  animation: fadeUp 1.2s ease 2.4s forwards;
}

.line1,
.line2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #cccccc;
  text-align: center;
  white-space: nowrap;
}

/* ============================================================
   LINKEDIN ICON – 15% größer (20px → 23px)
   ============================================================ */

.linkedin-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  color: #888;
  opacity: 0;
  animation: fadeUp 1.2s ease 3.0s forwards;
  transition: color 0.35s ease, transform 0.35s ease;
}

.linkedin-link:hover {
  color: #ccc;
  transform: translateY(-2px);
}

.linkedin-link svg {
  width: 23px;
  height: 23px;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes logoEntrance {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

@keyframes breathe {
  0%, 100% { filter: brightness(1); }
  50%       { filter: brightness(1.07) drop-shadow(0 0 14px rgba(255,255,255,0.06)); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 600px) {
  .logo { width: 260px; }
  .line1, .line2 { font-size: 10px; white-space: normal; }
}

/* ============================================================
   IMPRESSUM
   ============================================================ */

.impressum-page {
  min-height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  padding: 64px 24px;
}

.impressum-content { max-width: 580px; width: 100%; }

.back-link {
  display: inline-block;
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #666;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 48px;
  transition: color 0.3s;
}
.back-link:hover { color: #ccc; }

.impressum-content h1 {
  font-family: Georgia, serif;
  font-weight: 300;
  font-size: 1.8rem;
  color: #ccc;
  margin-bottom: 40px;
}

.impressum-content h2 {
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #555;
  margin-top: 32px;
  margin-bottom: 8px;
}

.impressum-content p {
  font-family: Georgia, serif;
  font-size: 13px;
  line-height: 1.8;
  color: #888;
}

.impressum-content a { color: #888; text-decoration: underline; }
.impressum-content a:hover { color: #ccc; }
.impressum-content .small { font-size: 11px; color: #444; margin-top: 48px; }
