:root {
  --primary: #28555d;
  --primary-light: #397b87;
  --primary-lighter: #70a7b1;
  --white: #ffffff;
  --black: #000000;
  --complementary: #5d2830;
  --complementary-light: #874339;
  --accent: #b17070;
  --gray: #f5f5f5;
  --gray-dark: #202020;
  --gray-light: #ffffff8f;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
/* Header & Navigation */
header {
  background-color: var(--primary);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0 auto;
}

/* Main Layout */
main {
  min-height: calc(100vh - 4rem);
  margin-top: 3.5rem;
  overflow-x: hidden;
}

section {
  max-width: 100%;
  box-sizing: border-box;
  flex: 1;
  padding: 0 1rem;
}

section:not(:last-child) {
  margin-bottom: 4rem;
}





.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.theme-toggle:hover {
  color: var(--primary-lighter);
}

/* Dark mode Icon-Farbe invertieren */
body.dark-mode .theme-toggle {
  color: var(--black);
}


/* Hero Section */
.hero {
  width: 100vw;
  position: relative;
  overflow-x: hidden;
  margin-top: -3.5rem;
  padding-top: 4rem;
  min-height: 100vh;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 29, 33, 0.5);
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 5rem;
}

.hero p {
  font-size: 1.5rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.modal-thumbnail {
  margin: 20px 0;
  text-align: center;
}

.modal-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}



nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 1rem;
}

.logo-link {
  display: inline-block;
}

.logo {
  display: flex;
  align-items: center;
  height: 40px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary-lighter);
}

.camera-logo {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  height: 50vh;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    object-fit: cover; /* Füllt den Bildschirm aus und behält das Seitenverhältnis */   
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 29, 33, 0.5); /* Farbe #001d21 mit 50% Deckkraft */
    z-index: 0;
}

.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1; /* Text über dem Video */
    color: white; /* Textfarbe */
    text-align: center; /* Zentriert den Text */
}

.hero-text {
    position: relative;
    z-index: 1; /* Text über dem Video */
    color: white; /* Textfarbe */
    text-align: center; /* Zentriert den Text */
    top: 50%;
    transform: translateY(-50%);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 5rem;
}

.hero p {
  font-size: 1.5rem;
}

/* References Section */
.references {
  padding: 4rem 2rem;
  background-color: var(--white);
}

