@charset "UTF-8";
:root {
  --brand: #0b2237;
  --brand-2: #F2326E;
  --brand-3: #91c3c6;
  --link-text: #0b2237;
  --link-text-hover: #F2326E;
  --text: #505050;
  --muted: #5b6b7a;
  --bg: #ffffff;
  --bg-alt: #505050;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 34, 55, .2);
  --bs-primary: #F2326E;
  --bs-primary-rgb: 242, 50, 110;
}

.btn-primary {
  background: var(--brand-2);
  color: #fff;
  border: 1px solid var(--brand-2);
}

.btn-primary:hover, .btn-primary:focus {
  filter: brightness(1.05);
  outline: 2px solid var(--brand-2);
  outline-offset: 2px;
}

.btn-secondary {
  background: #fff;
  color: var(--brand-2);
  border: 1px solid var(--brand-2);
}

.btn-secondary:hover, .btn-secondary:focus {
  background: var(--bg-alt);
  outline: 2px solid var(--brand-2);
  outline-offset: 2px;
}

.badge {
  background: var(--brand-2);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

.hero {
  background: var(--bg-alt);
}

.hero.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 34, 55, 0.55), rgba(11, 34, 55, 0.35));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: var(--text);
  background: var(--bg);
}

.no-js .nav-toggle {
  display: none;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.bg-primary {
  background: var(--brand-2);
  color: #fff;
}

a {
  color: var(--link-text);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: var(--link-text-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  text-transform: uppercase;
  font-family: Calibre, sans-serif;
}

h2 {
  color: var(--brand-2);
  margin-top: 3rem;
}

.alert-block h2 {
  color: rgb(80, 80, 80);
}

.core-values h2 {
  color: white;
}

.pimcore_area_content {
  margin-bottom: 4rem;
}
.pimcore_area_content h3 {
  margin-top: 3rem;
}

/* Header layout: place menu to the right of the logo and allow overlap */
/* Sticky header with clean baseline */
.site-header {
  --logo-overhang: 24px; /* how far the logo hangs below the navbar on desktop */
  overflow: visible; /* ensure the logo can overhang */
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  box-shadow: var(--shadow);
}
.site-header .navbar {
  background: #fff;
}
.site-header .navbar-collapse {
  background: #fff;
  box-shadow: var(--shadow);
}
.site-header .navbar-brand.logo {
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: flex-end; /* bottom-align inside the brand box */
  z-index: 2; /* place above the navbar border */
  will-change: transform, opacity;
}
.site-header .dropdown-menu {
  border-radius: 0.5rem;
  padding: 0.5rem;
  border-color: #eef2f6;
}
.site-header a.nav-link {
  font-weight: 600;
  color: var(--link-text);
  transition: all 0.3s ease;
}
.site-header a.nav-link:hover, .site-header a.nav-link:focus {
  color: var(--link-text-hover);
  text-decoration: none;
}
.site-header .nav-link.active,
.site-header .dropdown-item.active {
  color: var(--brand-2);
}

/* Layout */
.header-inner {
  position: relative;
  background: transparent;
  height: 74px;
  width: 100%;
}
.header-inner .logo {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: logoFloatIn 700ms cubic-bezier(0.22, 1, 0.36, 1) 200ms forwards;
  will-change: transform, opacity;
}
.header-inner .logo img, .header-inner .logo svg {
  height: 154px;
  width: auto;
  top: -154px;
  transform-origin: 50% 80%;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.1));
  will-change: transform, filter;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.header-inner .logo:hover img, .header-inner .logo:focus-within img {
  animation-play-state: paused;
  transform: translateY(-1px) scale(1.015) rotate(0.2deg);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.12));
}
.header-inner .logo:hover img::after, .header-inner .logo:focus-within img::after {
  animation: logo-shine 1.2s ease forwards;
}
.header-inner .logo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 45%, rgba(255, 255, 255, 0.6) 50%, transparent 55%);
  transform: translateX(-120%);
  mix-blend-mode: screen;
  opacity: 0;
}
.header-inner .navbar {
  margin: 0;
}

