html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 40px !important;
}

.font-light {
  font-weight: 300 !important;
}
.font-normal {
  font-weight: 400 !important;
}
.font-medium {
  font-weight: 500 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.font-bold {
  font-weight: 700 !important;
}
.font-extrabold {
  font-weight: 800 !important;
}

.logo {
  width: 150px;
  height: 80px;
  background: url("/logos/Logo\ White.png") center/cover no-repeat;
  text-decoration: none;
  display: block;
}

.headshot {
  background-image: url("/images/new-me.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.video-swiper {
  width: 100%;
  padding: 2.5rem 0;
  position: relative;
}

.video-swiper .swiper-slide {
  height: auto;
}

.video-swiper .swiper-slide a {
  text-decoration: none;
}

.video-swiper .swiper-button-next,
.video-swiper .swiper-button-prev {
  color: #5dfaff;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  transition: all 0.3s ease;
}

.video-swiper .swiper-button-next:hover,
.video-swiper .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.05);
}

.video-swiper .swiper-button-next:after,
.video-swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.video-swiper .swiper-button-disabled {
  opacity: 0.3;
}

.video-swiper .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.video-swiper .swiper-pagination-bullet {
  background: #5dfaff;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.video-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

.video-card {
  background:#2e1d47;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(93, 250, 255, 0.2);
  height: 400px;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
  height: 200px;
  background: linear-gradient(45deg, #2e1d47, #7a4ec7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d2d6f3;
  font-size: 1.1rem;
}

.video-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-content {
  padding: 20px;
}

.video-content h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.video-content p {
  color: #d2d6f3;
  font-size: 0.9rem;
}

.nav-links.active {
  display: flex !important;
}

.faq-answer.active {
  padding: 1.25rem;
  max-height: 200px;
}

.faq-icon.active {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .logo {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 80px;
    height: 80px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

.parallax-container {
  position: relative;
}

.parallax-element {
  will-change: transform;
  transition: none;
}

.hero-parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2e1d47 0%, #7a4ec7 50%, #5dfaff 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  z-index: -1;
  will-change: background-position;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2n) {
  animation-delay: -2s;
  animation-duration: 8s;
}

.floating-element:nth-child(3n) {
  animation-delay: -4s;
  animation-duration: 7s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .parallax-element {
    transform: none !important;
  }

  .floating-element {
    animation: none;
  }

  .parallax-container {
    overflow: visible;
  }

  .hero-parallax .headshot {
    margin: 0 auto 2rem auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-element,
  .floating-element,
  .hero-parallax::before {
    transform: none !important;
    animation: none !important;
  }
}
