/* ==========================================
   LUMORA - Global Styles
   ========================================== */

/* Base */
body {
  font-family: "Inter", sans-serif;
  background-color: #050505;
  color: #ffffff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
.font-display {
  font-family: "Outfit", sans-serif;
}

/* ==========================================
   GRADIENTS & BRAND
   ========================================== */
.lumora-gradient {
  background: linear-gradient(135deg, #ff4b2b 0%, #ff8c00 100%);
}

.lumora-text-gradient {
  background: linear-gradient(135deg, #ff4b2b 0%, #ff8c00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================
   GLASSMORPHISM
   ========================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   MOVIE CARD
   ========================================== */
.movie-card {
  transition:
    transform 0.4s cubic-bezier(0.2, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

.movie-card:hover {
  transform: scale(1.08);
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-hover {
  transition: all 0.3s ease;
}

.btn-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 75, 43, 0.4);
}

/* ==========================================
   SCROLLBAR
   ========================================== */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ==========================================
   HERO
   ========================================== */
.hero-vignette {
  background: linear-gradient(
    to top,
    #050505 0%,
    rgba(5, 5, 5, 0.2) 50%,
    rgba(5, 5, 5, 0.1) 100%
  );
}

/* ==========================================
   PAGE TRANSITIONS
   ========================================== */
.page-content {
  display: none;
  animation: fadeInPage 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-content.active {
  display: block;
}

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

/* ==========================================
   MODAL PLAYER
   ========================================== */
.modal-backdrop {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
}

/* ==========================================
   SWIPER CUSTOM
   ========================================== */
.swiper-button-next,
.swiper-button-prev {
  color: #ff8c00 !important;
}

.swiper-pagination-bullet-active {
  background: #ff8c00 !important;
}
