html {
  scroll-behavior: smooth;
}

.theme-transition * {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.video-container {
  perspective: 1000px;
}

/* Floating button effect */
.floating-btn {
  transform: translateY(0);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.floating-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.floating-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Fade in from top animation */
.fade-in-top {
  animation: fade-in-top 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(-20px);
}

@keyframes fade-in-top {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark theme customizations */
.dark {
  --tw-gradient-from: #000000;
  --tw-gradient-to: #004d4d;
  --tw-gradient-stops: var(--tw-gradient-from), #008080, var(--tw-gradient-to);
}

/* Title styling */
.title-animation {
  color: #333;
}

.dark .title-animation {
  color: #00c853;
}

/* Patua One font class */
.font-patua {
  font-family: 'Patua One', sans-serif;
}