:root {
  --plyr-color-main: #000; /* Accent color (e.g. progress bar, active icons) */
  --plyr-control-icon-color: #fff; /* Icon color */
  --plyr-control-hover-background: rgba(255, 255, 255, 0.2); /* Hover background on buttons */
  --plyr-range-fill-background: #000; /* Volume & progress bar fill */
}



.glide {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Optional max width */
  margin: 0 auto;
 /* flex-shrink: 0; */
}

.glide {
  display: flex;
  justify-content: center;
}

/* Track & Slides */
.glide__slide img {
  width: 90%;             /* Image is 50% of the container */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 0px;
  object-fit: cover;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
}

/*
.glide__track {
  overflow: visible;
}
*/


/* Arrows */
.glide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: black;
  font-size: 2rem;
  font-weight: bold;
  padding: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  opacity: 0.8;
  /*transition: transform 0.3s ease, opacity 0.3s ease;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.glide__arrow {
  /* Existing styles... */
  border: none;
  background: none;
  outline: none;         /* <- removes focus border in some browsers */
  box-shadow: none;      /* <- removes any shadow if present */
  padding: 0;
}

.glide__arrow:focus {
  outline: none;
}


.glide__arrow--left {
  left: calc(5% - 40px);  /* Image is centered at 50%, so arrows offset from edges */
}

.glide__arrow--right {
  right: calc(5% - 40px);
}

/* Hover animation */
.glide__arrow:hover {
  border: none;
  background: none;
  outline: none;         /* <- removes focus border in some browsers */
  box-shadow: none;      /* <- removes any shadow if present */
  padding: 0;
  opacity: 1;
}

.glide::before,
.glide::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  z-index: 5;
  pointer-events: none;
}

.glide::before {
  left: 0;
  /*background: linear-gradient(to right, white 0%, transparent 100%);*/
}

.glide::after {
  right: 0;
  /*background: linear-gradient(to left, white 0%, transparent 100%);*/
}

@media (max-width: 1280px) {
  .glide__slide img {
    width: 90%;
  }

.glide__arrow--left {
  left: calc(5% - 60px);  /* Image is centered at 50%, so arrows offset from edges */
}

.glide__arrow--right {
  right: calc(5% - 50px);
}


@media (max-width: 768px) {
  .glide__slide img {
    width: 90%;
  }

.glide__arrow--left {
  left: calc(5% - 20px);  /* Image is centered at 50%, so arrows offset from edges */
}

.glide__arrow--right {
  right: calc(5% - 30px);
}





.video-container {
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}


/*
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px; 
  aspect-ratio: 16 / 9;
  background: black; 
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: black; /* fallback if object-fit doesn't fully apply */
}
*/

/* Optional: adjust Plyr styling */
.plyr--video {
  border-radius: 10px;
}

@media (max-width: 1280px) {

.video-container {
  margin: 0rem auto;
}

}


@media (max-width: 768px) {
.video-container {
  margin: 0rem auto;
}

}




.language-switcher {
  margin-top: 1em;
  font-size: 0.9rem;
}

.language-switcher a {
  text-decoration: none;
  color: #0077cc;
  margin-right: 0.5rem;
}

.language-switcher a:hover {
  text-decoration: underline;
}
