/* ===== IN MY LENS – Modern Dark Photography Website ===== */

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700&display=swap');

:root {
  --primary: #000000;
  --secondary: #0a0a0a;
  --tertiary: #141414;
  --accent: #ff6b35;
  --accentDark: #d95428;
  --accentLight: #ff8c5a;
  --accentGlow: rgba(255, 107, 53, 0.15);
  --text: #ffffff;
  --textMuted: rgba(255, 255, 255, .8);
  --textLight: rgba(255, 255, 255, .55);
  --border: rgba(255, 255, 255, .15);
  --borderLight: rgba(255, 255, 255, .08);
  --max: 1400px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 32px;
  --spacing-lg: 64px;
  --spacing-xl: 120px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--primary);
  color: var(--text);
  font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

main {
  padding-top: 140px;
  min-height: calc(100vh - 140px);
}

/* Hero sections brauchen weniger padding, da sie oft fullscreen sind */
.heroFullscreen {
  padding-top: 0;
}

/* Leistungsseite braucht mehr Padding */
.pageLeistungen main,
.page.pageLeistungen main {
  padding-top: 160px;
}

/* Blog-Artikel-Seiten brauchen mehr Padding, damit der Header nicht über den Content liegt */
.pageBlog main {
  padding-top: 160px;
}

/* Blog-Artikel-Seiten (nicht nur Übersicht) brauchen noch mehr Padding */
.pageBlog article.blogPost {
  padding-top: 0;
}

/* Sicherstellen, dass Blog-Artikel genug Abstand haben */
.blogPost header {
  padding-top: 0;
  margin-top: 0;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Hilfsklassen für globale Zentrierung */
.center,
.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.center .lead,
.text-center .lead {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 18px;
  }
}

/* ===== Typography ===== */
h1,
h2,
h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h2 {
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

p,
li,
label,
input,
textarea,
button {
  font-family: 'League Spartan', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 400;
}

.lead {
  max-width: 72ch;
  margin: 24px auto 0;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.85;
  color: var(--textMuted);
  font-weight: 400;
  letter-spacing: 0.01em;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 2.5vw, 16px) clamp(28px, 5vw, 32px);
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 2vw, 13px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 44px;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accentDark);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.35), 0 0 20px rgba(255, 107, 53, 0.15);
  border-color: var(--accentDark);
  background: var(--accentDark);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn.primary {
  background: var(--accent);
}

.btn:not(.primary) {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn:not(.primary):hover {
  background: var(--secondary);
  border-color: var(--accent);
  color: var(--accent);
}

.btnRow {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Header ===== */
.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.siteHeader.scrolled {
  background: rgba(0, 0, 0, 0.95);
  border-bottom-color: rgba(255, 107, 53, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.headerInner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 100;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  position: relative;
  z-index: 10000;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.brandCenter {
  flex: 1;
  display: flex;
  justify-content: center;
}

.brandImg {
  height: 110px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
  filter: brightness(1);
  position: relative;
  z-index: 10;
}

.brandImg:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.navlinks {
  display: flex;
  gap: 32px;
  font-family: 'League Spartan', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Desktop Navigation als Overlay */
@media (max-width: 900px) {
  .navlinks {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 24px);
    padding: 0;
    margin: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.4s ease;
    pointer-events: none;
  }

  .navlinks::before {
    content: "";
    flex: 0 0 auto;
    height: clamp(100px, 20vh, 140px);
    min-height: clamp(100px, 20vh, 140px);
  }

  .navlinks::after {
    content: "";
    flex: 0 0 auto;
    height: clamp(40px, 10vh, 60px);
    min-height: clamp(40px, 10vh, 60px);
  }

  .navlinks.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }

  .navlinks a {
    font-size: clamp(18px, 4vw, 24px);
    padding: clamp(14px, 3vw, 18px) clamp(24px, 6vw, 32px);
    min-width: clamp(180px, 40vw, 240px);
    max-width: 90%;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-20px);
    min-height: 48px;
  }

  .navlinks.open a {
    opacity: 1;
    transform: translateX(0);
  }

  .navlinks.open a:nth-child(1) {
    transition-delay: 0.05s;
  }

  .navlinks.open a:nth-child(2) {
    transition-delay: 0.1s;
  }

  .navlinks.open a:nth-child(3) {
    transition-delay: 0.15s;
  }

  .navlinks.open a:nth-child(4) {
    transition-delay: 0.2s;
  }

  .navlinks.open a:nth-child(5) {
    transition-delay: 0.25s;
  }

  .navlinks.open a:nth-child(6) {
    transition-delay: 0.3s;
  }

  .navlinks a:hover,
  .navlinks a:active {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--accent);
    transform: translateX(0) translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
  }

  .navlinks a[aria-current="page"] {
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
  }

  .navlinks a::after {
    display: none;
  }
}

.navlinks a {
  color: var(--textMuted);
  transition: color 0.3s ease;
  position: relative;
}

.navlinks a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.navlinks a:hover,
.navlinks a[aria-current="page"] {
  color: var(--text);
}

.navlinks a:hover::after,
.navlinks a[aria-current="page"]::after {
  width: 100%;
}

/* Mobile Panel */
.mobilePanel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  padding: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s ease;
  pointer-events: none;
  isolation: isolate;
}

