/* ================================================
   Frank Panzer — Extra Styles
   Cookie Banner · Scroll-Top · Particles ·
   CV · Interessen · Partner · Legal · Animations
   ================================================ */

/* ── Scroll progress bar ── */
.fp-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 500;
  background: linear-gradient(90deg, var(--color-accent), #fb923c, #fcd34d);
  width: 0%; pointer-events: none;
  box-shadow: 0 0 10px var(--color-accent), 0 0 20px rgba(249,115,22,.4);
  transition: width .05s linear;
}

/* ── Canvas particles ── */
.fp-particles {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ── Cookie Banner ── */
.fp-cookie {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: calc(100% - 3rem); max-width: 780px;
  background: var(--color-surface-2);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1.25rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.8), 0 0 0 1px rgba(249,115,22,.08),
              0 0 40px rgba(249,115,22,.05);
  animation: fp-cookie-in .55s cubic-bezier(.16,1,.3,1);
  backdrop-filter: blur(12px);
}
.fp-cookie__icon {
  font-size: 1.8rem; flex-shrink: 0;
  animation: fp-float 3s ease-in-out infinite;
}
.fp-cookie__text {
  flex: 1; display: flex; flex-direction: column; gap: .2rem; min-width: 0;
}
.fp-cookie__text strong {
  font-family: var(--font-head); font-size: .88rem; color: var(--color-text);
}
.fp-cookie__text span {
  font-size: .8rem; color: var(--color-muted); line-height: 1.5;
}
.fp-cookie__text a {
  font-size: .78rem; color: var(--color-accent);
  font-family: var(--font-mono);
  display: inline-block; margin-top: .15rem;
}
.fp-cookie__btns { display: flex; gap: .65rem; flex-shrink: 0; }
.fp-cookie__btns .fp-btn { padding: .6rem 1.25rem; font-size: .82rem; }
@keyframes fp-cookie-in {
  from { opacity: 0; transform: translate(-50%, 1.5rem) scale(.97); }
  to   { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
@media (max-width: 640px) {
  .fp-cookie {
    bottom: 0; left: 0; right: 0; transform: none; width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    flex-wrap: wrap; backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .fp-cookie__btns { width: 100%; }
  .fp-cookie__btns .fp-btn {
    flex: 1; text-align: center; justify-content: center;
    pointer-events: auto !important; touch-action: manipulation;
    cursor: pointer; position: relative; z-index: 10000;
  }
  @keyframes fp-cookie-in {
    from { opacity: 0; transform: translateY(100%); }
    to   { opacity: 1; transform: none; }
  }
}

/* ── Scroll to top button ── */
.fp-top-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--color-accent); border: none; cursor: pointer;
  color: #fff; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(249,115,22,.45);
  transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease;
  opacity: 0; pointer-events: none; transform: translateY(12px);
}
.fp-top-btn.fp-top-btn--show {
  opacity: 1; pointer-events: auto; transform: none;
}
.fp-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(249,115,22,.65);
}

/* ── Profile photo ── */
.fp-about__img {
  width: 100%; border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(249,115,22,.1);
  transition: box-shadow var(--ease);
}
.fp-about__img:hover { box-shadow: 0 24px 80px rgba(249,115,22,.2); }

/* ── Gradient / glow text ── */
.fp-grad {
  background: linear-gradient(135deg, #F97316 0%, #fb923c 50%, #fcd34d 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fp-glow { text-shadow: 0 0 40px rgba(249,115,22,.3); }

/* ── Enhanced card tilt ── */
.fp-card { transform-style: preserve-3d; will-change: transform; }

/* ── Enhanced reveal transitions ── */
.fp-reveal {
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.fp-reveal-delay-1 { transition-delay: .12s; }
.fp-reveal-delay-2 { transition-delay: .24s; }
.fp-reveal-delay-3 { transition-delay: .36s; }

/* ── Floating animation ── */
@keyframes fp-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.fp-float { animation: fp-float 4s ease-in-out infinite; }

/* ── Pulse dot ── */
@keyframes fp-pulse-ring {
  0%   { transform: scale(1);    opacity: 1; }
  100% { transform: scale(2.2);  opacity: 0; }
}
.fp-timeline__dot--accent::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--color-accent);
  animation: fp-pulse-ring 2s ease-out infinite;
}
.fp-timeline__dot--accent { position: relative; }

/* ── Interessen Section ── */
.fp-int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.fp-int-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 2rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  position: relative; overflow: hidden;
}
.fp-int-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  opacity: 0; transition: opacity var(--ease);
}
.fp-int-card:hover { border-color: var(--color-accent); transform: translateY(-4px); }
.fp-int-card:hover::before { opacity: 1; }
.fp-int-card:hover { box-shadow: 0 12px 40px rgba(249,115,22,.12); }
.fp-int-card__icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.fp-int-card h3 { font-size: 1rem; margin-bottom: .6rem; }
.fp-int-card p { font-size: .86rem; }
.fp-int-card a { color: var(--color-accent); }

