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

:root {
  --bg: #07070a;
  --bg2: #0e0e14;
  --text: #f7f7fa;
  --muted: #b5b5c0;

  --pink: #ff2bd6;
  --blue: #36a8ff;
  --purple: #a64cff;
  --line: #292933;

  /* Grundfarben der dynamischen Sections */
  --section-bg-dark: #101019;
  --section-bg-purple: #18172d;
  --section-bg-deep: #171124;


  /* ABOUT */
  --about-glow: 255, 48, 48;

  /* REFERENCES */
  --references-glow: 57, 255, 20;

  /* Gemeinsames sekundäres Licht */
  --section-glow-secondary: 166, 76, 255;
  
  /* Galeri */
  --gallery-glow: 255, 43, 214;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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


/* =========================
   HEADER
   ========================= */

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(5, 5, 8, 0.96);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid #17171e;
  backdrop-filter: blur(14px);
}

.brand img {
  width: 205px;
  height: auto;
  display: block;
}

.site-header nav {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.site-header nav a {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ddd;
  position: relative;
  padding: 33px 0;
  white-space: nowrap;
}

.site-header nav a::after {
  content: "";
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 23px;
  transition: 0.25s;
}

.site-header nav a:hover::after,
.site-header nav a.active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.8rem;
}


/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 92px;
  height: auto;
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3,4,10,.87) 0%,
      rgba(4,5,12,.72) 32%,
      rgba(5,6,15,.24) 66%,
      rgba(5,5,8,.52) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0,0,0,.4),
      transparent 40%
    );
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: 620px;
  margin-left: 7vw;
  padding: 60px 0;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: #fff;
  margin: 0 0 15px;
}

.eyebrow.purple {
  color: #bf6cff;
}

.hero h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.03em;
  line-height: 0.92;
  margin: 0;
}

.hero h1 {
  font-size: clamp(5rem, 9vw, 8.7rem);
  text-shadow: 0 0 35px rgba(54, 168, 255, 0.12);
}

.hero h1 span,
h2 span {
  color: var(--pink);
}

/* Glow für "LAUT." */
.hero h1 span {
  text-shadow:
    0 0 20px rgba(255, 43, 214, 0.25);
}

/* Stärkerer Glow nur für Chrome */
.chrome .hero h1 span {
  text-shadow:
    0 0 4px rgba(255, 43, 214, 0.8),
    0 0 9px rgba(255, 43, 214, 0.6),
    0 0 18px rgba(255, 43, 214, 0.45),
    0 0 32px rgba(255, 43, 214, 0.25);
}

.hero-text {
  font-size: 1.1rem;
  max-width: 520px;
  color: #ddd;
  margin: 28px 0;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 25px;
  border: 1px solid var(--blue);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.25s;
  color: #fff;
  background: #09090c;
}

.btn-primary {
  border-color: var(--pink);
  background: linear-gradient(
    90deg,
    rgba(255, 43, 214, 0.16),
    rgba(166, 76, 255, 0.12)
  );
  color: #fff;
  box-shadow: 0 0 22px rgba(255, 43, 214, 0.16);
}

.btn-primary:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 35px rgba(255, 43, 214, 0.4);
}

.btn-secondary {
  color: #fff;
  background: #09090c;
}

.btn-secondary:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 35px rgba(54, 168, 255, 0.35);
}


/* =========================
   USP
   ========================= */

.usp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #09090d;
  border-top: 1px solid #1d1d25;
  border-bottom: 1px solid #1d1d25;
}

.usp article {
  text-align: center;
  padding: 42px 30px;
  border-right: 1px solid #282832;
}

.usp article:last-child {
  border: 0;
}

.icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.usp article:nth-child(1) .icon {
  color: #a64cff;
  text-shadow: 0 0 18px rgba(166, 76, 255, 0.65);
}

.usp article:nth-child(2) .icon {
  color: #39ff14;
  text-shadow: 0 0 18px rgba(57, 255, 20, 0.65);
}

.usp article:nth-child(3) .icon {
  color: #ff3b30;
  text-shadow: 0 0 18px rgba(255, 59, 48, 0.65);
}

.usp article:nth-child(4) .icon {
  color: #ffd400;
  text-shadow: 0 0 18px rgba(255, 212, 0, 0.65);
}

.usp h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: 0.06em;
}

.usp p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}


/* =========================
   SECTIONS
   ========================= */

.section {
  padding: 70px 7vw;
}


/* =========================
   ABOUT
   ========================= */