.mobilePanel.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 5vh;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mobilePanel a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  margin: 4px 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--textMuted);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 56px;
  min-width: 280px;
  max-width: 90%;
  -webkit-tap-highlight-color: rgba(255, 107, 53, 0.3);
  position: relative;
  flex: 0 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobilePanel.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobilePanel.open a:nth-child(1) {
  transition-delay: 0.05s;
}

.mobilePanel.open a:nth-child(2) {
  transition-delay: 0.1s;
}

.mobilePanel.open a:nth-child(3) {
  transition-delay: 0.15s;
}

.mobilePanel.open a:nth-child(4) {
  transition-delay: 0.2s;
}

.mobilePanel.open a:nth-child(5) {
  transition-delay: 0.25s;
}

.mobilePanel.open a:nth-child(6) {
  transition-delay: 0.3s;
}

.mobilePanel a:hover,
.mobilePanel a:active {
  color: var(--text);
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.mobilePanel a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
  background: rgba(255, 107, 53, 0.15);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

/* ===== Hero Fullscreen Eyecatcher ===== */
.heroFullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1000px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.heroImageFull {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.heroBgImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Mittlerer Teil des Bildes immer sichtbar, nicht unten abgeschnitten */
  display: block;
  animation: heroImageZoom 20s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.heroImageOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
  animation: overlayPulse 8s ease-in-out infinite alternate;
}

@keyframes overlayPulse {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.85;
  }
}

.heroContent {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max);
  padding: 0 24px;
  text-align: center;
}

.heroCopy {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.heroHeadline {
  margin-bottom: 28px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  font-size: clamp(32px, 5.5vw, 64px);
}

/* Typing Animation */
.typing-text {
  display: inline-block;
  position: relative;
  min-height: 1.2em;
  /* Ensures line-height keeps the box size stable */
  white-space: pre-wrap;
  /* Keeps text from unexpectedly breaking when lines are almost full */
  vertical-align: bottom;
}

.typing-text::after {
  content: "|";
  display: inline-block;
  animation: blink 1s infinite;
  margin-left: 2px;
  color: var(--accent);
  font-weight: 300;
}

.typing-text.typing-complete::after {
  display: none;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

.heroFullscreen .lead {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.8;
  max-width: 680px;
}

.scrollIndicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.scrollArrow {
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}

.scrollArrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateX(-50%) rotate(45deg);
}

/* Kategorie-Hero: Bild ganz oben, Titel darüber */
.categoryHero {
  position: relative;
  width: 100%;
  min-height: 42vh;
  max-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

.categoryHeroImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.categoryHeroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.categoryHeroContent {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 22px;
}

.categoryHeroContent h1 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
}

.categoryHeroContent .lead {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .categoryHero {
    min-height: 35vh;
    max-height: 45vh;
  }

  .categoryHeroContent {
    padding: 32px 18px;
  }
}

/* Legacy Hero (falls noch verwendet) */
.hero {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero.center {
  padding: 40px 0 30px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Categories Grid ===== */
.categories {
  padding: 140px 0;
  position: relative;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}

.categories::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.4;
}

.categories::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  opacity: 0.5;
}

.categoriesGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin-top: 60px;
}

@media (max-width: 1200px) {
  .categoriesGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categoryCard {
    grid-column: span 1;
  }

  .categoryCardWide {
    grid-column: span 2;
  }
}

.categoryCard {
  position: relative;
  overflow: hidden;
  background: var(--tertiary);
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: block;
  text-decoration: none;
  color: inherit;
  z-index: 1;
  pointer-events: auto !important;
  grid-column: span 2;
}

/* Große Kacheln: Drohne + Video (jeweils 1,5× so breit wie die anderen) */
.categoryCardWide {
  grid-column: span 3;
}

/* Alle inneren Elemente blockieren keine Klicks */
.categoryCard>*,
.categoryCard::before,
.categoryCard::after {
  pointer-events: none !important;
}

.categoryCard:nth-child(1) {
  animation-delay: 0.1s;
}

.categoryCard:nth-child(2) {
  animation-delay: 0.2s;
}

.categoryCard:nth-child(3) {
  animation-delay: 0.3s;
}

