:root {
  --bg: #050505;
  --bg-elevated: #111111;
  --gold-light: #f5d76e;
  --gold-mid: #f4c14b;
  --gold-deep: #f39c12;
  --text-main: #f5f5f5;
  --text-muted: #b3b3b3;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 24px 50px rgba(0, 0, 0, 0.55);
  --radius-xl: 1.5rem;
  --transition-fast: 0.25s ease;
  --transition-med: 0.45s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top, rgba(243, 156, 18, 0.14), transparent 55%),
    radial-gradient(circle at bottom, rgba(245, 215, 110, 0.08), transparent 60%),
    var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

/* LAYOUT BASICS */

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.page-main {
  padding-top: 0rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.8rem 1.8rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transform: translateY(0);
  transition:
    background var(--transition-med),
    color var(--transition-med),
    transform var(--transition-fast),
    box-shadow var(--transition-med);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #1a1200;
  box-shadow: 0 12px 30px rgba(243, 156, 18, 0.25);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(243, 156, 18, 0.35);
}

.btn--outline-gold {
  border: 1px solid var(--gold-mid);
  background: transparent;
  color: var(--gold-light);
}

.btn--outline-gold:hover {
  background: radial-gradient(circle at top left, rgba(245, 215, 110, 0.2), transparent);
}

.btn--small {
  padding-block: 0.55rem;
  padding-inline: 1.4rem;
  font-size: 0.8rem;
}

.btn--full {
  width: 100%;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.8rem;
  position: relative;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text-main);
}

.site-header__logo {
  width: 40px;
  height: 40px;
}

.site-header__name {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.site-header__nav a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
}

.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  transition: width var(--transition-med);
}

.site-header__nav a:hover {
  color: var(--text-main);
}

.site-header__nav a:hover::after {
  width: 100%;
}


.site-header__lang {
  display: flex;
  align-items: center;
}

.site-header__lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 0.35rem 1.9rem 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(5, 5, 5, 0.9);
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;

  /* remove default outline, we’ll handle focus */
  outline: none;
}

/* Custom arrow */
.site-header__lang-select {
  background-image: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: calc(100% - 0.65rem) 50%;
}

.site-header__lang-select:focus {
  border-color: var(--gold-light);
  color: var(--text-main);
}

.site-header__lang-select:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-main);
}


/* HERO */
.hero {
  position: relative;
  padding-block: 6rem 4rem;
  overflow: hidden;
}

/* Video background wrapper */
.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none; /* so clicks go to the content, not the video */
}

/* The video itself */
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

/* Dark + gold overlay on top of the video to keep text readable */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.9)),
    linear-gradient(
      135deg,
      rgba(245, 215, 110, 0.25),
      transparent 45%,
      rgba(243, 156, 18, 0.35),
      rgba(0, 0, 0, 0.9)
    );
  mix-blend-mode: multiply;
}

/* Make sure content sits above the video */
.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
}


.hero__eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-size: clamp(2.4rem, 3vw + 1.3rem, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero__title span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  color: transparent;
}

.hero__subtitle {
  max-width: 32rem;
  color: var(--text-muted);
}

/* HERO CARDS */

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

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 600px; /* bigger cards */
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transform: translateY(0) scale(1);
  transition:
    transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow var(--transition-med);
}

.hero-card__content {
  position: relative;
  padding: 1.8rem 1.9rem; /* more breathing room */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;

}

.hero-card__label {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.3rem;          /* slightly larger */
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card__caption {
  margin-bottom: 0rem;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 600;
  max-width: 18rem;
  opacity: 0.9;

}

/* Background images – replace with your real assets */
.hero-card--camps {
  background-image: url("/assets/celebrate.jpg");
}

.hero-card--advanced {
  background-image: url("/assets/Bild.jpeg");
}

.hero-card--tournaments {
  background-image: url("/assets/medals.jpg");
}

.hero-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 215, 110, 0.85),
    rgba(243, 156, 18, 0.9)
  );
  mix-blend-mode: multiply;
  transition: opacity var(--transition-med);
}

/* Hover: reveal original image */
.hero-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.8);
}

.hero-card:hover .hero-card__overlay {
  opacity: 0;
}

/* Extra readability boost on hover */
.hero-card:hover .hero-card__label,
.hero-card:hover .hero-card__caption {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.9);
  opacity: 1;
}
/* SCROLL PHRASE */

.scroll-phrase {
  position: relative;
  overflow: hidden;
  padding-block: 1.5rem 2.5rem;
}

