/*
Theme Name: Mein Eigenes Design
Author: Nazar
*/
/* --- Astra Overrides & Dark Theme --- */
html, body, #page, .site, .site-content, .ast-container, .entry-content {
  background-color: #101110 !important;
  color: #EDEBE4 !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  overflow-x: hidden;
}

.entry-header, .ast-single-post-order {
  display: none !important;
}

/* --- Hero Layout --- */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 750px;
  background: #101110;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 40px 20px;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/* Typografie */
.hero h1 {
  font-family: 'Unbounded', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 20px;
}

.hero h1 .accent {
  display: block;
  font-size: 2.2rem;
  color: #EDEBE4;
}

.hero h1 .sub {
  display: block;
  font-size: 0.85rem;
  color: #9A968C;
  margin-top: 8px;
  letter-spacing: 3px;
}

/* Zentrales Logo (NK) */
.hero-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border: 2px solid rgba(237, 235, 228, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -2px;
  color: #EDEBE4;
  z-index: 2;
}

/* Bottom Bar / Showreel Button */
.hero-bottom-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.play-button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(237, 235, 228, 0.2);
  color: #EDEBE4;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #E8A75D;
}

.play-icon {
  width: 18px;
  height: 18px;
  background: #E8A75D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-role {
  max-width: 600px;
  font-size: 0.85rem;
  color: #9A968C;
  line-height: 1.5;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.75rem;
  color: #9A968C;
  border-top: 1px solid rgba(237, 235, 228, 0.1);
  padding-top: 16px;
}

.hero-meta strong {
  display: block;
  color: #EDEBE4;
}
/* Mobile Anpassungen (Handy) */
@media (max-width: 900px) {
  /* 1. Innenabstände verkleinern */
  .wrap {
    padding: 0 20px;
  }

  /* 2. Überschrift anpassen */
  .hero h1 .accent {
    font-size: 16px;
  }

  /* 3. Text über den Play-Button stellen */
  .hero-bottom-grid {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 20px !important;
  }

  .play-button {
    align-self: flex-start !important;
  }

  /* 4. Work-Grid 1-spaltig erzwingen */
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-item, .work-item.wide, .work-item.narrow {
    grid-column: span 1;
  }
}