.categoryCard:nth-child(4) {
  animation-delay: 0.4s;
}

.categoryCard:nth-child(5) {
  animation-delay: 0.5s;
}

.categoryCard:nth-child(6) {
  animation-delay: 0.6s;
}

.categoryCard:nth-child(7) {
  animation-delay: 0.7s;
}

.categoryCard:nth-child(8) {
  animation-delay: 0.8s;
}

/* Video-Kachel: Hintergrundvideo statt Bild */
.categoryCardVideo .categoryImage {
  position: relative;
}

.categoryCardPoster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.categoryCardVideo .categoryCardVideoBg {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.categoryCardVideo.videoPlaying .categoryCardVideoBg {
  opacity: 1;
}

.categoryCardVideoBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  background: var(--tertiary);
  z-index: 1;
}

.categoryCard:hover .categoryCardVideoBg {
  transform: scale(1.12);
  filter: brightness(1) contrast(1.1);
}

.categoryCard:hover {
  transform: translateY(-18px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 28px 80px rgba(255, 107, 53, 0.3), 0 0 0 2px var(--accent), inset 0 0 80px rgba(255, 107, 53, 0.08);
  background: rgba(10, 10, 10, 0.98);
}

.categoryCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.categoryCard:hover::before {
  opacity: 1;
}

.categoryCard::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 3;
  pointer-events: none;
}

.categoryCard:hover::after {
  opacity: 1;
}

.categoryImage {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  background: var(--secondary);
  border-radius: 10px 10px 0 0;
  pointer-events: none !important;
}

.categoryImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.categoryImage img:not([data-loaded]) {
  opacity: 0;
}
.categoryImage img[data-loaded] {
  opacity: 1;
}
.heroBgImage, .brandImg { opacity: 1 !important; }

.categoryImage {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
  filter: brightness(0.85) contrast(1.05);
}

@media (max-width: 768px) {
  .categoryCard[data-category="business"] .categoryImage img {
    object-position: center 32%;
  }

  .categoryCard[data-category="events"] .categoryImage img {
    object-position: center 80%;
  }
}

.categoryCard:hover .categoryImage img {
  transform: scale(1.12);
  filter: brightness(1) contrast(1.1);
}

.categoryOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  transition: opacity 0.6s ease;
  opacity: 0.7;
  pointer-events: none !important;
}

.categoryCard:hover .categoryOverlay {
  opacity: 0.9;
}

.categoryContent {
  padding: 48px 40px;
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  border-radius: 0 0 10px 10px;
  pointer-events: none !important;
}

.categoryContent * {
  pointer-events: none !important;
}

.categoryContent h2 {
  font-size: 32px;
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.categoryContent p {
  color: var(--textMuted);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 16px;
}

.categoryLink {
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  position: relative;
}

.categoryLink::after {
  content: "→";
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
}

.categoryCard:hover .categoryLink {
  color: var(--accentLight);
  transform: translateX(4px);
}

.categoryCard:hover .categoryLink::after {
  transform: translateX(6px);
}

/* ===== Blog Styles ===== */
.blogGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.blogCard {
  background: var(--tertiary);
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: block;
}

.blogCard:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2), 0 0 0 1px var(--accent);
}

.blogThumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--secondary);
  position: relative;
}

.blogThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blogCard:hover .blogThumb img {
  transform: scale(1.1);
}

.blogInfo {
  padding: 32px;
}

.blogCategory {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.blogCard h2 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--text);
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
}

.blogCard p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--textMuted);
  margin: 0 0 16px;
}

.blogDate {
  font-size: 12px;
  color: var(--textLight);
  letter-spacing: 0.05em;
}

/* ===== Services ===== */
.services {
  padding: 100px 0;
  text-align: center;
  background: var(--secondary);
  margin: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.5;
}

.services::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.services>* {
  position: relative;
  z-index: 1;
}

.services h2 {
  margin-bottom: 24px;
}

.services .lead {
  max-width: 800px;
  margin: 24px auto 0;
}

/* ===== Video-Unterseite: Videogalerie (Marketing-Karten) ===== */
.videoShowcase {
  padding: 60px 0 80px;
  text-align: center;
}

.videoShowcase h2 {
  margin-bottom: 12px;
}

.videoShowcaseLead {
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: var(--textMuted);
}