.scroll-phrase__track {
  white-space: nowrap;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  opacity: 0.85;
  will-change: transform;
}

/* SECTIONS */

.section {
  padding-block: 3rem;
}

.section__inner {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: flex-start;
}

.section__inner--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section__text {
  flex: 1.3;
}

.section__text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.section__text h3 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-top: 0;
}

.section__text p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Split layout: text left, image right */
.section__inner--with-media {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

/* Media block */
.section__media {
  margin: 0;
  display: flex;
  justify-content: center;
}

.section__media-img {
  width: 100%;
  max-width: 460px;
  display: block;
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Mobile: stack, keep image centered and large */
@media (max-width: 900px) {

  .hero-card {
  min-height: 300px; /* bigger cards */
  }
  .section__inner--with-media {
    grid-template-columns: minmax(0, 1fr);
  }

  .section__media {
    margin-top: 1.8rem;
  }

  .section__media-img {
    max-width: 420px;
    margin-inline: auto;
    aspect-ratio: 16 / 10;
  }
}


/* MEDIA STRIP */

.media-strip {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.media-strip__item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}

.media-strip__item img,
.media-strip__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-strip__item span {
  position: absolute;
  left: 0.7rem;
  bottom: 0.5rem;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
}

.media-strip__item--video {
  grid-column: span 2;
}

/* 3D SECTIONS */
/* ==== FULL-WIDTH 3D SECTIONS ======================================== */

.section-3d {
  position: relative;
  padding-block: 5rem;
  padding-inline: 0;
  perspective: 1400px;
  overflow: hidden;
}

/* Full-bleed sporty background */
.section-3d::before,
.section-3d::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section-3d::before {
  background:
    linear-gradient(
      120deg,
      rgba(245, 215, 110, 0.12) 0%,
      transparent 40%,
      rgba(243, 156, 18, 0.18) 70%,
      transparent 100%
    ),
    radial-gradient(circle at top, rgba(243, 156, 18, 0.25), transparent 60%);
  opacity: 0.9;
}

.section-3d::after {
  background-image: repeating-linear-gradient(
    -60deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.06) 2px,
    transparent 2px,
    transparent 16px
  );
  opacity: 0.12;
}

/* Make the wrapper full-width but keep content centered */
.section-3d > .container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.section-3d__inner {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* If you use the split layout, keep it */
.section-3d__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.8rem;
}

/* ==== 3D PANEL – POP + COLORFUL SHADOW =============================== */

.section-3d__panel {
  position: relative;
  background: radial-gradient(circle at top left, #18110b, #050505);
  border-radius: var(--radius-xl);
  padding: 2.4rem 2.2rem;
  border: 1px solid rgba(245, 215, 110, 0.18);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 55px rgba(243, 156, 18, 0.45);
  transform: translate3d(0, 80px, 0) scale(0.94) rotateX(10deg);
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.9s ease;
}

/* Soft colorful glow around the panel */
.section-3d__panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 120deg,
    rgba(245, 215, 110, 0.08),
    rgba(243, 156, 18, 0.35),
    rgba(245, 215, 110, 0.08)
  );
  filter: blur(22px);
  opacity: 0.8;
  z-index: -1;
}

/* On first view: snap into place */
.section-3d--visible .section-3d__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
}

/* While in view: floating / tilting sporty animation */
.section-3d--active .section-3d__panel {
  animation: section3dFloat 6s ease-in-out infinite;
}

/* Extra variation per section (optional, keep or tweak) */
.section-3d--camps .section-3d__panel {
  background:
    radial-gradient(circle at top, rgba(243, 156, 18, 0.3), transparent 55%),
    radial-gradient(circle at bottom, #18110b, #050505);
}

.section-3d--tournaments .section-3d__panel {
  background:
    radial-gradient(circle at bottom, rgba(245, 215, 110, 0.22), transparent 55%),
    radial-gradient(circle at top, #18110b, #050505);
}

.section-3d--register .section-3d__panel {
  background:
    radial-gradient(circle at center, rgba(243, 156, 18, 0.25), transparent 60%),
    radial-gradient(circle at top, #18110b, #050505);
}

/* Float / pop keyframes */
@keyframes section3dFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1) rotateX(0deg) rotateY(0deg);
    box-shadow:
      0 26px 60px rgba(0, 0, 0, 0.9),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 55px rgba(243, 156, 18, 0.45);
  }
  50% {
    transform: translate3d(0, -14px, 0) scale(1.01) rotateX(2deg) rotateY(-2deg);
    box-shadow:
      0 40px 80px rgba(0, 0, 0, 1),
      0 0 0 1px rgba(255, 255, 255, 0.06),
      0 0 95px rgba(245, 215, 110, 0.8);
  }
}