.about {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 7vw;
  align-items: center;

  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(var(--about-glow), 0.20) 0%,
      transparent 38%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(var(--section-glow-secondary), 0.12) 0%,
      transparent 42%
    ),
    linear-gradient(
      135deg,
      var(--section-bg-purple) 0%,
      var(--section-bg-dark) 55%,
      var(--section-bg-deep) 100%
    );

  color: #fff;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.about h2,
.references h2,
.gallery h2 {
  font-size: clamp(4rem, 6vw, 6rem);
}

.about h2,
.references h2 {
  color: #fff;
}

.about-copy p:not(.eyebrow) {
  color: #e5f4ff;
}

.about .line {
  background: linear-gradient(
    90deg,
    var(--pink),
    #7ed8ff
  );
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
  color: #b695fe;
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.35),
    0 0 45px rgba(var(--section-glow-purple), 0.08);
}


/* =========================
   REPERTOIRE
   ========================= */

.repertoire {
  background: radial-gradient(
    circle at 20% 0%,
    #111f3c 0,
    #080812 45%,
    #12071a 100%
  );
}

.center-head {
  text-align: center;
  margin-bottom: 55px;
}

.center-head h2 {
  font-size: clamp(3.5rem, 6vw, 6rem);
}

.center-head p:last-child {
  color: var(--muted);
  margin-top: 15px;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: #252534;
}

.genre-grid div {
  background: #0a0a10;
  min-height: 185px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.25s;
}

.genre-grid div:hover {
  background: #121220;
  transform: translateY(-5px);
}

.genre-grid span {
  font-size: 2.4rem;
  margin-bottom: 12px;
  font-variant-emoji: text;
}

.genre-grid div:nth-child(1) span {
  color: #ffd400;
  text-shadow: 0 0 18px rgba(255, 212, 0, 0.65);
}

.genre-grid div:nth-child(2) span {
  color: #39ff14;
  text-shadow: 0 0 18px rgba(57, 255, 20, 0.65);
}

.genre-grid div:nth-child(3) span {
  color: #ff3b30;
  text-shadow: 0 0 18px rgba(255, 59, 48, 0.65);
}

.genre-grid div:nth-child(4) span {
  color: #ff7a00;
  text-shadow: 0 0 18px rgba(255, 122, 0, 0.65);
}

.genre-grid div:nth-child(5) span {
  color: #a64cff;
  text-shadow: 0 0 18px rgba(166, 76, 255, 0.65);
}

.genre-grid div:nth-child(6) span {
  color: #36a8ff;
  text-shadow: 0 0 18px rgba(54, 168, 255, 0.65);
}

.genre-grid strong {
  text-transform: uppercase;
  font-size: 0.82rem;
}

.genre-grid small {
  color: #888;
  margin-top: 5px;
}


/* =========================
   REFERENCES
   ========================= */

.references {
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(var(--references-glow), 0.10) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 10% 85%,
      rgba(var(--section-glow-secondary), 0.18) 0%,
      transparent 42%
    ),
    linear-gradient(
      135deg,
      var(--section-bg-purple) 0%,
      var(--section-bg-dark) 50%,
      var(--section-bg-deep) 100%
    );
}

.references h2 {
  color: #fff;
}

.reference-columns {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.reference-columns h3 {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 18px;
}

.reference-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.reference-columns li {
  position: relative;
  padding: 11px 16px 11px 34px;
  color: #fff;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.045),
      rgba(255,255,255,.015)
    );

  border: 1px solid rgba(255,255,255,.14);
  border-radius: 5px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.025),
    0 8px 25px rgba(0,0,0,.10);

  transition: .2s ease;
}

.reference-columns li::before {
  content: "→";
  position: absolute;
  left: 13px;
  color: var(--pink);
  font-weight: 800;
}

.quote {
  margin-top: 30px;

  border-left: 4px solid var(--pink);

  padding: 18px 22px;

  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;

  background:
    linear-gradient(
      90deg,
      rgba(255,43,214,.08),
      rgba(0,0,0,.10)
    );

  box-shadow:
    0 12px 35px rgba(0,0,0,.10);
}


/* =========================
   GALLERY
   ========================= */