/* Masonry-Galerie: Querformate größer (2 Spalten), Hochformate 1 Spalte */
.videoShowcaseGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  grid-auto-flow: dense;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.videoCard {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Querformat-Videos: doppelt so breit = größere Anzeige */
.videoCard--wide {
  grid-column: span 2;
}

.videoCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.videoCard:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Aspect-Ratio wird per JS aus dem Videoformat gesetzt – Standard 16/9 bis geladen */
.videoCardPreview {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

/* Volles Standbild/Video sichtbar – kein Zoom, kein Abschneiden */
.videoCardVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.videoCardOverlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  pointer-events: none;
  background: transparent;
}

.videoCard.is-playing .videoCardOverlay {
  opacity: 0.6;
}

.videoCardPlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.95);
  box-shadow: 0 4px 24px rgba(255, 107, 53, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}

.videoCardPlay::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.videoCard:hover .videoCardPlay {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--accent);
}

@media (max-width: 900px) {
  .videoShowcaseGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .videoCard--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .videoShowcaseGrid {
    grid-template-columns: 1fr;
  }

  .videoCard--wide {
    grid-column: span 1;
  }

  .videoCardPlay {
    width: 64px;
    height: 64px;
  }

  .videoCardPlay::after {
    border-width: 12px 0 12px 20px;
  }
}

/* ===== Video-Lightbox (Modal zum Abspielen) ===== */
.videoLightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.videoLightbox.open {
  opacity: 1;
  visibility: visible;
}

.videoLightboxInner {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: var(--secondary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.videoLightboxClose {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  padding: 0;
}

.videoLightboxClose:hover {
  background: var(--accent);
}

.videoLightboxPlayer video {
  width: 100%;
  display: block;
  max-height: 80vh;
}

.videoLightboxTitle {
  margin: 0;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  border-top: 1px solid var(--border);
}

/* ===== Footer ===== */
.siteFooter {
  background: var(--secondary);
  border-top: 2px solid var(--border);
  padding: 60px 0 40px;
  margin-top: 60px;
  position: relative;
}

.siteFooter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.4;
}

.footerRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footerCol {
  font-size: 14px;
  color: var(--textMuted);
}

.footerCol a {
  color: var(--textMuted);
  transition: color 0.2s ease;
}

.footerCol a:hover {
  color: var(--text);
}

.footerCenter {
  text-align: center;
}

.footerRight {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.social {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--textMuted);
  transition: color 0.2s ease;
}

.social:hover {
  color: var(--accent);
}

.socialIcon {
  width: 20px;
  height: 20px;
}

/* ===== Back to Top ===== */
.toTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  transition: all 0.3s ease;
}

.toTop:hover {
  background: var(--accentDark);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

/* ===== Scroll Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero sofort sichtbar (keine Animation) */
.heroFullscreen,
.heroFullscreen * {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Portfolio Gallery ===== */
.portfolioGallery {
  margin: 80px 0;
}

.portfolioGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  align-items: start;
}

@media (max-width: 900px) {
  .portfolioGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .portfolioGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.portfolioItem {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--tertiary);
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.portfolioItem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 107, 53, 0);
  transition: background 0.35s ease;
  z-index: 1;
  pointer-events: none;
}

.portfolioItem:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
}

.portfolioItem:hover::before {
  background: rgba(255, 107, 53, 0.1);
}

.portfolioItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolioItem:hover img {
  transform: scale(1.08);
}

/* ===== Service Rows (wie Wedding-Seite) ===== */
.svcRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 80px 0;
}

@media (max-width: 900px) {
  .svcRow {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 60px 0;
  }
}

.svcAlt .svcMedia {
  order: 2;
}

.svcAlt .svcText {
  order: 1;
}

@media (max-width: 900px) {

  .svcAlt .svcMedia,
  .svcAlt .svcText {
    order: initial;
  }
}

.svcMedia {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  /* Anpassungen je nach Screen falls nötig, für jetzt belassen wir es dynamisch. */
}

@media (max-width: 900px) {
  /* Gleiches hier */
}

.svcMedia img,
.svcMedia video {
  width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.svcMedia video {
  object-fit: contain;
  max-height: none;
  width: 100%;
  height: auto;
}

.svcMedia:hover img,
.svcMedia:hover video {
  transform: scale(1.05);
}

.svcText h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.3;
}

.svcText .lead {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--textMuted);
}

.svcList {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.75;
  opacity: 0.9;
}

.svcList li {
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
  color: var(--textMuted);
  line-height: 1.6;
  margin: 6px 0;
}

.svcList li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
}

/* ===== Über mich ===== */

/* Hero: Video oben in Dauerschleife */
.pageAbout .aboutHero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
}

.pageAbout .aboutHeroVideoWrap {
  position: absolute;
  inset: 0;
}

.pageAbout .aboutHeroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.pageAbout .aboutHeroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .pageAbout .aboutHero {
    height: 55vh;
    min-height: 350px;
    max-height: 500px;
  }
}