/* Responsive tweak so full-width sections still look good on mobile */
@media (max-width: 900px) {
  .section-3d__inner--split {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Variations */

.section-3d--camps .section-3d__panel {
  background:
    linear-gradient(135deg, rgba(243, 156, 18, 0.18), transparent 60%),
    radial-gradient(circle at top, #18110b, #050505);
}

.section-3d--tournaments .section-3d__panel {
  background:
    linear-gradient(135deg, rgba(245, 215, 110, 0.15), transparent 60%),
    radial-gradient(circle at bottom, #18110b, #050505);
}

.section-3d--register .section-3d__panel {
  background:
    linear-gradient(135deg, rgba(243, 156, 18, 0.22), transparent 60%),
    radial-gradient(circle at center, #18110b, #050505);
}

.section-3d__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.8rem;
}

.section-3d__panel--form {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(20, 20, 20, 0.95));
}


/* 3D section media */
/* Layout INSIDE the 3D panel: image left, text right */
.section-3d__panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: center;
}

/* Media inside panel */
.section-3d__panel-media {
  margin: 0;
}

.section-3d__panel-media-img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius-xl) - 6px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Text content just uses existing typography, but we can tweak spacing a bit */
.section-3d__panel-content > *:not(:last-child) {
  margin-bottom: 0.9rem;
}

/* Mobile: stack and center image */
@media (max-width: 800px) {
  .section-3d__panel-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-3d__panel-media {
    text-align: center;
  }

  .section-3d__panel-media-img {
    margin-inline: auto;
    max-width: 420px;
    aspect-ratio: 16 / 10;
  }

  .section-3d__panel-content {
    text-align: left; /* or center if you prefer */
  }
}

.section-3d__panel-media {
  margin: 0;
}

.section-3d__panel-media-img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius-xl) - 6px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Only this variant gets spacing above it */
.section-3d__panel-media--below {
  margin-top: 1.8rem;
}

/* Slightly wider + centered feel on mobile */
@media (max-width: 800px) {
  .section-3d__panel-media-img {
    aspect-ratio: 16 / 10;
  }
}


/* BULLET LIST */

.bullet-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

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

/* PILL ROW */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.pill {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* REGISTER FORM */

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row--split {
  flex-direction: row;
  gap: 1rem;
}

.form-row--split > div {
  flex: 1;
}

label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.75);
  padding: 0.6rem 0.75rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--gold-mid);
  border-color: var(--gold-mid);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.form-required-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* PARTNERS */

.section--partners {
  padding-block: 3.5rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3em;
  margin-top: 1.5rem;
}
/* Mobile: 1 column */
@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.partner-card {
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  padding: 1.2rem 1rem;
  background: rgba(10, 10, 10, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-med);
}

.partner-card__logo {
  max-height: 150px;
  filter: grayscale(1) opacity(0.6);
  transition: filter var(--transition-med);
}

/* On hover, colorize logos */
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
  border-color: rgba(245, 215, 110, 0.6);
}

.partner-card:hover .partner-card__logo {
  filter: grayscale(0) opacity(1);
}

/* LEGAL */

.section--legal {
  padding-block: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section--legal p {
  color: var(--text-muted);
}

/* FOOTER */

.site-footer {
  margin-top: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.85), #020202);
}

.site-footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.6rem;
  padding-bottom: 1.5rem;
}

.site-footer__logo {
  width: 36px;
  margin-bottom: 0.5rem;
}

.site-footer__brand h3 {
  margin: 0.1rem 0 0.3rem;
}