.gallery {
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(var(--gallery-glow), 0.18) 0%,
      transparent 38%
    ),
    radial-gradient(
      circle at 12% 82%,
      rgba(var(--section-glow-secondary), 0.10) 0%,
      transparent 42%
    ),
    linear-gradient(
      135deg,
      #1b1020 0%,
      var(--section-bg-dark) 55%,
      #160d1b 100%
    );

  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.gallery-main {
  max-width: 1200px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-main img {
  width: 100%;
  display: block;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 65px 35px 25px;
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.9)
  );
  display: flex;
  flex-direction: column;
}

.gallery-caption span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #bbb;
}

.gallery-caption strong {
  font-family: "Bebas Neue";
  font-size: 3rem;
}

.gallery-note {
  text-align: center;
  color: #777;
  margin-top: 18px;
  font-size: 0.85rem;
}


/* =========================
   CONTACT
   ========================= */

.contact {
  background: linear-gradient(115deg, #071528, #11071a);
  padding: 100px 7vw;
  border-top: 1px solid #1e2030;
}

.contact-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact h2 {
  font-size: clamp(3.3rem, 5vw, 5.5rem);
}

.contact p:not(.eyebrow) {
  color: #c3c3cc;
  max-width: 560px;
}

.contact-details {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-details a {
  font-weight: 800;
}

.contact-details a:hover {
  color: var(--pink);
}

.contact-form {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border: 1px solid #29293a;
}

.contact-form label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  background: #09090e;
  border: 1px solid #30303c;
  color: #fff;
  padding: 13px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
}

.contact-form button {
  margin-top: 5px;
}

.contact-form small {
  display: block;
  color: #777;
  margin-top: 14px;
  font-size: 0.72rem;
}

.contact-icon {
  color: #ff8a00;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}

.mail-icon {
  display: inline-block;
  transform: scale(1.9) translateY(-1.5px);
  transform-origin: center;
  margin-right: 5px;
}
/* =========================
   FOOTER
   ========================= */

footer {
  background: #050507;
  padding: 35px 7vw 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #202027;
  padding-bottom: 25px;
}

.footer-top img {
  width: 175px;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid #33333c;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
}

.socials a:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 0.72rem;
  padding-top: 18px;
}

.footer-bottom a:hover {
  color: #fff;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1000px) and (orientation: portrait) {
  .site-header nav {
    gap: 1.1rem;
  }

  .genre-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .usp {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp article:nth-child(2) {
    border-right: 0;
  }

  .usp article:nth-child(-n + 2) {
    border-bottom: 1px solid #282832;
  }

  .about,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .about {
    gap: 45px;
  }

  .reference-columns {
    gap: 40px;
  }

  /* Hero auf kleineren Desktop-/Tablet-Breiten */
  .hero {
    position: relative;
    min-height: 620px;
  }

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

  .hero-content {
    position: relative;
    inset: auto;
    margin-left: 7vw;
    padding: 60px 0 70px;
    min-height: 620px;
  }
}


/* Mobile-only band photo above the hero. Hidden by default. */
.mobile-band-top {
  display: none;
}

/* Only show the separate mobile band image on phones in portrait mode. */
@media (max-width: 720px) and (orientation: portrait) and (hover: none) and (pointer: coarse) {
  .mobile-band-top {
    display: block;
  }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 720px) and (orientation: portrait) {
  .mobile-band-top {
    display: block;
    width: 100%;
    margin-top: 75px;
    overflow: hidden;
    background: #07070a;
  }

  .mobile-band-top picture {
    display: block;
    width: 100%;
  }

  .mobile-band-top img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .site-header {
    height: 75px;
    padding: 0 5vw;
  }

  .brand img {
    width: 155px;
  }

  .menu-toggle {
    display: block;
  }

  .site-header nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: #08080b;
    padding: 10px 5vw 20px;
    border-bottom: 1px solid #25252e;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .site-header nav.open {
    display: flex;
  }

  .site-header nav a {
    padding: 13px 0;
    width: 100%;
  }

  .site-header nav a::after {
    bottom: 5px;
  }

  .hero {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-top: 0;
    overflow: hidden;
    background: #07070a;
  }

  .hero > .hero-photo,
  .hero > .hero-overlay {
    display: none;
  }

  .hero-content {
    display: contents;
  }

  .hero-copy {
    order: 1;
    position: relative;
    padding: 28px 5vw 30px;
    background:
      radial-gradient(circle at 15% 20%, rgba(54, 168, 255, 0.22), transparent 34%),
      radial-gradient(circle at 88% 18%, rgba(255, 43, 214, 0.16), transparent 32%),
      linear-gradient(180deg, #0b111d 0%, #09090e 72%, #07070a 100%);
  }

  .hero-copy::after {
    content: "";
    position: absolute;
    left: 5vw;
    right: 5vw;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--pink), var(--blue), transparent);
    opacity: 0.7;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 18vw, 5.6rem);
    line-height: 0.84;
    margin: 0;
  }

  .hero-text {
    max-width: 34rem;
    margin: 24px 0 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #d3d3da;
  }

  .hero .buttons {
    order: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    padding: 24px 5vw 42px;
    background: #07070a;
  }

  .hero .buttons .btn {
    width: 100%;
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
    white-space: nowrap;
  }

  .section {
    padding: 50px 5vw;
  }

  .usp {
    grid-template-columns: 1fr;
  }

  .usp article {
    border-right: 0;
    border-bottom: 1px solid #282832 !important;
  }

  .usp article:last-child {
    border-bottom: 0 !important;
  }

  .genre-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .genre-grid div {
    min-height: 145px;
  }

  .reference-columns {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 75px 5vw;
  }

  .contact-inner {
    gap: 45px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .gallery-caption strong {
    font-size: 2.2rem;
  }
}