/* Text und Bild Section - nebeneinander */
.pageAbout .aboutTextImage {
  padding: 72px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.pageAbout .aboutImageInner {
  overflow: hidden;
  background: var(--tertiary);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2), 0 1px 4px rgba(0, 0, 0, .1);
}

.pageAbout .aboutImageInner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.pageAbout .aboutTextContent {
  padding-top: 0;
}

.pageAbout .aboutTextContent h1 {
  margin: 0 0 24px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.3;
  letter-spacing: .05em;
}

.pageAbout .aboutTextContent .lead {
  margin: 0 0 24px;
}

.pageAbout .aboutTextContent p {
  margin: 0 0 18px;
  line-height: 1.85;
  opacity: .9;
  color: var(--textMuted);
}

.pageAbout .aboutTextContent p:last-child {
  margin-bottom: 0;
}

.pageAbout .narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

@media (max-width: 900px) {
  .pageAbout .aboutTextImage {
    padding: 56px 0;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pageAbout .aboutTextContent {
    text-align: center;
  }
}

.svcList li:last-child {
  margin-bottom: 0;
}

/* ===== Portfolio Scroll Band ===== */
.portfolioScrollBand {
  padding: 60px 0;
  position: relative;
}

.scrollBandContainer {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  padding: 0 20px;
}

.scrollBandContainer::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.scrollBandTrack {
  display: flex;
  gap: 24px;
  padding: 0 20px;
  min-width: max-content;
}

.scrollBandItem {
  flex: 0 0 auto;
  width: 400px;
  height: 500px;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--tertiary);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15), 0 1px 4px rgba(0, 0, 0, .1);
}

.scrollBandItem:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2), 0 4px 12px rgba(0, 0, 0, .15);
}

.scrollBandImage {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.scrollBandImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scrollBandItem:hover .scrollBandImage img {
  transform: scale(1.1);
}

.scrollBandOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  padding: 40px 32px 32px;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scrollBandItem:hover .scrollBandOverlay {
  transform: translateY(-8px);
}

.scrollBandOverlay h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.scrollBandHint {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--textMuted);
  opacity: 0.6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .scrollBandItem {
    width: 320px;
    height: 400px;
  }

  .scrollBandOverlay {
    padding: 32px 24px 24px;
  }

  .scrollBandOverlay h3 {
    font-size: 24px;
  }

  .scrollBandHint {
    display: none;
  }
}

@media (max-width: 600px) {
  .scrollBandItem {
    width: 280px;
    height: 350px;
  }

  .scrollBandOverlay h3 {
    font-size: 20px;
  }

  .scrollBandTrack {
    gap: 16px;
  }
}

/* ===== Portfolio Categories (Overview Page) ===== */
.portfolioCategories {
  padding: 60px 0;
}

.portfolioCategorySection {
  margin-bottom: 80px;
}

.portfolioCategorySection:last-child {
  margin-bottom: 0;
}

.portfolioCategoryTitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text);
  letter-spacing: -0.5px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.portfolioCategoryTitle:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.portfolioCategoryTitle span:first-child {
  display: inline-block;
}

.portfolioCategoryHint {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 400;
  color: var(--textMuted);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.portfolioCategoryTitle:hover .portfolioCategoryHint {
  opacity: 1;
  transform: translateX(0);
}

.portfolioCategoryScroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  padding: 0 20px;
}

.portfolioCategoryScroll::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.portfolioCategoryTrack {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  min-width: max-content;
}

.portfolioCategoryItem {
  flex: 0 0 auto;
  width: 300px;
  height: 400px;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--tertiary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2), 0 1px 4px rgba(0, 0, 0, .1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  text-decoration: none;
}

.portfolioCategoryItem:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.25), 0 4px 12px rgba(0, 0, 0, .15);
}

.portfolioCategoryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolioCategoryItem:has(img.img-error) {
  display: none;
}

.portfolioCategoryItem:hover img {
  transform: scale(1.1);
}

.portfolioCategoryItemVideo {
  position: relative;
  overflow: hidden;
}

.portfolioCategoryItemVideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolioCategoryItemVideo .portfolioVideoPoster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolioCategoryPlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.portfolioCategoryPlay::after {
  content: "";
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/60% no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/60% no-repeat;
}

/* „Mehr ansehen“ dezent als Button am Ende jedes Streifens */
.portfolioCategoryMore {
  flex: 0 0 auto;
  align-self: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--textMuted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.portfolioCategoryMore:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 107, 53, 0.06);
}

