/* ============================================================
   sevenSOULS – BrutalStage Shared CSS
   Einbinden mit: <link rel="stylesheet" href="css/brutal.css">
   ============================================================ */

@font-face {
  font-family: 'RobotoSlab';
  src: url('../fonts/Roboto_Slab/RobotoSlab-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
}
@font-face {
  font-family: 'Handschrift';
  src: url('../fonts/Handlee/Handlee-Regular.ttf') format('truetype');
  font-weight: 400;
}

:root {
  --hot-pink:     #FF006E;
  --electric-blue:#00B4D8;
  --acid-yellow:  #FFD60A;
  --black:        #080808;
  --near-black:   #101010;
  --surface:      #161616;
  --white:        #F5F5F5;
  --grey:         #888;
  --header-h:     70px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'RobotoSlab', serif;
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center; padding: 0 1.5rem;
  background: var(--black);
  border-bottom: 3px solid var(--hot-pink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.logo-wrap img {
  height: 56px;
  transition: transform 0.2s, filter 0.2s;
}
.logo-wrap img:hover {
  transform: skewX(-4deg) scale(1.04);
  filter: drop-shadow(0 0 10px var(--hot-pink));
}
.header-tagline {
  flex: 1; text-align: center;
  font-family: 'Handschrift', cursive;
  font-size: 1.1rem; color: var(--acid-yellow);
}
nav { display: flex; gap: 0; }
nav a {
  font-family: 'RobotoSlab', serif;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; color: var(--black);
  padding: 0.5rem 0.8rem; display: block;
  transition: all 0.15s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
nav a:nth-child(1) { background: #E63946; color: white; }
nav a:nth-child(2) { background: #F4A261; }
nav a:nth-child(3) { background: #2A9D8F; color: white; }
nav a:nth-child(4) { background: #A8DADC; }
nav a:nth-child(5) { background: #457B9D; color: white; }
nav a:hover { filter: brightness(1.35); transform: translateY(-2px); }
nav a.active { filter: brightness(0.65); outline: 2px solid white; outline-offset: -3px; }

.burger {
  display: none; background: none; border: none;
  color: var(--white); font-size: 1.5rem; cursor: pointer;
}

/* ── PAGE HERO ── */
.page-hero {
  padding-top: var(--header-h);
  background: var(--near-black);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: -5%; right: -5%;
  height: 60px; background: var(--black);
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
}
.page-hero-inner {
  padding: 3rem 3rem 4.5rem;
  position: relative; z-index: 1;
}
.page-hero-tag {
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--hot-pink);
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.page-hero-tag::before {
  content: ''; width: 24px; height: 2px;
  background: var(--hot-pink); flex-shrink: 0;
}
.page-hero h1 {
  font-family: 'RobotoSlab', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900; line-height: 0.95;
  color: var(--white);
}
.page-hero h1 span { color: var(--electric-blue); }

/* ── MAIN CONTENT ── */
main { padding-top: 2rem; }

/* ── SECTIONS ── */
.section { padding: 4rem 3rem; }
.section.dark  { background: var(--black); }
.section.mid   { background: var(--near-black); }
.section.light { background: var(--surface); }

.section-hdr {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 2.5rem;
}
.s-num {
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.3em; color: var(--hot-pink);
}
.s-title {
  font-family: 'RobotoSlab', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--white);
}
.s-title span { color: var(--electric-blue); }
.s-sub {
  font-family: 'Handschrift', cursive;
  font-size: 1rem; color: var(--grey);
  margin-top: -1.5rem; margin-bottom: 2rem;
  line-height: 1.6;
}

/* ── DIVIDER LINE ── */
.px-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hot-pink) 30%, var(--electric-blue) 70%, transparent);
  opacity: 0.25; margin: 0;
}

/* ── BUTTONS ── */
.btn-slash {
  font-family: 'RobotoSlab', serif;
  font-size: 0.85rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: var(--black);
  background: var(--white); padding: 0.75rem 2rem;
  display: inline-block;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.2s;
}
.btn-slash:hover { background: var(--hot-pink); color: white; transform: translateX(-3px); }
.btn-ghost {
  font-family: 'RobotoSlab', serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: var(--electric-blue);
  border: 2px solid var(--electric-blue); padding: 0.65rem 2rem;
  display: inline-block;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--electric-blue); color: var(--black); transform: translateX(-3px); }

/* ── CARDS / BOXES ── */
.box {
  background: var(--near-black);
  border-left: 3px solid var(--hot-pink);
  padding: 1.75rem 1.5rem;
  transition: background 0.2s;
}
.box:hover { background: var(--surface); }
.box.blue  { border-color: var(--electric-blue); }
.box.yellow { border-color: var(--acid-yellow); }
.box-label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 0.5rem;
}
.box-value {
  font-size: 1rem; font-weight: 700; color: var(--white);
}
.box-value a { color: var(--hot-pink); text-decoration: none; }
.box-value a:hover { color: var(--white); }
.box-note {
  font-family: 'Handschrift', cursive;
  font-size: 0.9rem; color: var(--grey);
  margin-top: 0.4rem; line-height: 1.5;
}

/* ── SOCIAL ICONS ── */
.social-row { display: flex; gap: 1.25rem; align-items: center; margin-top: 1.5rem; }
.social-icon img {
  width: 48px; height: 48px;
  filter: grayscale(40%);
  transition: filter 0.25s, transform 0.25s;
}
.social-icon img:hover { filter: grayscale(0%) brightness(1.2); transform: scale(1.1); }

/* ── IMAGES ── */
.img-full { width: 100%; display: block; }
.img-frame {
  overflow: hidden; border: 1px solid #1e1e1e;
  transition: border-color 0.3s;
}
.img-frame:hover { border-color: var(--hot-pink); }
.img-frame img { width: 100%; display: block; transition: transform 0.4s; }
.img-frame:hover img { transform: scale(1.03); }

/* ── VIDEO ── */
.video-wrap {
  position: relative; width: 100%; max-width: 900px; margin: 0 auto;
}
.video-wrap video {
  width: 100%; display: block;
  border: 1px solid #1e1e1e;
}

/* ── SCROLL REVEAL ── */
.slide-in {
  opacity: 0; transform: translateY(40px) skewY(1deg);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-in.show  { opacity: 1; transform: translateY(0) skewY(0); }
.slide-left  { opacity: 0; transform: translateX(-45px); transition: opacity 0.6s, transform 0.6s; }
.slide-left.show  { opacity: 1; transform: translateX(0); }
.slide-right { opacity: 0; transform: translateX(45px);  transition: opacity 0.6s, transform 0.6s; }
.slide-right.show { opacity: 1; transform: translateX(0); }
.d1{transition-delay:.05s}.d2{transition-delay:.15s}.d3{transition-delay:.25s}
.d4{transition-delay:.35s}.d5{transition-delay:.45s}.d6{transition-delay:.55s}

/* ── FOOTER ── */
footer {
  background: #030303;
  border-top: 3px solid var(--hot-pink);
  padding: 1.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
}
footer p   { font-size: 0.75rem; color: var(--grey); letter-spacing: 0.05em; }
footer a   { color: var(--electric-blue); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.1em; }
footer a:hover { color: var(--white); }

/* ══ RESPONSIVE ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .col-3 { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 640px) {
  header { padding: 0 1rem; }
  .header-tagline { display: none; }
  .burger { display: block; margin-left: auto; }
  nav {
    display: none; flex-direction: column;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--near-black);
    padding: 1rem 1.5rem; gap: 0.5rem;
    border-bottom: 2px solid var(--hot-pink); z-index: 999;
  }
  nav.open { display: flex; }
  nav a { text-align: center; }
  .page-hero-inner { padding: 2rem 1.5rem 3.5rem; }
  .section { padding: 3rem 1.5rem; }
  .col-2, .col-3 { grid-template-columns: 1fr !important; }
  footer { flex-direction: column; gap: 0.75rem; padding: 1.5rem; text-align: center; }
  .btn-slash, .btn-ghost { clip-path: none; border-radius: 4px; }
}