/* ── CV Section ── */
.fp-cv-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 3rem;
}
.fp-cv-col__title {
  font-family: var(--font-mono); font-size: .72rem;
  color: var(--color-accent); text-transform: uppercase;
  letter-spacing: .2em; margin-bottom: 2rem; display: block;
}
.fp-cv-entry {
  display: flex; gap: 1.5rem;
  padding-bottom: 1.75rem; margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--color-border);
}
.fp-cv-entry:last-child { border: none; padding: 0; margin: 0; }
.fp-cv-entry__year {
  font-family: var(--font-mono); font-size: .74rem;
  color: var(--color-accent); padding-top: .2rem;
  white-space: nowrap; min-width: 76px; flex-shrink: 0;
}
.fp-cv-entry__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: .95rem; margin-bottom: .3rem; color: var(--color-text);
}
.fp-cv-entry__sub { font-size: .82rem; color: var(--color-muted); }
.fp-cv-download { text-align: center; margin-top: 3rem; }
@media (max-width: 768px) {
  .fp-cv-wrap { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Partner Section ── */
.fp-partner-box {
  background: linear-gradient(135deg, var(--color-surface), var(--color-surface-2));
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 4rem; position: relative; overflow: hidden;
  text-align: center; margin-top: 3rem;
}
.fp-partner-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(249,115,22,.1), transparent 60%);
  pointer-events: none;
}
.fp-partner-box h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem; position: relative;
}
.fp-partner-box > p {
  position: relative; max-width: 600px;
  margin: 0 auto 3rem; font-size: 1rem;
}
.fp-partner-steps {
  display: flex; gap: 1.5rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 3rem; position: relative;
}
.fp-partner-step {
  flex: 1; min-width: 160px; max-width: 200px;
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 1.5rem 1rem;
  transition: border-color var(--ease);
}
.fp-partner-step:hover { border-color: var(--color-accent); }
.fp-partner-step__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--color-accent); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
}
.fp-partner-step h4 { font-size: .85rem; margin-bottom: .3rem; }
.fp-partner-step p  { font-size: .78rem; }

