/* BCT Entertainment - Custom Styles (non-Tailwind) */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* Base */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  overflow-x: hidden;
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Parallax */
.parallax-bg {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Hero Section */
.hero-gradient {
  background:
    linear-gradient(
      135deg,
      rgba(10, 10, 10, 0.97) 0%,
      rgba(10, 10, 10, 0.85) 35%,
      rgba(10, 10, 10, 0.7) 60%,
      rgba(143, 96, 252, 0.12) 100%
    );
}

.hero-gradient-strong {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.75) 50%,
    rgba(10, 10, 10, 0.97) 100%
  );
}

/* Navigation */
.nav-blur {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-scrolled {
  background-color: rgba(10, 10, 10, 0.9) !important;
  border-bottom: 1px solid #222222;
}

/* Dropdown */
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Service Cards */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(143, 96, 252, 0.15);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
  z-index: 1;
}

.service-card img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card-content {
  position: relative;
  z-index: 2;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #8F60FC 0%, #6B3FD4 100%);
  padding: 14px 36px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(143, 96, 252, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(143, 96, 252, 0.5);
  padding: 14px 36px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #A87FFF;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(143, 96, 252, 0.1);
  border-color: #8F60FC;
  box-shadow: 0 8px 30px rgba(143, 96, 252, 0.15);
  transform: translateY(-2px);
}

/* Section Divider */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #8F60FC, transparent);
}

/* Glow Effects */
.glow-purple {
  box-shadow: 0 0 80px rgba(143, 96, 252, 0.08);
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, #A87FFF, #8F60FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Form Styles */
.form-input {
  background: #141414;
  border: 1px solid #222222;
  border-radius: 8px;
  padding: 14px 18px;
  color: #f5f5f5;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: #8F60FC;
  box-shadow: 0 0 0 3px rgba(143, 96, 252, 0.15);
}

.form-input::placeholder {
  color: #888888;
}

/* Horizontal Rule */
.hr-gradient {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #222222, transparent);
}

/* Image placeholder backgrounds */
.img-placeholder {
  background: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
}

.img-placeholder-purple {
  background: linear-gradient(135deg, rgba(143, 96, 252, 0.1) 0%, rgba(143, 96, 252, 0.03) 100%);
}

/* Mobile menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Stat counter */
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  background: linear-gradient(135deg, #fff, #A87FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Page transition */
.page-transition {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #222222;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6B3FD4;
}

/* Font heading utility */
.font-heading {
  font-family: 'Montserrat', sans-serif;
}
