/* =========================
   HERO HEADLINE
========================= */

.profile-hero-text {
  text-align: center;
  padding: 2.2rem 1.4rem 1.6rem;
}

.profile-hero-text h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.profile-hero-text p {
  font-size: 0.95rem;
  opacity: 0.85;
}


/* =========================
   VISUAL DIVIDER
========================= */

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.2rem 0;
}

.divider::before,
.divider::after {
  content: "";
  width: 30%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.divider .dot {
  width: 8px;
  height: 8px;
  margin: 0 12px;
  border-radius: 50%;
  background: #ffffff;
  animation: pulse 2.8s ease-in-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  50%  { transform: scale(1.4); opacity: 1;   }
  100% { transform: scale(1);   opacity: 0.6; }
}


/* =========================
   PROFILE TEXT
========================= */

.profile-text h2 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.profile-text p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}


/* =========================
   CTA BUTTONS
========================= */

.cta-button {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  background: #ffffff;
  color: #000000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:active {
  transform: scale(0.96);
}

.cta-button:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}


/* SECONDARY BUTTON */

.cta-button.secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}


/* =========================
   MICRO FADE-IN
========================= */

.profile-hero-text,
.profile-hero,
.profile-text,
.mobile-contact {
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===============================
   LOGO STAGE – ZENTRAL & STABIL
=============================== */
.logo-stage {
  width: 260px;
  height: 260px;
  margin-top: 96px;
  position: relative;
  z-index: 2;
	}
.logo-stage img {
  width: 90vw;        /* ? HIER größer machen */
  max-width: 380px;  /* ? Obergrenze */
  height: auto;
  display: block;
  margin: auto;
}

  /* 3D & Interaktion */
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;

  /* Audio */
  --audio-scale: 1;
}

=================================================
   RESET
================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =================================================
   ROOT
================================================= */
:root {
  --blue: #0b2a6f;
  --blue-dark: #071a3a;
  --gold: #e3a018;
  --text: #ffffff;
  --muted: #cfd6e3;
}

/* =================================================
   BODY
================================================= */
html,
body {
  width: 100%;
  min-height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--blue);
  color: var(--text);
}

/* =================================================
   HEADER
================================================= */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background-color: var(--blue-dark);
}

.mobile-brand {
  font-weight: 600;
}

.burger {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.burger span {
  width: 22px;
  height: 2px;
  background: #fff;
}

/* =================================================
   NAV
================================================= */
.mobile-nav {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 14px;
  background-color: var(--blue-dark);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

.mobile-nav a.active {
  color: var(--gold);
}

/* =================================================
   CREATOR LIST
================================================= */
.creator-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.creator-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background-color: rgba(255,255,255,0.08);
  text-decoration: none;
  color: var(--text);
}

/* =================================================
   EINHEITLICHE BILDBOX (SCHLÜSSEL!)
================================================= */
.creator-image {
  width: 72px;
  height: 72px;
  flex-shrink: 0;

  background-color: rgba(0,0,0,0.3);
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.creator-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.profile-hero img {
  width: 240px;
  height: 240px;
}

/* =================================================
   CREATOR INFO
================================================= */
.creator-info strong {
  display: block;
  font-size: 1rem;
}

.creator-info span {
  font-size: 0.85rem;
  color: var(--gold);
}

/* ?? ICON LINKS – KLEIN & DEZENT */
.tile img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* TEXT RECHTS */
.tile-content {
  display: flex;
  flex-direction: column;
}

.tile h3 {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.tile p {
  font-size: 0.85rem;
  line-height: 1.5;
}
.icon-image {
  width: 52px;
  height: 52px;
  max-width: 52px;
  max-height: 52px;

  object-fit: contain;
  flex-shrink: 0;
}
.icon-image {
  display: inline-block;
  vertical-align: top;
  margin-right: 12px;
  margin-top: 4px;
}
.profile img.icon-image {
  width: 52px;
  height: 52px;
}
.project-image {
  width: 180px;
  height: 180px;

  min-width: 180px;
  min-height: 180px;
  max-width: 180px;
  max-height: 180px;

  border-radius: 50%;
  object-fit: cover;
  object-position: center;

  border: 2px solid var(--gold);
}
.creator-item img {
  width: 48px;
  height: 48px;
}
.mobile-form input,
.mobile-form textarea,
.mobile-form button {
  width: 100%;
  display: block;
  margin-bottom: 12px;
  padding: 10px;
  font-size: 1rem;
}
.mobile-contact form,
.mobile-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-contact input,
.mobile-contact textarea {
  width: 100%;
  box-sizing: border-box;
}
.mobile-contact button {
  margin-top: 6px;
}
.mobile-hero img {
  margin-bottom: 16px;
}
/* ===============================
   SECRET MESSAGE
=============================== */
.secret {
  margin-top: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(246,201,74,0.85);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.secret span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  opacity: 0.8;
}

body.secret-active .secret {
  opacity: 1;
  transform: translateY(0);
}

body.secret-active .claim {
  opacity: 0;
}
.logo-stage {
  --audio-scale: 1;
  transform: scale(var(--audio-scale));
}
.logo-stage {
  --audio-scale: 1;
  transform: scale(var(--audio-scale));
}