#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}

#topsection {
  position: relative;
  overflow: hidden;
}

section {
  padding-top: 10px;
  background-color: transparent;
}

#logo {
  width: 60%;
  top: 4rem;
  left: 4rem;
  transition: all 1.5s ease-in-out;
  z-index: 100;
}

#logo.sticky {
  /*Optional: Adjust left position;*/
  top: 1rem;
  left: 100;
  width: 40%;
}

.fade-button {
  opacity: 1;
  transform: translateX(0px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Active state - items are visible and in their final position */

.fade-button.visible {
  opacity: 1;
  transform: translateX(0);
}

#topsection .btn {
  padding: .5rem;
  margin-bottom: .5rem;
}

.djimg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('../../assets/img/header-dj.webp') center / cover;
  z-index: 100;
  transform: translateY(0);
  transition: transform 0.1s linear;
}

.slant-bg {
  width: 100%;
  clip-path: polygon(0 0, 100% 0%, 100% 90%, 0 100%);
  background: linear-gradient(170deg, #facf40 80%, #cda933 20%);
  padding: 1.5rem;
}

.slant-bg2 {
  width: 100%;
  clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0 100%);
  background: linear-gradient(185deg, rgb(0, 0, 0) 0 80%, #facf40 20%);
  padding: 1.5rem;
}

#about .row {
  position: relative;
  z-index: 100;
  padding: 10px;
}

@media (min-width: 768px) {
  #logo {
    position: absolute;
    top: 1rem;
    margin-left: 4rem;
    max-width: 30vw;
  }
}

@media (max-width: 768px) {
  #logo {
    position: fixed;
    top: 5px;
  }
}

img {
}

@media (min-width: 576px) {
  #aboutimg {
    display: none;
  }
}

@media (min-width:768px) {
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
    margin-top: 0px;
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    margin-top: 5rem;
  }
}

.btn {
  color: #000000;
  font-family: "Acme", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 7px;
  padding: 8px 15px;
  border: 2px solid #ad5389;
  border-radius: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  color: #3c1053;
  border: 2px solid #3c1053;
}

.btn:before, .btn:after {
  content: "";
  width: 16px;
  height: 16px;
  border-style: solid;
  border-width: 2px 0 0 2px;
  border-color: #ad5389;
  position: absolute;
  top: -6px;
  left: -6px;
  transition: all 0.3s ease-in-out;
}

.btn:after {
  border-width: 0 2px 2px 0;
  top: auto;
  bottom: -6px;
  left: auto;
  right: -6px;
}

.btn:hover:before, .btn:hover:after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-color: #3c1053;
  transform: rotateY(180deg);
}

@media only screen and (max-width: 767px) {
  .btn {
    margin-bottom: 30px;
  }
}

#container {
  color: #999;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: bold;
  padding-top: 20px;
  width: 100%;
  display: block;
}

#flip {
  height: 30px;
  overflow: hidden;
}

#flip > div > div {
  color: #fff;
  padding: 2px 8px;
  height: 25px;
  margin-bottom: 25px;
  display: inline-block;
}

#flip div:first-child {
  animation: show 5s linear infinite;
}

#flip div div {
  background: #000000;
}

#flip div:first-child div {
  background: #000000;
}

#flip div:last-child div {
  background: #000000;
}

@keyframes show {
  0% {
    margin-top: -250px;
  }
  5% {
    margin-top: -200px;
  }
  20% {
    margin-top: -200px;
  }
  25% {
    margin-top: -150px;
  }
  40% {
    margin-top: -150px;
  }
  45% {
    margin-top: -100px;
  }
  60% {
    margin-top: -100px;
  }
  65% {
    margin-top: -50px;
  }
  80% {
    margin-top: -50px;
  }
  85% {
    margin-top: 0px;
  }
  99.99% {
    margin-top: 0px;
  }
  100% {
    margin-top: -250px;
  }
}

.video-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 40px 20px;
  background: #f8f9fb;
}

/* iPhone-style vertical video card */

.video-gallery iframe {
  width: 300px;
  height: 533px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect (feels modern/premium) */

.video-gallery iframe:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Mobile optimization */

@media (max-width: 768px) {
  .video-gallery iframe {
    width: 90%;
    height: calc(90vw * 1.77);
  }
}

