/* =====================================================
   CESAR JARA – WEBSITE STYLES
===================================================== */

/* =====================================================
   01. BASIS UND LAYOUT
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  --bg-main: #2a582a;
  --bg-dark: #141d14;
  --accent: #d4a34f;
  --accent-soft: #e6bd7a;
  --text-main: #f4f4f2;
  --text-muted: #b6b6b0;
  --panel: rgba(20, 29, 20, 0.72);
  --border: rgba(212, 168, 79, 0.25);
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  background:
    radial-gradient(1200px 600px at 70% 30%, rgba(212, 163, 79, 0.12), transparent 60%),
    radial-gradient(circle at top, var(--bg-main) 0, var(--bg-dark) 70%, #000 100%);

  color: var(--text-main);
  min-height: 100vh;
}

/* =====================================================
   02. TYPOGRAFIE
===================================================== */

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
}

p {
  margin: 0 0 0.75rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =====================================================
   03. HEADER UND NAVIGATION
===================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7vw;
  background: linear-gradient(
  to bottom,
  rgba(20, 29, 20, 0.95),
  rgba(20, 29, 20, 0.85)
  ); 
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  z-index: 40;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--text-main)
}

.main-nav {
  display: flex;
  gap: 1.6rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: var(--text-muted);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.main-nav a:hover {
  color: var(--text-main);
  border-color: var(--border);
}

/* Mobile Navigation */

.nav-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Hamburger Button */

.nav-toggle {
  display: none;
  position: relative;
  width: 32px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    top 0.18s ease,
    bottom 0.18s ease;
}

/* drei Striche */

.nav-toggle span:nth-child(1) {
  top: 4px;
}

.nav-toggle span:nth-child(2) {
  top: 11px;
}

.nav-toggle span:nth-child(3) {
  bottom: 4px;
}

/* X Zustand */

body.nav-open .nav-toggle span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  bottom: 11px;
  transform: rotate(-45deg);
}

/* Mobile Layout */

@media (max-width: 900px) {
  .site-header {
    padding: 0 1.5rem;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 1.75rem 2rem;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  body.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 0.55rem 0;
    border-bottom: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* =====================================================
   04. PANELS UND SCROLL VERHALTEN
===================================================== */

main {
  padding-top: 72px;
}

.panel {
  min-height: 100vh;
  padding: 5rem 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  scroll-margin-top: 90px;
}

/* =====================================================
   05. HOMEPAGE
===================================================== */

/* 05.1 Hero */

.hero {
  position: relative;
  color: var(--text-main);
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Großes Portrait als Hintergrund (Desktop, Tablet) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/portrait.jpg");
  background-size: 80%;
  background-position: 140% 35%;
  filter: grayscale(100%);
  opacity: 0.9;
  z-index: 0;
}

/* Fade zwischen Textbereich und Foto */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 15, 12, 1) 0%,
    rgba(11, 25, 12, 0.95) 30%,
    rgba(11, 25, 12, 0.75) 45%,
    rgba(11, 25, 12, 0.35) 60%,
    rgba(11, 25, 12, 0.1) 75%,
    rgba(11, 25, 12, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.hero-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  margin-bottom: 1rem;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Mobile Portrait */
.hero-portrait-mobile {
  display: none;
}

/* 05.2 Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid var(--bg-main);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #141d14;
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(212, 168, 79, 0.25);
}

.btn.ghost {
  background: transparent;
  color: #e5e7eb;
}

.btn.link-btn {
  background: transparent;
  color: var(--accent-soft);
  border-color: rgba(212, 168, 79, 0.45);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(212, 168, 79, 0.6);
}

/* 05.3 Split Sections */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 4rem;
}

.split.alt {
  background: radial-gradient(circle at top, rgba(212, 163, 79, 0.25), transparent 60%);
}

.split-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.split-text p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.list {
  list-style: none;
  margin-bottom: 1.6rem;
  color: #e5e7eb;
  font-size: 0.95rem;
  padding: 0;
}

.list li {
  margin-bottom: 0.3rem;
}

.split-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.split-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 05.4 Frames mit Platzhalterbildern */

.frame {
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 16 / 10;
  border-radius: 1.4rem;
  border: 1px solid rgba(212, 163, 79, 0.4);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.9);
}

.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.frame-photo::after {
  background-image: url("images/photo1.jpg");
}

.frame-audio::after {
  background-image: url("images/studio.jpg");
}

/* 05.5 Über mich */

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  width: 100%;
  max-width: 1080px;
}

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(212, 163, 79, 0.35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.95);
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mikrofon vorne links */

.about-image-mic {
  width: 100%;
  height: 100%;
  left: 0;
  top: 12%;
  transform: rotate(-4deg);
  background:
    radial-gradient(circle at top left, rgba(212, 163, 79, 0.3), transparent 55%),
    rgba(0, 0, 0,);
}

/* Kamera hinten rechts */

