/* Home: transparent navbar */
.fullscreen-video-wrapper .navbar {
  background-color: transparent;
}

/* Fullscreen video background */
.fullscreen-video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.fullscreen-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
}

.fullscreen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
}

.fullscreen-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 3;
  background: transparent;
  border: none;
  pointer-events: none;
}

.fullscreen-content h1 {
  display: flex;
  flex-direction: column;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1.2;
  width: 100%;
  align-items: center;
  text-transform: uppercase;
}

#cinematographer-text {
  display: inline-block;
  position: relative;
}

#cinematographer-text hr {
  width: 100%;
  border: 0.25px solid #fff;
  margin: 8px 8px 0 0;
  opacity: 1;
  background: #fff;
}

#photographer-text {
  margin-top: 8px;
}

.fullscreen-content p {
  font-size: 18px;
  letter-spacing: 2px;
  opacity: 0.7;
}

/* Home footer overlay */
.fullscreen-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  font-size: 12px;
  opacity: 0.5;
  background: transparent;
  border: none;
  z-index: 4;
}

@media (max-width: 768px) {
  .fullscreen-content h1 {
    font-size: 18px !important;
    letter-spacing: 2px;
  }
  .fullscreen-content p {
    font-size: 14px;
  }
  .fullscreen-video-wrapper .nav-links {
    margin-right: 0.5cm;
  }
  .fullscreen-video-wrapper .logo {
    margin-left: 0.5cm;
  }
  .fullscreen-footer {
    padding: 15px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .fullscreen-content h1 {
    font-size: 28px;
    letter-spacing: 1px;
  }
  .fullscreen-content p {
    font-size: 12px;
  }
  .fullscreen-video-wrapper .nav-links {
    margin-right: 0;
  }
  .fullscreen-video-wrapper .logo {
    margin-left: 0;
  }
}

@media (max-width: 615px) {
  .navbar {
    grid-template-columns: 1fr; /* jedna kolumna */
    row-gap: 40px;
    padding: 14px 16px;
  }

  .logo {
    grid-column: 1;
    justify-self: center;
    text-align: center;
  }

  .nav-links {
    grid-column: 1;
    justify-self: center;
    row-gap: 8px;
    column-gap: 16px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    justify-self: start;
    justify-content: flex-start;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    text-align: left;
    align-items: flex-start;
  }

  .nav-links li {
    text-align: left;
  }
}

/* EXTRA SMALL: minimalnie mniejszy tekst i odstępy */
@media (max-width: 480px) {
  .nav-links a {
    font-size: 11px;
    letter-spacing: 0.8px;
  }

  .nav-links {
    column-gap: 12px;
  }

  .nav-links a {
    font-size: 7px;
  }
}