@media (max-width: 380px) and (orientation: portrait) {
  .hero h1 {
    font-size: 3.8rem;
  }

  .hero .buttons {
    grid-template-columns: 1fr;
  }
}


/* =========================
   INTERACTIVE GALLERY
   ========================= */

.gallery .center-head h2 {
  color: #fff;
}

.gallery .center-head h2 span {
  color: var(--pink);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid #262631;
  background: #0c0c12;
  cursor: pointer;
}

.gallery-item {
  aspect-ratio: 4 / 3;
}

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

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.72);
}

.gallery-item::after {
  content: "＋";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%) scale(0.8);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  transition: 0.25s;
  background: rgba(0, 0, 0, 0.25);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-label {
  position: absolute;
  left: 16px;
  bottom: 13px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px #000;
  z-index: 2;
}

.gallery-placeholder {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 25px;
  border: 1px dashed #373743;
  color: #777;
  background: #0b0b10;
}

.gallery-placeholder strong {
  color: #aaa;
  display: block;
  margin-bottom: 6px;
}

.gallery-placeholder code {
  color: #aaa;
}

.gallery-help {
  max-width: 1200px;
  margin: 18px auto 0;
  color: #777;
  font-size: 0.78rem;
  text-align: center;
}


/* =========================
   LIGHTBOX
   ========================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 35px;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: min(1200px, 90vw);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 1px solid #555563;
  background: rgba(10, 10, 14, 0.8);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.2s;
}

.lightbox-close {
  right: 24px;
  top: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 72px;
  font-size: 2rem;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #aaa;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}


/* =========================
   MOBILE GALLERY
   ========================= */

@media (max-width: 720px) and (orientation: portrait) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .lightbox {
    padding: 20px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 58px;
  }
}


/* =========================
   VIDEO
   ========================= */

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto 45px;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #262631;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* =========================
   H2 ACCENT COLORS
   ========================= */

.about h2 span {
  color: rgb(217, 36, 36);
  text-shadow: 0 0 20px rgba(255, 48, 48, 0.25);
}

.references h2 span {
  color: #39ff14;
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.20);
}

.gallery .center-head h2 span {
  color: #ff2bd6;
  text-shadow: 0 0 20px rgba(255, 43, 214, 0.25);
}

.contact h2 span {
  color: #ff7a00;
  text-shadow: 0 0 20px rgba(255, 122, 0, 0.20);
}


.chrome .about h2 span {
  text-shadow:
    0 0 5px rgba(217, 36, 36, 0.75),
    0 0 12px rgba(217, 36, 36, 0.55),
    0 0 25px rgba(217, 36, 36, 0.35);
}

.chrome .references h2 span {
  text-shadow:
    0 0 5px rgba(57, 255, 20, 0.75),
    0 0 12px rgba(57, 255, 20, 0.55),
    0 0 25px rgba(57, 255, 20, 0.35);
}

.chrome .gallery .center-head h2 span {
  text-shadow:
    0 0 5px rgba(255, 43, 214, 0.75),
    0 0 12px rgba(255, 43, 214, 0.55),
    0 0 25px rgba(255, 43, 214, 0.35);
}

.chrome .contact h2 span {
  text-shadow:
    0 0 5px rgba(255, 122, 0, 0.75),
    0 0 12px rgba(255, 122, 0, 0.55),
    0 0 25px rgba(255, 122, 0, 0.35);
}