.references h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--gray);
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-buttons button:hover,
.filter-buttons button.active {
  background-color: var(--primary);
  color: var(--white);
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card .content {
  padding: 1rem;
}

.project-title {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.year {
  color: var(--gray);
  font-size: 0.9rem;
}

.expand-controls {
  text-align: center;
  margin-top: 2rem;
}

.expand-button {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.expand-button i {
  margin-left: 0.5rem;
}

/* About Section */
.about {
  padding: 5rem 2rem;
  background-color: var(--white);
  
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-image {
  flex: 1;
}

.about-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-title {
    margin-bottom: 2rem;
}

.about-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1.5rem;
}

/* Showreel Grid */

/*.showreels-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


/*.youtube-video {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 0;
  padding-bottom: 56.25%; 
  border-radius: 8px;
  overflow: hidden;
  background-color: #000;
  border: 2px solid var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.youtube-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
*/

/* Firefox specific fixes */
/*
@-moz-document url-prefix() {
  .showreels-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
  
  .youtube-video, .youtube-video2 {
    width: 100% !important;
  }
}

/* Responsive adjustments */
/*
@media (max-width: 1024px) {
  .showreels-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .youtube-video, .youtube-video2 {
    max-width: 100%;
    flex: none;
  }
}

/* Services Section */
.services {
  padding: 5rem 2rem;
  background-color: var(--gray);
}

.services h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
    gap: 2rem; /* Abstand zwischen den Karten */
}

/* References Section */
.references {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.references h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-buttons button {
    background-color: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-buttons button.active {
    background-color: var(--primary);
    color: var(--white);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card .content {
    padding: 1rem;
}

.project-title {
    margin: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

.year {
    margin: 0.5rem 0 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.expand-button {
    display: block;
    margin: 0 auto;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
    gap: 2rem; /* Abstand zwischen den Karten */
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-weight: 300;
}

h3 {
    font-weight: 600;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Software Section */
.software {
  padding: 5rem 2rem;
  background-color: var(--white);
}

.software h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.software-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.software-logo img {
  max-width: 80px;
  height: auto;
}

.software-name {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  text-align: center;
  margin-top: 0.5rem;
}

/* References Section */
.references {
  padding: 5rem 2rem;
  background-color: var(--gray);
}

.references h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  background-color: var(--white);
  color: var(--primary);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background-color: var(--primary);
  color: var(--white);
}

.references {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  width: 100%;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.project-card:hover {
  transform: translateY(-2px);
}

.project-card .project-thumbnail {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.project-card .content {
  padding: 1rem;
}

.project-card h3 {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: var(--primary);
}

.project-card .year {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
}

.expand-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.expand-button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem 3rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 200px;
  text-align: center;
}

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

.expand-button i {
  font-size: 1.2rem;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  padding: 0 2rem;
}

.prev-slide, .next-slide {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.prev-slide:hover, .next-slide:hover {
  background: rgba(255, 255, 255, 1);
  color: var(--primary-lighter);
  transform: scale(1.1);
}

.prev-slide {
  left: 0;
}

.next-slide {
  right: 0;
}

.project-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card .content {
  padding: 1.5rem;
}

.project-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.project-card .year {
  color: var(--primary-light);
  font-size: 0.9rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
}

.modal-content {
  position: relative;
  background-color: var(--white);
  margin: 5% auto;
  padding: 2rem;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}


.modal-video {
  position: relative;
  padding-bottom: 56.25%;
  margin-bottom: 1rem;
}

.modal-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Call-to-Action Section */
.cta-section {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 2rem;
  background-color: var(--gray);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.cta-content h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.cta-content p {
  margin-bottom: 1.5rem;
}

.cta-content p strong {
  color: var(--primary);
}

.cta-content p strong:after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
  margin-top: 0.5rem;
}

.arrow-down {
  text-align: center;
  margin: 2rem 0;
}

.scroll-icon {
  width: 80px;
  height: auto;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Contact Section */
.contact {
  padding: 5rem 2rem;
  background-color: var(--white);
}

.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

#contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--gray);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 0;
}

.checkbox-container label {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex: 1;
  padding: 0;
  gap: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.2;
}

.checkmark {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
  z-index: 1;
  margin: 0;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
  border-color: #4CAF50;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark:after {
  content: "";
  position: absolute;
  display: block;
  left: 4px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #4CAF50;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container label:hover {
  color: var(--primary);
}

.checkbox-container input[type="checkbox"]:focus + .checkmark {
  border-color: var(--primary);
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.checkbox-container a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
}

.checkbox-container a:hover {
  text-decoration: underline;
}

#contact-form button {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1.5rem;
}

#contact-form button:hover {
  background-color: var(--primary-light);
}

#contact-form button {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact-form button:hover {
  background-color: var(--primary-light);
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0rem 0rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  margin-bottom: 0.5rem;
  text-align: center;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;

}

.footer-section a:hover {
  color: var(--primary-lighter);
}

.footer-logo {
  display: block;
  margin: 0 auto;
}

.footer-logo-img {
  max-width: 300px;
  height: auto;
}

.footer-description {
  margin-top: 1rem;
  color: var(--white);
}

.footer-bottom {
  display:block;
  margin-top: 1rem;
  width: 100%;
  text-align: center;
  padding: 1rem;
  background-color: var(--gray-dark);
  color: var(--gray-light);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-lighter);
}

/* Tablet Layout */
@media screen and (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

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

/* Mobile Layout */
@media screen and (max-width: 768px) {
  main {
    padding: 0 1rem;
  }

  section {
    padding: 0;
  }

  section:not(:last-child) {
    margin-bottom: 2rem;
  }

  /* Hero Section */
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  /* Navigation */
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary);
    flex-direction: column;
    padding: 1rem;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li a {
    padding: 0.5rem 1rem;
    display: block;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
  }

  /* Project Cards */
  .project-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Contact Form */
  .contact-form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-group {
    width: 100%;
  }
  /*
  .showreels-grid {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .youtube-video {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}
*/

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    display: none;
  }

  main {
    padding: 0rem;
  }

  .camera-logo {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-content {
    flex-direction: column;
    gap: 2rem;    
}
/* Responsive YouTube Wrapper */

.references-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.modal-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
  max-width: 100%;
}

.modal-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.filter-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .checkbox-container label {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
}
}