@media (max-width: 900px) {
  .portfolioCategoryItem {
    width: 260px;
    height: 350px;
  }

  .portfolioCategorySection {
    margin-bottom: 60px;
  }

  .portfolioCategoryHint {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .portfolioCategoryItem {
    width: 220px;
    height: 300px;
  }

  .portfolioCategoryTrack {
    gap: 16px;
  }

  .portfolioCategoryTitle {
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .portfolioCategoryHint {
    font-size: 12px;
    opacity: 0.8;
  }

  .portfolioCategoryTitle:hover .portfolioCategoryHint {
    opacity: 1;
  }
}

/* ===== Category Gallery (Individual Category Pages) ===== */
.categoryGallery {
  padding: 60px 0;
}

.categoryGalleryGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.categoryGalleryItem {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--tertiary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2), 0 1px 4px rgba(0, 0, 0, .1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  aspect-ratio: 4 / 5;
}

.categoryGalleryItem:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.25), 0 4px 12px rgba(0, 0, 0, .15);
}

.categoryGalleryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.categoryGalleryItem img:not([data-loaded]) {
  opacity: 0;
}
.categoryGalleryItem img[data-loaded] {
  opacity: 1;
}
.categoryGalleryItem:has(img.img-error) {
  display: none;
}

.categoryGalleryItem:hover img {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .categoryGalleryGrid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .categoryGalleryGrid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
  }
}

/* Mixed-Media-Galerie (Bilder + Videos) – Masonry mit variablen Größen */
.categoryMediaGrid {
  column-count: 4;
  column-gap: 16px;
  margin-top: 40px;
}

.categoryMediaItem {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--tertiary);
  break-inside: avoid;
  min-height: 120px;
  margin-bottom: 16px;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.categoryMediaImage {
  text-decoration: none;
}

.categoryMediaItem img,
.categoryMediaItem video {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  transition: opacity 0.4s ease;
}
.categoryMediaItem img:not([data-loaded]) {
  opacity: 0;
}
.categoryMediaItem img[data-loaded] {
  opacity: 1;
}
.categoryMediaItem video {
  background: var(--tertiary);
}