.about-image-cam {
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  transform: rotate(-90deg);
  background:
    radial-gradient(circle at top right, rgba(212, 163, 79, 0.25), transparent 55%),
    rgb(0, 0, 0);
}

/* Leichter Hover Effekt */

.about-image:hover {
  transform: translateY(-4px) scale(1.01);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 1);
}

/* Transformation im Hover nicht komplett überschreiben */

.about-image-mic:hover {
  transform: rotate(-4deg) translateY(-4px) scale(1.01);
}

.about-image-cam:hover {
  transform: rotate(-90deg) translateY(-4px) scale(1.01);
}

/* Mobile Anpassung */

@media (max-width: 700px) {
  .about-images {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  /* Über mich – Bilder auf Mobile sauber zentrieren */

  .about-images {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    justify-items: center;
  }

  .about-image-mic,
  .about-image-cam {
    width: 100%;
    height: auto;
    transform: none;
  }
}
.about-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #a5b4fc;
  margin-bottom: 0.6rem;
}

.about-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.about-list li {
  margin-bottom: 0.4rem;
}

/* 05.6 Überblick Karten */

.overview {
  text-align: left;
}

.overview h2 {
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.card {
  border-radius: 1.2rem;
  border: 1px solid rgba(212, 163, 79, 0.5);
  background: radial-gradient(
    circle at top left,
    rgba(212, 163, 79, 0.1),
    rgba(212, 163, 79, 0.75));
  padding: 1.4rem 1.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* 05.7 Kontakt Bereich auf Startseite */

.contact-hint {
  text-align: center;
}

.contact-hint h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.contact-hint p {
  max-width: 36rem;
  margin: 0 auto 1.4rem;
  color: var(--text-muted);
}

/* 05.8 Rechtliches */

.legal {
  max-width: 720px;
  margin: 0 auto;
}

.legal h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.legal p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.legal-btn {
  margin-top: 16px;
}

.panel.legal {
  display: flex;
  align-items: left;
  justify-content: left;
  text-align: left;

  min-height: 80vh;
  padding: 6rem 2rem;
}

.panel.legal > * {
  max-width: 720px;
}

.panel.legal h2 {
  margin-bottom: 1.2rem;
}

.panel.legal p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
/* Footer */

.site-footer {
  padding: 1.5rem 7vw 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(212, 163, 79, 0.5);
  text-align: center;
}

/* =====================================================
   06. GALERIE
===================================================== */

.gallery {
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.gallery-header {
  max-width: 720px;
}

.gallery-header h1 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.gallery-header .hero-sub {
  max-width: 36rem;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.4rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 1.1rem;
  border: 1px solid rgba(182, 184, 148, 0.45);
  cursor: pointer;
  transform: translateZ(0);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    opacity 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.12);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.98);
  border-color: rgba(246, 248, 129, 0.95);
  opacity: 0.98;
}

@media (max-width: 700px) {

  /* Galerie: Text oben, Bilder unten */

  .gallery-layout {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .gallery-text {
    max-width: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
/* =====================================================
   07. LIGHTBOX
===================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 80;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  box-sizing: border-box;
}

.lightbox-inner img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 1.4rem;
  border: 1px solid rgba(212, 163, 79, 0.4);
  box-shadow: 0 40px 90px rgba(212, 163, 79, 0.2);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

/* Swipe Animation */

.lightbox-img-swipe-left {
  animation: swipeLeft 0.28s ease;
}

.lightbox-img-swipe-right {
  animation: swipeRight 0.28s ease;
}

@keyframes swipeLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes swipeRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Pfeile */

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-main);
  cursor: pointer;
  padding: 0;
  z-index: 82;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #e5e7eb;
  border-right: 2px solid #e5e7eb;
  transform: rotate(45deg);
}

.lightbox-nav.prev::before {
  transform: rotate(-135deg);
}

.lightbox-nav.next::before {
  transform: rotate(45deg);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.lightbox-nav:hover {
  background: var(--accent);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.9);
}

/* Close Button */

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: var(--bg-dark);
  color: #e5e7eb;
  font-size: 1.3rem;
  line-height: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 90;
}

.lightbox-close:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(212, 163, 79, 0.2);
}

/* =====================================================
   08. ANIMATIONEN
===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   09. RESPONSIVE
===================================================== */

/* 09.1 Tablets */

