/* ============================================================
   Fiberlaser Leasen – main.css
   Exact nagebouwd op de originele Webflow CSS
   ============================================================ */

/* ── Fonts (lokaal gehost) ────────────────────────────────── */
@font-face {
  font-family: 'Teko';
  src: url('../fonts/Teko-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Teko';
  src: url('../fonts/Teko-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Teko';
  src: url('../fonts/Teko-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Teko';
  src: url('../fonts/Teko-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Teko';
  src: url('../fonts/Teko-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sulsans';
  src: url('../fonts/SulSans-Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sulsans';
  src: url('../fonts/SulSans-Light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sulsans';
  src: url('../fonts/SulSans-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ── Design tokens (origineel) ────────────────────────────── */
:root {
  --dark:             #212427;
  --dark-background:  #0c0c0d;
  --light:            #fff;
  --primary:          #b7373e;
  --light-grey:       #f0f0f0;
  --muted-text:       #90969b;
  --accordion-border: 0px;
}

/* ── Reset / base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body.menu-open { overflow: hidden; position: fixed; width: 100%; }
html  { height: 100%; overflow-x: hidden; }
body  {
  color: #333;
  background-color: #fff;
  min-height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}
img { vertical-align: middle; max-width: 100%; display: inline-block; border: 0; }
a   { background-color: transparent; }
a:active, a:hover { outline: 0; }

/* ── Typography (origineel) ───────────────────────────────── */
h1, h2, h3, h4, h5, h6 { margin-bottom: 10px; font-weight: bold; }

h1 {
  color: var(--dark);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Teko, Arial, sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: .8;
}
h2 {
  color: var(--dark);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Teko, Arial, sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: .8;
}
h3 {
  color: var(--dark);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Teko, Arial, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: .8;
}
h5 {
  color: var(--dark);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Teko, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: .8;
}
p {
  color: var(--dark);
  margin: 0;
  margin-bottom: 10px;
  font-family: Sulsans, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}
label {
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: Teko, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  display: block;
}
ul, ol { margin-top: 0; margin-bottom: 10px; padding-left: 40px; }

section {
  padding: 3.25rem 0 !important;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  background-color: transparent;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3.25rem;
  position: static;
  overflow: visible;
}
.container-footer { max-width: 1096px; }

/* ── Navigation ───────────────────────────────────────────── */
.navigation {
  background-color: var(--dark-background);
  padding-top: 24px;
  padding-bottom: 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.site-main { padding-top: 90px; }
body.admin-bar .navigation { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .navigation { top: 46px; }
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.logo { max-height: 42px; width: auto; }
.nav-link-container {
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-link {
  color: var(--light);
  text-transform: uppercase;
  font-family: Teko, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  text-decoration: none;
}
.nav-link:hover { color: var(--primary); }

/* Hamburger */
.hamburger-icon-wrapper {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
  background-color: var(--primary);
  width: 50px;
  height: 50px;
  padding: 10px;
  cursor: pointer;
}
.hamburger-icon-line {
  background-color: var(--light);
  height: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger-icon-wrapper[aria-expanded="true"] .hamburger-icon-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-icon-wrapper[aria-expanded="true"] .hamburger-icon-line:nth-child(2) {
  opacity: 0;
}
.hamburger-icon-wrapper[aria-expanded="true"] .hamburger-icon-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Buttons ──────────────────────────────────────────────── */
.button {
  color: var(--light);
  text-transform: uppercase;
  padding: 16px 32px;
  font-family: Teko, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border: 0;
  line-height: 18px;
}
.button-red {
  background-color: var(--primary);
  color: var(--light);
}
.button-red:hover {
  background-color: var(--light);
  color: var(--primary);
}

.button-dark {
  background-color: var(--dark);
  color: var(--light);
}
.button-dark:hover {
  background-color: var(--primary);
  color: var(--light);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background-color: var(--dark-background);
  position: relative;
  overflow: hidden;
  padding-bottom: 0 !important;
}
.hero > .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 648px;
  grid-template-rows: auto auto;
  align-items: stretch;
}
.hero-heading, .hero-paragraph { color: var(--light); }
.text-wrapper p { color: var(--light); }
.hero-heading { white-space: normal; word-break: normal; overflow-wrap: break-word; }

.text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 57px 40px 63px 0;
}

.form-wrapper {
  position: relative;
  z-index: 2;
  background-color: var(--light);
  padding: 56px;
  grid-column: 2;
  grid-row: 1 / 3;
  height: fit-content;
}

.form-heading {
  font-family: Teko, Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
  margin-top: 0;
  line-height: 1;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.field-label {
  color: var(--dark);
  text-transform: uppercase;
  font-family: Teko, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 4px;
  display: block;
}
.field-required { color: var(--primary); }
.form-field {
  background-color: var(--light-grey);
  color: var(--muted-text);
  border: 0;
  border-radius: 0;
  width: 100%;
  height: 50px;
  padding: 14px;
  font-family: Sulsans, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  display: block;
}
.form-field:focus { outline: 2px solid var(--primary); }
.form-field.form-field-textarea { height: 122px; resize: vertical; }
.form-field-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}
.checkbox {
  background-color: var(--light-grey);
  border: 0;
  border-radius: 0;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.checkbox:checked {
  background-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
}
.checkbox-label {
  color: var(--dark);
  padding-left: 16px;
  font-family: Sulsans, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.form-submit-btn {
  background-color: var(--primary);
  color: var(--light);
  text-transform: uppercase;
  font-family: Teko, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  padding: 16px 32px;
  border: 0;
  cursor: pointer;
  width: 100%;
}
.form-submit-btn:hover { background-color: var(--dark); }
/* WPForms overrides – zelfde stijl als origineel */
.block-hero .wpforms-container .wpforms-form input:not([type=submit]):not([type=checkbox]),
.block-hero .wpforms-container .wpforms-form select,
.block-hero .wpforms-container .wpforms-form textarea {
  background-color: var(--light-grey) !important;
  color: var(--muted-text) !important;
  border: 0 !important;
  border-radius: 0 !important;
  height: 50px !important;
  padding: 14px !important;
  font-family: Sulsans, Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  width: 100% !important;
  box-shadow: none !important;
}
.block-hero .wpforms-container .wpforms-form textarea { height: 122px !important; }
.block-hero .wpforms-container .wpforms-form label {
  color: var(--dark) !important;
  text-transform: uppercase !important;
  font-family: Teko, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 16px !important;
}
.block-hero .wpforms-container .wpforms-form button[type=submit],
.block-hero .wpforms-container .wpforms-form input[type=submit] {
  background-color: var(--primary) !important;
  color: var(--light) !important;
  text-transform: uppercase !important;
  font-family: Teko, Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 16px 32px !important;
  width: 100% !important;
}
.block-hero .wpforms-container .wpforms-form button[type=submit]:hover { background-color: var(--dark) !important; }

/* Background video in hero */
.background-video {
  grid-column: 1 / 3;
  grid-row: 2;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 645px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.background-video video {
  object-fit: cover;
  position: absolute;
  inset: -100%;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: -1;
}

/* ── USPs ─────────────────────────────────────────────────── */
.usp-s {
  background-color: var(--dark-background);
  padding-top: 48px;
  padding-bottom: 48px;
  overflow: hidden;
}
.usp-heading {
  color: var(--light);
  font-family: Teko, Arial, sans-serif;
  text-transform: uppercase;
}
.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
}
.div-block.usp-icon {
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  padding: 16px;
  flex-shrink: 0;
}
.div-block.usp-icon img { width: 100%; height: 100%; object-fit: contain; }
.usp-heading { color: var(--light); }

/* ── TEXT + IMAGE sections (Waarom / Over ons / Hoe werkt het) ── */
/* .text-image {
  padding-top: 52px;
  padding-bottom: 52px;
  overflow: hidden;
} */
.text-image-alternate {
  margin-top: -9px;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}
.quick-stack-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0;
}
/* Afbeelding links = image in kolom 1, tekst in kolom 2 */
.quick-stack-2.image-left  .cell-image { order: 1; }
.quick-stack-2.image-left  .cell-text  { order: 2; }
/* Afbeelding rechts = tekst in kolom 1, afbeelding in kolom 2 */
.quick-stack-2.image-right .cell-text  { order: 1; padding-right: 3rem; }
.quick-stack-2.image-right .cell-image { order: 2; }
.quick-stack-2.image-left  .cell-text  { padding-left: 3rem; }

.cell-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cell-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}
.section-image {
  object-fit: cover;
  width: 648px;
  height: 528px;
  display: block;
}
#waarom-leasen {
  padding-top: 0 !important;
  overflow: visible;
}
#waarom-leasen .quick-stack-2 {
  grid-template-columns: 2fr 1fr;
}
#waarom-leasen .cell-text {
  padding-top: 7rem;
}
#waarom-leasen .section-image {
  object-fit: contain !important;
  object-position: center top;
  width: 100% !important;
  height: 100% !important;
}
.image-absolute {
  object-fit: contain;
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: 648px;
}
.div-block-2 {
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 40px;
  max-height: 40px;
  padding: 20px;
}
.list-heading { color: var(--light); font-family: Teko, Arial, sans-serif; }
.paragraph { margin-bottom: 0; }

/* Stappenlijst in "hoe werkt het" */
.steps-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 24px; }
.step-item { display: flex; align-items: flex-start; gap: 24px; }
.step-number-box {
  background-color: var(--primary);
  color: var(--light);
  font-family: Teko, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h5 { margin-bottom: 4px; }
.step-content p  { margin-bottom: 0; }

/* ── Voor wie ─────────────────────────────────────────────── */
.for-whom-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.for-whom-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.veelgestelde-vragen {
  padding-top: 52px;
  padding-bottom: 52px;
  overflow: hidden;
}
.veelgestelde-vragen-heading { 
  margin-bottom: 1rem;
  text-align: center; 
}
.paragraph-3 {
  text-align: center;
  width: 536px;
  margin: 0 auto 24px;
}
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 872px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  padding-top: 2.5rem;
}
.accordion-item {
  background-color: var(--light-grey);
  width: 100%;
  overflow: hidden;
}
.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
  padding: 16px 24px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: Sulsans, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--dark);
  text-align: left;
}
.accordion-toggle-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.accordion-toggle[aria-expanded="true"] .accordion-toggle-icon {
  transform: rotate(180deg);
}
.accordion-content-container {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-content-container.is-open {
  max-height: 600px;
  padding: 16px 24px;
}
.accordion-toggle[aria-expanded="true"] {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.small {
  color: var(--muted-text);
  font-family: Sulsans, Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 0;
}
.small.accordion-item-content { color: var(--dark); }

/* FAQ CTA */
.flex-block-6 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 100% 50%;
  padding-top: 52px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.image-2 { width: 199px; height: auto; }
.div-block-5 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.footer-menu-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.footer-link {
  font-family: Sulsans, Arial, sans-serif;
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
}
.cell-5 {
  border-top: 2px solid var(--light-grey);
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer-copy {
  font-family: Sulsans, Arial, sans-serif;
  font-size: 14px;
  color: var(--muted-text);
  margin: 0;
}

/* ── Utility ──────────────────────────────────────────────── */
.grecaptcha-badge { display: none !important; }

/* WPForms GDPR checkbox */
.wpforms-field-gdpr-checkbox li {
  display: flex;
  align-items: center;
  list-style: none;
}
div.wpforms-container-full input[type=checkbox]::before,
div.wpforms-container-full input[type=checkbox]::after {
	border: 0 !important;
	background-color: transparent !important;
	border-radius: 0 !important;
}

div.wpforms-container-full input[type=checkbox] {
  clear: none !important;
  mix-blend-mode: normal !important;
  background-color: #f0f0f0 !important;
  border: 0 solid #000 !important;
  border-radius: 0 !important;
  order: -1 !important;
  align-self: center !important;
  width: 16px !important;
  height: 16px !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
  display: block !important;
  flex-shrink: 0 !important;
}
.wpforms-field-gdpr-checkbox .wpforms-field-label-inline {
  color: var(--dark) !important;
  padding-left: 16px !important;
  font-family: Sulsans, Arial, sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  text-transform: none !important;
  font-size: 14px !important;
}
.w-list-unstyled { padding-left: 0; list-style: none; }
.site-main { padding-top: 0; }
@media screen and (min-width: 1024px) {
	.hero {
		padding-top: 7rem !important;
	}
}


/* ── Responsive 991px ─────────────────────────────────────── */
@media screen and (max-width: 1024px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
  .site-main  { padding-top: 2rem; }
  .navigation { padding-top: 1rem; padding-bottom: 1rem; }
  body.admin-bar .navigation { top: 0 !important; }

  .navigation:has(.nav-link-container.is-open) .nav-inner { border-bottom: 1px solid rgba(255, 255, 255, 0.3); padding-bottom: 24px; }

  /* Hamburger zichtbaar, nav-links verborgen standaard */
  .hamburger-icon-wrapper { display: flex; }
  .nav-link-container {
    position: fixed;
    top: 4.75rem;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 3rem 2rem 2rem;
    gap: 16px;
    display: none;
    z-index: 999;
  }
  .nav-link-container.is-open { display: flex; }

  .hero > .container { grid-template-columns: 1fr; grid-template-rows: auto; }
  .form-wrapper { grid-column: auto; grid-row: auto; padding: 32px; }
  .background-video { grid-column: auto; grid-row: auto; height: 350px; margin-top: 2rem; }
  .quick-stack-2 { grid-template-columns: 1fr; }
  .quick-stack-2.image-left .cell-image,
  .quick-stack-2.image-right .cell-image { order: -1; }
  .cell-text { padding-top: 24px; padding-bottom: 24px; }
  .section-image { width: 100%; }
  .accordion-list { width: 100%; }
  .paragraph-3 { width: 100%; }
  .list-item { width: 49%; padding: 0; }
  .usp-s { padding: 2rem !important; }
  .usp-s .container { padding-left: 0; padding-right: 0; }
  .list { row-gap: 24px; }
  .div-block-5 { flex-direction: column; }
  .footer { background-size: 100% 30%; }

  /* #waarom-leasen: reset desktop overrides for tablet/mobile */
  #waarom-leasen .quick-stack-2 { grid-template-columns: 1fr; }
  #waarom-leasen .cell-text { padding-top: 24px; }
  #waarom-leasen .section-image { height: 500px !important; }
  .quick-stack-2.image-right .cell-text { padding-right: 0; }
  .quick-stack-2.image-left .cell-text { padding-left: 0; }
}

@media screen and (max-width: 768px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
  .list { flex-direction: column; }
  .nav-link-container { gap: 16px; padding-top: 7rem; }
  .hero { padding-top: 0 !important; }
  .hero > .container { grid-template-columns: 1fr; grid-template-rows: auto; }
  .text-wrapper { min-height: 0; padding: 2rem 0; }
  .form-wrapper { grid-column: auto; grid-row: auto; }
  .background-video { grid-column: auto; grid-row: auto; height: 250px; margin-top: 1rem; }
  .quick-stack-2.image-right .cell-text,
  .quick-stack-2.image-left  .cell-text  { padding-left: 0; padding-right: 0; }
  #waarom-leasen .section-image { height: 250px !important; }
  .usp-s { padding: 2rem 1rem !important; }
  .usp-s .container { padding-left: 0; padding-right: 0; }
  .list { align-items: flex-start; gap: 16px; }
  .list-item { width: 100%; padding: 0; }
  .usp-s { padding: 2rem 1rem !important; }
}

@media screen and (max-width: 479px) {
  h2 { font-size: 28px; }
  .container { padding: 0 1rem; }
  .hero-heading { font-size: 34px; }
  .text-wrapper { padding: 1rem 0; }
  .form-wrapper { padding: 16px; }
  .section-image { height: 250px; }
  .cell-text { padding-top: 16px; padding-bottom: 16px; }
  .veelgestelde-vragen { padding-top: 0; padding-bottom: 0; }
  .accordion-list { max-width: 90vw; }
  .footer { background-image: none; padding-top: 0; }
  .footer-menu-wrapper { flex-direction: column; align-items: flex-start; gap: 8px; }
  .background-video { height: 200px; }
  .nav-link-container { width: 100vw; padding: 3rem 1rem 1rem; }
}