/* Poster definiert Größe – Originalformat (Portrait/Landscape) bleibt erhalten */
.categoryMediaVideo {
  position: relative;
  min-height: 0;
  /* Placeholder wirkt wie Thumbnail-Karte, nicht wie leerer Block */
  background: linear-gradient(180deg, #1a1a1a 0%, #222 40%, #181818 100%);
}
.categoryMediaVideo .categoryMediaPoster {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  vertical-align: top;
  position: relative;
  z-index: 2;
}
.categoryMediaVideo video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

.categoryMediaPlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.categoryMediaPlay::after {
  content: "";
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/70% no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/70% no-repeat;
}

.lbVideo {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
}

@media (max-width: 900px) {
  .categoryMediaGrid {
    column-count: 3;
    column-gap: 12px;
  }

  .categoryMediaItem {
    margin-bottom: 12px;
  }
}

@media (max-width: 600px) {
  .categoryMediaGrid {
    column-count: 2;
    column-gap: 12px;
  }

  .categoryMediaItem {
    margin-bottom: 12px;
  }
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 18px;
  opacity: 0;
  transition: opacity .3s ease;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lbInner {
  position: relative;
  max-width: 1200px;
  width: 100%;
}

.lbImg {
  width: 100%;
  height: auto;
  display: block;
  background: #111;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity .3s ease, transform .3s ease;
}

.lightbox.open .lbImg {
  opacity: 1;
  transform: scale(1);
}

.lbClose {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(0, 0, 0, .4);
  color: #fff;
  font-size: 28px;
  line-height: 42px;
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
  z-index: 10000;
  opacity: 0.7;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lbClose:hover {
  background: rgba(0, 0, 0, .6);
  transform: scale(1.1);
  opacity: 1;
}

.lbArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 24px;
  line-height: 46px;
  cursor: pointer;
  opacity: .85;
  border-radius: 50%;
  transition: background .2s ease, opacity .2s ease, transform .2s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.lbArrow:hover {
  background: rgba(0, 0, 0, .7);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.lbPrev {
  left: 12px;
}

.lbNext {
  right: 12px;
}

/* Klickzonen: links = vorheriges Bild, rechts = nächstes Bild */
.lbZone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 45%;
  cursor: pointer;
  z-index: 2;
  border: none;
  background: transparent;
}

.lbZonePrev {
  left: 0;
}

.lbZoneNext {
  right: 0;
}

@media (max-width: 600px) {
  .lbClose {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 38px;
  }

  .lbArrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .lbPrev {
    left: 8px;
  }

  .lbNext {
    right: 8px;
  }
}

/* ===== Über mich ===== */

/* Hero: Video oben in Dauerschleife */
.pageAbout .aboutHero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
}

.pageAbout .aboutHeroVideoWrap {
  position: absolute;
  inset: 0;
}

.pageAbout .aboutHeroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.pageAbout .aboutHeroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .pageAbout .aboutHero {
    height: 55vh;
    min-height: 350px;
    max-height: 500px;
  }
}

/* Text und Bild Section - nebeneinander */
.pageAbout .aboutTextImage {
  padding: 72px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.pageAbout .aboutImageInner {
  overflow: hidden;
  background: var(--tertiary);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2), 0 1px 4px rgba(0, 0, 0, .1);
}

.pageAbout .aboutImageInner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.pageAbout .aboutTextContent {
  padding-top: 0;
}

.pageAbout .aboutTextContent h1 {
  margin: 0 0 24px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.3;
  letter-spacing: .05em;
}

.pageAbout .aboutTextContent .lead {
  margin: 0 0 24px;
}

.pageAbout .aboutTextContent p {
  margin: 0 0 18px;
  line-height: 1.85;
  opacity: .9;
  color: var(--textMuted);
}

.pageAbout .aboutTextContent p:last-child {
  margin-bottom: 0;
}

.pageAbout .narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

@media (max-width: 900px) {
  .pageAbout .aboutTextImage {
    padding: 56px 0;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pageAbout .aboutTextContent {
    text-align: center;
  }
}

/* ===== Trust Section (Social Proof) ===== */
.trustSection {
  padding: 80px 0;
  background: var(--secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.trustSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.4;
}

.trustGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.trustItem {
  position: relative;
  padding: 20px;
  transition: transform 0.3s ease;
}

.trustItem:hover {
  transform: translateY(-4px);
}

.trustNumber {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.trustLabel {
  font-size: 14px;
  color: var(--textMuted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ===== Portfolio Highlights – Masonry Meine Arbeiten ===== */
.portfolioHighlights {
  padding: 100px 0;
  background: var(--primary);
}

.sectionHeader {
  margin-bottom: 60px;
}

.masonryGrid {
  column-count: 4;
  column-gap: 16px;
  max-width: 100%;
  margin: 0 auto;
}

.masonryItem {
  display: block;
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--tertiary);
}

.masonryItem:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.masonryItem img,
.masonryItem video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  vertical-align: bottom;
  transition: opacity 0.4s ease;
}
.masonryItem img:not([data-loaded]) {
  opacity: 0;
}
.masonryItem img[data-loaded] {
  opacity: 1;
}
.masonryItem:has(img.img-error) {
  display: none;
}
.masonryItem video {
  background: var(--tertiary);
}

/* Video-Items: Poster sichtbar, Video darüber beim Abspielen */
.masonryItem:has(.masonryVideo) {
  position: relative;
}
.masonryItem .masonryVideoPoster {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  vertical-align: bottom;
}
.masonryItem .masonryVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .masonryGrid {
    column-count: 3;
  }
}

@media (max-width: 700px) {
  .masonryGrid {
    column-count: 2;
    column-gap: 12px;
  }

  .masonryItem {
    margin-bottom: 12px;
  }
}

.showcaseRotator {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 520px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--border);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.showcaseRotator:hover {
  box-shadow: 0 24px 72px rgba(255, 107, 53, 0.15), 0 0 0 1px var(--accent);
  transform: translateY(-4px);
}

.showcaseSlides {
  position: relative;
  width: 100%;
  height: 100%;
}

.showcaseSlide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s;
  z-index: 0;
}

.showcaseSlide.is-visible {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.showcaseSlide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: showcaseKenBurns 18s ease-in-out infinite;
}

.showcaseSlide.is-visible img {
  animation-play-state: running;
}

.showcaseSlide:not(.is-visible) img {
  animation-play-state: paused;
}

@keyframes showcaseKenBurns {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.06) translate(-1%, -1%);
  }
}

.showcaseSlideLabel {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 20px;
  background: rgba(255, 107, 53, 0.92);
  border-radius: 6px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  transition: opacity 0.5s ease;
}

.showcaseSlide:not(.is-visible) .showcaseSlideLabel {
  opacity: 0;
}

.showcaseSlide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

.showcaseDots {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.showcaseDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.showcaseDot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.showcaseDot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

/* ===== Why Me Section ===== */
.whyMe {
  padding: 100px 0;
  background: var(--secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.whyMeContent {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.whyMeText h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 5vw, 48px);
}

.whyMeText .lead {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.8;
}

.whyMeText p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--textMuted);
  font-size: 16px;
}

.whyMeText p strong {
  color: var(--text);
  font-weight: 600;
}

.whyMeImage {
  position: relative;
}

.whyMeImageInner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.whyMeImageInner:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(255, 107, 53, 0.3);
}