/* Animations */
@keyframes logoFloatIn {
  from {
    opacity: 0;
    transform: translateY(-74px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes logo-float {
  0%, 100% {
    transform: translateY(-24px) scale(1) rotate(0);
  }
  50% {
    transform: translateY(-24px) scale(1.005);
  }
}
@keyframes logo-shine {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  10% {
    opacity: 0.25;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}
/* Responsive */
@media (min-width: 992px) {
  .site-header .navbar-nav .nav-link {
    padding: 0.5rem 0.75rem;
    font-weight: 600;
  }
}
/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .header-inner .logo img, .header-inner .logo svg {
    animation: none !important;
    transform: translateY(-24px);
  }
  .header-inner .logo::after {
    animation: none !important;
  }
}
/* Base (mobile-first): bottom-aligned, no overhang, animated in */
.site-header .navbar-brand.logo img {
  display: block;
  width: 96px; /* mobile size */
  height: auto;
  margin: 0;
  opacity: 0;
  position: relative;
  bottom: 45px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s;
  animation: logo-enter-mobile 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.navbar > .container {
  height: 74px;
  align-items: start;
}
.navbar > .container .nav-items {
  margin-top: 13px !important;
}

/* Desktop: wider, gently overhang the navbar + subtle floating animation */
@media (min-width: 992px) {
  .site-header .navbar {
    overflow: visible;
    height: 120px;
  }
  .site-header .navbar > .container {
    height: 120px;
  }
  .site-header .navbar > .container .nav-items {
    margin-top: 36px !important;
  }
  .site-header .navbar-brand.logo {
    align-self: center; /* keep the brand in normal row flow; overhang handled by img transform */
  }
  .site-header .navbar-brand.logo img {
    width: 128px; /* requested width */
    transform: translateY(-128px);
    opacity: 0;
    bottom: 0;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.1));
    animation: logo-enter-desktop 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
  }
}
/* Reduce/disable motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .site-header .navbar-brand.logo img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (prefers-reduced-motion: reduce) and (min-width: 992px) {
  .site-header .navbar-brand.logo img {
    transform: translateY(var(--logo-overhang)) !important;
  }
}
/* Keyframes */
@keyframes logo-enter-mobile {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes logo-enter-desktop {
  from {
    opacity: 0;
    transform: translateY(-158px);
  }
  to {
    opacity: 1;
    transform: translateY(-15px);
  }
}
@keyframes logo-float {
  0% {
    transform: translateY(calc(var(--logo-overhang) - 2px));
  }
  50% {
    transform: translateY(calc(var(--logo-overhang) + 2px));
  }
  100% {
    transform: translateY(calc(var(--logo-overhang) - 2px));
  }
}
@media (max-width: 575.98px) {
  .site-nav .btn.cta {
    display: none !important;
  }
}

.mobile-vacatures-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: var(--brand-2);
  color: #fff !important;
}

.btn-primary:hover {
  filter: brightness(1.05);
  background: #fff;
  border: 1px solid var(--brand-2);
  color: var(--brand-2) !important;
  outline: none;
}

.btn-secondary {
  background: #fff;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-secondary:hover {
  background: var(--brand);
  color: #fff;
  outline: none;
}

/* Hero */
.hero {
  position: relative;
  background: #fff;
  z-index: 0;
  overflow: hidden;
  margin-bottom: 4rem;
}

.hero-inner {
  padding: clamp(2rem, 4vw, 4rem) 0;
  display: grid;
  gap: 1rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin: 0;
  color: #0b2237;
}

.hero p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero .header-video {
  width: 100%;
}
.hero .header-video .video-js {
  width: 100%;
  height: 100%;
}

/** Slideshow **/
.slideshow {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration, 800ms) ease-in-out;
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quote: stronger visual and more dramatic entrance */
.quote {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  text-align: center;
  left: 50%;
  bottom: 8%;
  width: min(90%, 900px);
  position: absolute;
  transform: translate(-50%, 24px) scale(0.96);
  transform-origin: 50% 100%;
  opacity: 0;
  will-change: transform, opacity, filter;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px) saturate(120%);
}

.quote__text {
  font-size: clamp(1.125rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  display: block;
}

/* Trigger the new, more dramatic animation */
.slide.is-active .quote {
  animation: quote-in 900ms cubic-bezier(0.2, 0.9, 0.2, 1) 120ms both;
}

/* New keyframes with blur, lift, and a subtle overshoot */
@keyframes quote-in {
  0% {
    opacity: 0;
    transform: translate(-50%, 28px) scale(0.94);
    filter: blur(8px);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -4px) scale(1.03);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}
/* Slogan: no animation, more prominent */
.slideshow .slider-slogan {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: var(--brand-2);
  color: #fff;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  padding: 0.75rem 1rem calc(1rem + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.22);
  transform: none; /* remove slide-in */
  animation: none; /* remove animation */
}

/* Square slideshow on mobile and tweak spacing */
@media (max-width: 640px) {
  .slideshow {
    height: auto;
    aspect-ratio: 1/1; /* square */
  }
  .quote {
    bottom: 20%;
    width: 92%;
    padding: 0.85rem 1rem;
  }
  .quote__text {
    font-size: clamp(1rem, 4.5vw, 1.25rem);
  }
  .slideshow .slider-slogan {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    padding: 0.65rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
  }
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .slide.is-active .quote,
  .slideshow .slider-slogan {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}
@media (max-width: 640px) {
  .quote {
    bottom: 10%; /* sit a bit lower on mobile without hitting the slogan bar */
  }
}
/* Main */
.site-main {
  padding-bottom: 3rem;
}

.video-gallery-item.card-video {
  background: #fff;
  border-radius: 10px;
  border: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.video-gallery-item .card-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
}

/* Equal title height: adjust min-height to fit 2 lines nicely */
.video-gallery-item .video-title {
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0; /* no extra margin at the top of the card */
  margin-bottom: 1rem;
  min-height: 3.5rem; /* tweak up/down depending on real line-height */
}

/* Extra vertical spacing between previous card and this title */
.video .col-12.col-lg-6 {
  margin-bottom: 2rem; /* more space between rows of videos */
}

/* Footer */
.site-footer {
  background: var(--brand-2);
  color: #fff;
  margin-top: 0;
  box-shadow: var(--shadow);
}
.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer a:hover, .site-footer a:focus {
  color: var(--brand-3);
  text-decoration: none;
}
.site-footer .footer-cta {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand-2);
}

.footer-bottom {
  padding: 0.75rem 0 1.5rem;
}
.footer-bottom a, .footer-bottom a:hover, .footer-bottom a:focus {
  color: #fff;
  text-decoration: none;
}

.sub {
  color: #94a3b8;
  margin: 0.5rem 0 0;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  color: #fff;
}

.social-icons {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  color: #fff;
}
.social-icons li {
  margin: 0 0.5rem;
}
.social-icons li a {
  color: #FFF;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}
.social-icons li a:hover, .social-icons li a:focus {
  color: var(--brand-3);
}

.job h3 a {
  color: var(--brand-2);
  font-weight: 700;
}

.alert-block {
  background: var(--brand-3);
  color: var(--text);
  box-shadow: inset 0 20px 20px -20px rgba(0, 0, 0, 0.3), inset 0 -20px 20px -20px rgba(0, 0, 0, 0.3);
}

.pimcore_area_wysiwyg h3 {
  color: var(--brand-2);
}

.core-values {
  background: var(--brand-3);
  color: #fff;
  box-shadow: inset 0 20px 20px -20px rgba(0, 0, 0, 0.3), inset 0 -20px 20px -20px rgba(0, 0, 0, 0.3);
}
.core-values * {
  text-align: center;
}

/* Make columns equal height in the row */
.section.core-values .row {
  align-items: stretch;
}

/* Turn each core-value column into a flex column */
.section.core-values .core-value {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

/* Icon row: consistent height and centered */
.section.core-values .cv-icon {
  min-height: clamp(64px, 8vw, 96px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section.core-values .core-value-icon {
  max-height: clamp(48px, 6vw, 80px);
  width: auto;
  object-fit: contain;
}

/* Title row: consistent height and vertically centered */
.section.core-values .cv-title {
  min-height: clamp(48px, 5vw, 72px); /* ensure headings align */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

/* Description row sits at the bottom across all columns */
.section.core-values .cv-desc {
  margin-top: auto;
  text-align: left; /* or center, if you prefer */
}

.pimcore_area_core-values.pimcore_area_content {
  margin-bottom: 0;
}

.pagination .page-item a {
  color: var(--brand-2);
}
.pagination .page-item.active a {
  color: #fff;
  background: var(--brand-2);
  border-color: var(--brand-2);
}
.pagination .page-item.disabled a {
  color: var(--muted);
}

.job .buttons {
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.job p > strong {
  font-weight: 700;
  color: var(--brand-2);
}
.job ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.job ul li {
  position: relative;
  padding-left: 1.75rem; /* spacing for the checkmark */
  margin-bottom: 0.5rem;
}
.job ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.25rem;
  font-weight: 700;
  color: var(--brand-2); /* pink from variables */
  font-size: 1rem;
  line-height: 1;
}
.job h3 {
  margin-top: 3rem;
}
.job .metadata {
  padding: 1rem;
  color: var(--text);
  background: var(--brand-3);
  box-shadow: 0 10px 20px rgba(11, 34, 55, 0.4);
  border-radius: 0;
  /* enable smooth 3D transform */
  transform-style: preserve-3d;
  transform-origin: center center;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  will-change: transform;
}
.job .metadata .key {
  font-weight: 700;
}
.job {
  /* 3D lift & tilt on hover (pure CSS) */
}
.job .metadata:hover {
  transform: perspective(900px) translateY(-4px) rotateX(4deg) rotateY(-4deg);
  box-shadow: 0 18px 35px rgba(11, 34, 55, 0.55);
}

.jobs-overview .job {
  background: var(--bg);
  box-shadow: 0 10px 20px rgba(11, 34, 55, 0.2);
  margin-bottom: 4rem;
}
.jobs-overview .job h3 {
  margin-top: 3rem;
}
.jobs-overview .job h3 a {
  color: var(--brand);
}
.jobs-overview .job h3 a:hover {
  color: var(--brand-2);
}
.jobs-overview .job .subTitle {
  color: var(--brand-2);
  font-weight: normal;
}

/*# sourceMappingURL=main.css.map */