@media (max-width: 700px) {
  .site-header {
    padding: 0 1.2rem;
  }
  /* Split-Sektionen auf Mobil untereinander statt nebeneinander */

  .panel.split {
    display: block;
  }

  .panel.split .split-text {
    max-width: none;
    padding-right: 0;
  }

  .panel.split .split-visual {
    margin-top: 1.8rem;
  }

  .panel.split .frame {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  /* WICHTIG: main-nav NICHT verstecken, das macht das Dropdown kaputt */
  /* .main-nav bleibt vom 900px-Block gesteuert */

  .panel {
    padding: 4.2rem 1.5rem;
    min-height: auto;
  }
  .requirements-panel {
    padding-top: 2.2rem;
  }

  .hero {
    min-height: auto;
    padding-top: 4.5rem;
    padding-bottom: 3rem;
    display: block;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    max-width: none;
  }

  .hero-portrait-mobile {
    display: block;
    margin: 1.5rem auto 0;
  }

  .hero-portrait-img-mobile {
    display: block;
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    border-radius: 1.4rem;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  }

  .cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    gap: 1rem;
  }

  .gallery-grid img {
    border-radius: 1rem;
  }

  .lightbox-inner {
    padding: 1.5rem;
  }

  .lightbox-inner img {
    border-radius: 0.9rem;
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 900px) {

  /* Mixing Requirements – Mobile Start oben bündig */

  .requirements-panel {
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 4rem;
  }

  .requirements-panel.split {
    align-items: flex-start;
  }

  .requirements-panel .split-text {
    margin-top: 0;
    padding-top: 0;
  }
}
/* =====================================================
   10. KONTAKTFORMULAR
===================================================== */

.contact-form {
  max-width: 460px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--text-main);
}

.contact-form input,
.contact-form textarea {
  margin-top: 0.3rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid #515137;
  background: var(--bg-dark);
  color: var(--text-main);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(212, 163, 79, 0.4);
  box-shadow: 0 0 0 1px rgba(241, 227, 99, 0.6);
}
.choice-group {
  border: none;
  padding: 0;
  margin: 0 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.choice-group legend {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.4rem;
}

.choice-btn {
  position: relative;
  display: block;
}

.choice-btn input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-btn span {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid #475137;
  background: var(--bg-dark);
  color: #e5e7eb;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.12s ease;
}

.choice-btn span:hover {
  border-color: rgba(212, 163, 79, 0.2);
  transform: translateY(-1px);
}

.choice-btn input:checked + span {
  background: linear-gradient(135deg, #dde54652, #e8f1634c);
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(224, 229, 70, 0.209);
}
/* =========================================================
   11. MIXING & MASTERING – REQUIREMENTS PAGE
========================================================= */

.requirements-panel {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
}

/* Hintergrundbild + Fade über die gesamte Section */

.requirements-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/speaker.jpg");
  background-size: cover;
  background-position: 50% center;
  filter: grayscale(0);
  opacity: 0.98;
  z-index: 0;
}

.requirements-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(11, 15, 12, 1) 0%,
      rgba(11, 25, 12, 0.95) 30%,
      rgba(11, 25, 12, 0.75) 45%,
      rgba(11, 25, 12, 0.35) 60%,
      rgba(11, 25, 12, 0.1) 75%,
      rgba(11, 25, 12, 0) 100%
    );  
  z-index: 1;
  pointer-events: none;
}

/* Inhalt oben drauf */

.requirements-panel .split-text,
.requirements-panel .split-image {
  position: relative;
  z-index: 2;
}

/* Linker Textbereich */

.requirements-panel .split-text {
  padding: 6rem 6vw;
  max-width: 760px;
  text-align: left;
}

.requirements-panel .hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

.requirements-panel h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.requirements-panel .hero-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.requirements-panel h2 {
  font-size: 1.1rem;
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
  color: #e5e7eb;
}

.requirements-panel p {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.requirements-panel ul {
  margin-left: 1.2rem;
  margin-bottom: 0.8rem;
}

.requirements-panel li {
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

/* Sicherheitshalber alles Bildzeugs hier entfernen */
.split-image-speaker {
  background: none;
}

/* Projekt anfragen btn*/

.requirements-panel .hero-actions {
  display: flex;          /* existiert schon global, hier nur zur Klarheit */
  justify-content: center;
  margin-top: 2.5rem;     /* Abstand nach oben */
  margin-bottom: 1.5rem;  /* kleiner Abstand zur Hinweis-Zeile */
}

.requirements-panel .hero-actions .btn {
  min-width: 220px;
}
.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 48px auto 0 auto;
  padding: 14px 32px;

  font-size: 15px;
  border-radius: 999px;
}
/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .requirements-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .requirements-panel .split-text {
    padding: 4.5rem 1.5rem 3rem;
  }

  /* Bild viel schwächer machen auf Handy */
  .requirements-panel::before {
    background-position: center top;
    opacity: 0.75;                    /* vorher 0.98 */
    filter: grayscale(0.5) brightness(0.5);
  }

  /* Overlay deutlich dunkler, damit Text klar bleibt */
  .requirements-panel::after {
    background:
      linear-gradient(
        to bottom,
      rgba(11, 15, 12, 1) 0%,
      rgba(11, 25, 12, 0.95) 30%,
      rgba(11, 25, 12, 0.75) 45%,
      rgba(11, 25, 12, 0.35) 60%,
      rgba(11, 25, 12, 0.1) 75%,
      rgba(11, 25, 12, 0) 100%
      );
  }
}