.site-footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer__contact p,
.site-footer__links ul {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer__contact a,
.site-footer__links a {
  color: var(--text-main);
  text-decoration: none;
}

.site-footer__contact a:hover,
.site-footer__links a:hover {
  color: var(--gold-light);
}

.site-footer__links ul {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0;
}

.site-footer__links li {
  margin-bottom: 0.3rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  padding-block: 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.site-footer i {
  margin-right: 0.4rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .section__inner {
    flex-direction: column;
  }

  .section-3d__inner--split {
    grid-template-columns: minmax(0, 1fr);
  }

  .media-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-strip__item--video {
    grid-column: span 3;
  }
}

@media (max-width: 640px) {
  .site-header__nav {
    display: none; /* for simplicity: could be replaced with a burger menu */
  }

  .container {
    width: calc(100% - 2rem);
  }

  .hero {
    padding-top: 3.5rem;
  }

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

  .media-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-strip__item--video {
    grid-column: span 2;
  }

  .form-row--split {
    flex-direction: column;
  }
}


/* Full-width transition images between sections */
.section-transition {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;            /* remove gaps */
  overflow: hidden;
}

.section-transition img {
  display: block;
  width: 100%;
  max-height: 420px;         /* adjust height if you want taller/shorter strips */
  object-fit: cover;
}

/* Optional: subtle dark gradient so text sections connect nicely */
.section-transition img {
  position: relative;
}

.section-transition::after {
  content: "";
  position: relative;
}

/* If you want a light parallax feel later, we can also animate these on scroll */
/* Grid layout: text left, Giab photo right, video full width below */
.section--about .section__inner--about {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  grid-template-areas:
    "about-text about-portrait"
    "about-video about-video";
  gap: 2.5rem 2.5rem;
  align-items: center;
}

.section--about .section__text {
  grid-area: about-text;
}

.about__portrait {
  grid-area: about-portrait;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__portrait-img {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.about__portrait-caption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* Video full width under both columns */
.about__video {
  grid-area: about-video;
  margin-top: 0.5rem;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.about__video-el {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  margin: 0 auto;          
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  text-align: center;
  justify-content: center;
  align-items: center;
}

.about__video-caption {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* Mobile: stack nicely – text, then photo, then full width video */
@media (max-width: 900px) {
  .section--about .section__inner--about {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "about-text"
      "about-portrait"
      "about-video";
  }

  .about__portrait {
    margin-top: 1.5rem;
  }

  .about__portrait-img {
    max-width: 320px;
  }
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Base layout already there:
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
*/

/* Toggle button (hamburger) */
.site-header__toggle {
  display: none; /* hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: auto;
}

.site-header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main, #fff);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header__toggle-bar + .site-header__toggle-bar {
  margin-top: 4px;
}

/* When nav is open, animate burger into an "X" */
.site-header--nav-open .site-header__toggle-bar:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.site-header--nav-open .site-header__toggle-bar:nth-child(3) {
  opacity: 0;
}

.site-header--nav-open .site-header__toggle-bar:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Desktop nav (what you already have) */
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Mobile behaviour */
@media (max-width: 800px) {
  .site-header__inner {
    gap: 0.75rem;
  }

  /* Show burger, hide inline nav initially */
  .site-header__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-header__nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 0.9rem 1.5rem 1.2rem;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
    z-index: 15;
  }

  .site-header__nav a {
    font-size: 0.95rem;
  }

  .site-header__lang {
    margin-top: 0.4rem;
  }

  /* When header has "nav open" class, show menu */
  .site-header.site-header--nav-open .site-header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}




/* NEWS SECTION */

/* ===== NEWS / TESTIMONIAL CAROUSEL ===== */
.section--news {
  position: relative;
  overflow-x: hidden;
}
/* Make the container full width inside the news section */
.section--news > .container {
  max-width: none;
  width: 100%;
  padding-inline: 0; /* let the carousel control its own padding */
}

/* Remove the narrow max-width on this inner wrapper */
.section--news .section__inner--center {
  max-width: none;
  width: 100%;
}

/* Golden angled stripe on the bottom – on top of content */
.section--news .section__stripe {
  position: absolute;
  bottom: 0;
  left: -10%;
  bottom: 0;
  width: 120%;
  height: 140px;
  background: linear-gradient(
    135deg,
    var(--gold-light, #f5d76e),
    var(--gold-deep, #f39c12)
  );
  clip-path: polygon(
    0 0,          /* top-left (0px from top)  => 50px thick at left */
    100% 80px,    /* top-right (45px from top) => 5px thick at right (50-45) */
    100% 140px,    /* bottom-right */
    0 140px        /* bottom-left */
  );  
  opacity: 0.9;
  pointer-events: none;
  z-index: 100; /*  bring it above other elements in the section */
}

/* Wrapper */
.news-carousel {
  position: relative;
  margin-top: 1.5rem;
    width: 100%;
}

/* Track + slides */
.news-carousel__track {
  position: relative;
  overflow: hidden;
  min-height: 375px;
}

.news-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8%);
  transition:
    opacity 0.65s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
  display: block;
  align-items: center;
  justify-content: center;
  display: block; /* full-width */
  margin-bottom: 10vh;

}

.news-carousel__slide--active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.news-carousel__slide-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  grid-template-areas: "photo content";
  gap: 1rem;
  align-items: center;   /* vertically center photo + content in the row */
  width: 100%;
  max-width: 1120px;     /* whatever you’re using */
  margin: 0 auto;
  padding-inline: 1.5rem;
}


/* map elements to the grid areas */
.news-carousel__photo {
  grid-area: photo;
  margin: 0;
  display: flex;
  justify-content: center;
  align-self: center;    /* extra vertical centering */
}

.news-carousel__photo-img {
  width: 100%;
  max-width: 220px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  filter: grayscale(1) contrast(1.05) saturate(0);
  transition:
    filter 0.45s ease,
    transform 0.45s ease;
}

.news-carousel__content {
  grid-area: content;
  text-align: left;
  align-self: center;    /* keep it vertically centered vs the image */
  padding-bottom: 0; /* ⬅ extra space under the quote+name+role */

}

.news-carousel__quote {
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
  align-self: center;
  justify-content: center;
}

/* Large gold German bottom quote above the text */
.news-carousel__quote::before {
  content: "„"; /* German opening quote */
  display: block;
  font-size: 5rem;         /* nice and large */
  line-height: 1;
  color: var(--gold-light, #f5d76e);
  margin-bottom: 0.4rem;
  text-align: left;
}

/* Large gold German bottom quote above the text */
.news-carousel__quote::after {
  content: "„"; /* German opening quote */
  display: block;
  font-size: 5rem;         /* nice and large */
  line-height: 0.5;
  color: var(--gold-light, #f5d76e);
  margin-bottom: 0;
  text-align: right;
}

.news-carousel__name {
  margin-top: 0.4rem;
  font-size: 0.95rem; /* larger */
  font-weight: 700;   /* bolder */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light, #f5d76e); /* gold */
}

.news-carousel__role {
  font-size: 0.8rem;
  color: var(--text-muted, #aaa);
}

/* Dots */
.news-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.3rem;
}

.news-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(245, 215, 110, 0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
  opacity: 0.6;
}

.news-carousel__dot--active {
  background: linear-gradient(
    135deg,
    var(--gold-light, #f5d76e),
    var(--gold-deep, #f39c12)
  );
  transform: scale(1.15);
  opacity: 1;
}

/* Arrows – square buttons at left/right edge */
.news-carousel__arrow {
  color: gold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 0.9rem;
  border: 1px solid rgba(245, 215, 110, 0.6);
  background: rgba(5, 5, 5, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  z-index: 5;
}

.news-carousel__arrow--prev {
  left: 0.75rem;   /* directly against the left edge */
}

.news-carousel__arrow--next {
  right: 0.75rem;  /* directly against the right edge */
}

/* Show arrows on hover (desktop) */
.section--news:hover .news-carousel__arrow {
  opacity: 1;
  pointer-events: auto;
}


.news-carousel__arrow:hover {
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
  border-color: rgba(245, 215, 110, 1);
}

/* Image color-on-hover (desktop hover) */
.section--news:hover .news-carousel__slide--active .news-carousel__photo-img {
  filter: grayscale(0) saturate(1);
  transform: translateY(-2px);
}

/* Mobile: always show arrows, stack layout */
@media (max-width: 768px) {
  .news-carousel__slide-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .news-carousel__content {
    text-align: center;
  }


  .news-carousel__arrow {
    opacity: 1;
    pointer-events: auto;
  }

  .news-carousel__arrow--prev {
    left: 0.75rem;
  }

  .news-carousel__arrow--next {
    right: 0.75rem;
  }
}

@media (max-width: 768px) {
  .news-carousel__track {
    min-height: 600px; /* adjust if needed, but this usually fits text + image nicely */
  }

  .news-carousel__slide-inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "content"
      "photo"; /* text first, image second */
    text-align: center;
  }

  .news-carousel__content {
    text-align: center;
  }

  .news-carousel__photo {
    justify-content: center;
  }


  /* Golden angled stripe on the bottom – on top of content */
.section--news .section__stripe {
  height: 140px;
  clip-path: polygon(
    0 0,          /* top-left (0px from top)  => 50px thick at left */
    100% 80px,    /* top-right (45px from top) => 5px thick at right (50-45) */
    100% 140px,    /* bottom-right */
    0 140px        /* bottom-left */
  );  

}

}

/* Reduced motion: simple fade */
@media (prefers-reduced-motion: reduce) {
  .news-carousel__slide {
    transition: opacity 0.35s ease;
    transform: none !important;
  }
}
