/* Videography Page Critical CSS - Ultra-Fast Loading */

/* INSTANT HERO VISIBILITY - NO DELAYS */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* DISABLE ALL TRANSITIONS AND ANIMATIONS */
*, *::before, *::after {
  transition: none;
  animation: none;
  animation-delay: 0s;
  animation-duration: 0s;
}

/* PAGE LOADER VISIBLE BY DEFAULT */
.page-loader {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

/* INSTANT HEADER VISIBILITY */
.header {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

/* FORCE IMMEDIATE RENDERING */
.hero, .hero-background, .hero-video-container, .hero-video-container iframe {
  will-change: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Page Loader Styles */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #ffd700;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
