/* -------------------------------------------------------------
   DSOL LANDING PAGE CSS  —  v17 (Highly Transparent Footer)
   ------------------------------------------------------------- */

/* BACKGROUND VIDEO */

#landing-container video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* OVERLAY CONTENT */

#overlay-content {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem 2rem 2.5rem;
  padding-top: calc(env(safe-area-inset-top) + 2rem);
  /*padding-top: calc(env(safe-area-inset-top) + 2rem);*/
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn 2s ease-in forwards;
  opacity: 0;
  width: 90%;
  max-width: 700px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#overlay-content::-webkit-scrollbar {
  display: none;
}

#overlay-content h1 {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.10rem;
}

#overlay-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* BUTTON BLOCKS */

#Post-Production-Reel, #New-Music {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: clamp(180px, 50vw, 340px);
  margin: 1.5rem auto;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.3s ease, background 0.3s ease;
  text-align: center;
  max-width: 340px;
}

#Post-Production-Reel:hover, #New-Music:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.18);
}

/* THUMBNAILS */

#Post-Production-Reel img, #New-Music img {
  display: block;
  width: 100%;
  max-width: 300px;
  max-height: 300px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#Post-Production-Reel img:hover, #New-Music img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
}

/* LABELS */

#Post-Production-Reel p, #New-Music p {
  margin-top: 6px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  text-align: center;
  color: #fff;
  line-height: 1.3;
}

/* FOOTER */

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #00000000;
  color: #696666;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  z-index: 1000;
}

footer a {
  color: #ffffff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer p:last-child {
  font-size: 0.75rem;
  margin-top: 0px;
  opacity: 0.85;
}

footer {
  background-color: rgba(0, 0, 0, 0.02) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

footer.bg-dark, footer {
  background: rgba(0,0,0,0.30) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
}

