/* ============================================
   SPLASH SCREEN - SITE-WIDE LOADING SCREEN
   Include this CSS on every page that uses the splash
   ============================================ */

   .splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  
  .splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
  }
  
  .splash-content {
    text-align: center;
    animation: splashFadeIn 0.6s ease-out;
  }
  
  .splash-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    animation: logoFloat 2.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(208, 168, 105, 0.3));
  }
  
  .splash-brand {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    font-family: var(--font-family-base);
    animation: splashFadeIn 0.6s ease-out 0.2s backwards;
  }
  
  /* Animations */
  @keyframes splashFadeIn {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes logoFloat {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-8px);
    }
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .splash-logo {
      width: 80px;
      height: 80px;
      margin-bottom: 1rem;
    }
    
    .splash-brand {
      font-size: 28px;
    }
  }
  
  /* Reduced motion support */
  @media (prefers-reduced-motion: reduce) {
    .splash-logo {
      animation: none;
    }
    
    .splash-content {
      animation: none;
    }
    
    .splash-brand {
      animation: none;
    }
  }