.whyMeImageInner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .headerInner {
    padding: 20px 18px;
  }

  .navlinks {
    display: none;
  }

  .burger {
    display: flex;
  }

  .brandImg {
    height: 100px;
  }

  main {
    padding-top: 120px;
  }

  .pageLeistungen main,
  .page.pageLeistungen main {
    padding-top: 140px;
  }

  .mobilePanel a {
    padding: 16px 28px;
    font-size: 18px;
    min-width: 260px;
  }

  .heroFullscreen {
    min-height: 600px;
    max-height: 800px;
  }

  .heroHeadline {
    font-size: clamp(28px, 7vw, 48px);
    margin-bottom: 24px;
  }

  .heroFullscreen .lead {
    font-size: 16px;
    padding: 0 16px;
  }

  .scrollIndicator {
    bottom: 24px;
    font-size: 11px;
  }

  .categories {
    padding: 100px 0;
  }

  .categoriesGrid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 60px;
  }

  .categoryCard,
  .categoryCardWide {
    grid-column: span 1;
  }

  .categoryImage {
    height: 350px;
  }

  .categoryContent {
    padding: 36px 28px;
  }

  .categoryContent h2 {
    font-size: 26px;
  }

  .footerRow {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footerRight {
    justify-content: center;
  }

  .services {
    padding: 100px 0;
    margin: 0;
  }

  .trustGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .showcaseRotator {
    aspect-ratio: 16 / 9;
    max-height: 400px;
  }

  .whyMeContent {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .whyMeImage {
    order: -1;
  }
}

@media (max-width: 600px) {
  .trustGrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcaseRotator {
    aspect-ratio: 4 / 3;
    max-height: 320px;
    border-radius: 12px;
  }

  .showcaseSlideLabel {
    font-size: 11px;
    padding: 8px 14px;
    bottom: 16px;
    left: 16px;
  }

  .showcaseDots {
    bottom: 16px;
    right: 16px;
  }

  .trustSection {
    padding: 60px 0;
  }

  .portfolioHighlights {
    padding: 60px 0;
  }

  .whyMe {
    padding: 60px 0;
  }
}

@media (max-width: 600px) {
  main {
    padding-top: clamp(90px, 14vh, 100px);
  }

  .pageLeistungen main,
  .page.pageLeistungen main {
    padding-top: clamp(110px, 17vh, 120px);
  }

  .headerInner {
    padding: clamp(14px, 3vw, 16px);
  }

  .brandImg {
    height: clamp(80px, 15vw, 95px);
  }

  .mobilePanel a {
    padding: clamp(14px, 3vw, 16px) clamp(18px, 4vw, 24px);
    font-size: clamp(14px, 3vw, 16px);
    min-height: clamp(48px, 8vw, 52px);
    min-width: clamp(220px, 45vw, 240px);
    max-width: 85%;
  }

  .burger {
    padding: clamp(8px, 2vw, 10px);
    min-width: clamp(38px, 8vw, 40px);
    min-height: clamp(38px, 8vw, 40px);
  }

  .burger span {
    width: clamp(20px, 4vw, 22px);
  }

  .navlinks {
    gap: clamp(12px, 2.5vw, 16px);
    padding: clamp(70px, 12vh, 80px) clamp(18px, 4vw, 20px) clamp(25px, 5vh, 30px);
  }

  .navlinks a {
    font-size: clamp(16px, 3.5vw, 18px);
    padding: clamp(12px, 2.5vw, 14px) clamp(20px, 5vw, 24px);
    min-width: clamp(160px, 35vw, 180px);
    min-height: clamp(44px, 7vw, 48px);
  }

  .categoryImage {
    height: 240px;
  }

  .categoryContent {
    padding: 24px;
  }

  .btnRow {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* =========================================================================
   MOBILE SOCIAL BAR (Sticky Footer)
   ========================================================================= */

.mobile-social-bar {
  display: none;
  /* Desktop hidden */
}

@media (max-width: 768px) {
  .mobile-social-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--textMuted);
    text-decoration: none;
    font-size: 10px;
    font-weight: 400;
    width: 100%;
    height: 100%;
    transition: color 0.3s ease;
  }

  .mobile-social-item:hover,
  .mobile-social-item:active {
    color: var(--accent);
  }

  .mobile-social-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
  }

  /* Padding for body so content doesn't get hidden behind the bar */
  body {
    padding-bottom: 60px;
  }
}

/* ===== Kontakt: Mobile-Optimierung ===== */
@media (max-width: 600px) {
  .contactFormGrid {
    grid-template-columns: 1fr !important;
  }

  .contactFormBox {
    padding: 24px 20px !important;
    border-radius: 12px !important;
  }

  .contactFormBox input,
  .contactFormBox textarea {
    font-size: 16px !important; /* Verhindert iOS-Zoom beim Fokussieren */
    width: 100% !important;
    box-sizing: border-box !important;
  }
}