/* ── Legal pages ── */
.fp-legal { padding: 8rem 0 6rem; }
.fp-legal h1 { margin-bottom: .75rem; }
.fp-legal__meta {
  font-family: var(--font-mono); font-size: .75rem;
  color: var(--color-muted); margin-bottom: 3rem;
  display: block;
}
.fp-legal__body { max-width: 780px; }
.fp-legal__body h2 {
  font-size: 1.15rem; margin: 3rem 0 1rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.fp-legal__body h2:first-child { margin-top: 0; }
.fp-legal__body p   { margin-bottom: 1rem; font-size: .92rem; }
.fp-legal__body address {
  font-style: normal; margin-bottom: 1rem; line-height: 1.9;
  font-size: .92rem;
}
.fp-legal__body a { color: var(--color-accent); }
.fp-legal__body ul { list-style: none; padding: 0; margin-bottom: 1rem; }
.fp-legal__body ul li {
  padding: .4rem 0 .4rem 1.25rem; position: relative;
  font-size: .88rem; color: var(--color-muted);
}
.fp-legal__body ul li::before { content: '›'; position: absolute; left: 0; color: var(--color-accent); }
.fp-legal__body strong { color: var(--color-text); font-weight: 600; }
code { font-family: var(--font-mono); font-size: .85em; }

/* ── Stats Strip ── */
.fp-stats {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 3.5rem 0;
}
.fp-stats__grid {
  display: flex; flex-wrap: wrap; justify-content: center;
}
.fp-stat {
  flex: 1; min-width: 160px; padding: 1.5rem 2rem;
  text-align: center; border-right: 1px solid var(--color-border);
}
.fp-stat:last-child { border-right: none; }
.fp-stat__num {
  font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.1; display: block; margin-bottom: .4rem;
  background: linear-gradient(135deg, #F97316, #fcd34d);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.1em; white-space: nowrap;
}
.fp-stat__label {
  font-size: .75rem; color: var(--color-muted);
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em;
}
@media (max-width: 640px) {
  .fp-stat { border-right: none; border-bottom: 1px solid var(--color-border); }
  .fp-stat:last-child { border-bottom: none; }
}

/* ── Quote / Motto ── */
.fp-quote {
  padding: 6rem 0; text-align: center;
  background: radial-gradient(ellipse at center, rgba(249,115,22,.06) 0%, transparent 70%);
}
.fp-quote__text {
  font-family: var(--font-head); font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800; max-width: 800px; margin: 0 auto 1.5rem; line-height: 1.25;
  background: linear-gradient(135deg, #F97316 0%, #fb923c 50%, #fcd34d 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.fp-quote__text::before { content: '„'; }
.fp-quote__text::after  { content: '"'; }
.fp-quote__author {
  font-family: var(--font-mono); font-size: .8rem;
  color: var(--color-muted); letter-spacing: .15em; text-transform: uppercase;
}

/* ── Fun Facts ── */
.fp-facts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem; margin-top: 3rem;
}
.fp-fact {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color var(--ease), transform var(--ease);
}
.fp-fact:hover { border-color: var(--color-accent); transform: translateY(-3px); }
.fp-fact__icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.fp-fact__text { font-size: .88rem; color: var(--color-muted); line-height: 1.6; }
.fp-fact__text strong { color: var(--color-text); display: block; margin-bottom: .2rem; font-size: .92rem; }

/* ── DJ-Frankus Section ── */
.fp-dj { background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg) 100%); }
.fp-dj__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-top: 3rem;
}
.fp-dj__vinyl-wrap { display: flex; justify-content: center; }
.fp-dj__vinyl {
  width: 240px; height: 240px; border-radius: 50%;
  background: conic-gradient(
    #1a1a2e 0%, #16213e 10%, #0f3460 20%, #533483 30%,
    #1a1a2e 40%, #e94560 50%, #1a1a2e 60%,
    #0f3460 70%, #533483 80%, #16213e 90%, #1a1a2e 100%
  );
  box-shadow: 0 0 40px rgba(249,115,22,.3), 0 0 80px rgba(249,115,22,.1),
              inset 0 0 30px rgba(0,0,0,.5);
  animation: fp-spin 8s linear infinite;
  position: relative;
}
.fp-dj__vinyl::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: radial-gradient(circle, #F97316 0%, #c2410c 60%, #1a1a1a 70%);
  border: 3px solid rgba(249,115,22,.3);
}
@keyframes fp-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.fp-dj__genres { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0; }
.fp-dj__coming {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: .78rem;
  color: var(--color-muted); border: 1px solid var(--color-border);
  border-radius: 100px; padding: .4rem 1rem; margin-top: .5rem;
}
@media (max-width: 768px) {
  .fp-dj__inner { grid-template-columns: 1fr; gap: 2rem; }
  .fp-dj__vinyl { width: 180px; height: 180px; }
  .fp-dj__vinyl::after { width: 36px; height: 36px; }
}

/* ── Mein Setup ── */
.fp-setup__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem; margin-top: 3rem;
}
.fp-tool {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 1.25rem 1rem;
  text-align: center; transition: border-color var(--ease), transform var(--ease);
}
.fp-tool:hover { border-color: var(--color-accent); transform: translateY(-3px); }
.fp-tool__icon { font-size: 1.8rem; margin-bottom: .5rem; display: block; }
.fp-tool__name { font-size: .8rem; color: var(--color-muted); font-family: var(--font-mono); }

/* ── Shop Highlight ── */
.fp-shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.fp-shop-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 2rem 1.5rem;
  text-decoration: none; color: inherit; display: block;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.fp-shop-card:hover {
  border-color: var(--color-accent); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(249,115,22,.12);
}
.fp-shop-card__icon { font-size: 2.2rem; margin-bottom: .75rem; display: block; }
.fp-shop-card h3 { font-size: .95rem; margin-bottom: .4rem; color: var(--color-text); }
.fp-shop-card p { font-size: .82rem; color: var(--color-muted); }
.fp-shop__ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; margin-top: 3rem;
}

/* ── FAQ Accordion ── */
.fp-faq__list { margin-top: 3rem; }
.fp-faq__item { border-bottom: 1px solid var(--color-border); }
.fp-faq__item summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  color: var(--color-text); padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color var(--ease);
}
.fp-faq__item summary::-webkit-details-marker { display: none; }
.fp-faq__item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: var(--color-accent); flex-shrink: 0;
  transition: transform var(--ease);
}
.fp-faq__item[open] summary { color: var(--color-accent); }
.fp-faq__item[open] summary::after { transform: rotate(45deg); }
.fp-faq__body {
  padding-bottom: 1.25rem; font-size: .9rem;
  color: var(--color-muted); line-height: 1.7; max-width: 720px;
}
.fp-faq__body a { color: var(--color-accent); }
