/* 
  60 Degree East Entertainment - Luxury Custom Styling
  Design Inspiration: madify.in aesthetic
*/

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

:root {
  --color-bg-dark: #070B14;
  --color-bg-surface: #0F172A;
  --color-bg-card: #141E33;
  --color-gold: #2FAE8B;
  --color-gold-light: #8FE3C4;
  --color-gold-dark: #0E6B57;
  --color-purple: #FF6B5B;
  --color-teal: #12A889;
  --color-slate-text: #94A3B8;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: #F8FAFC;
  overflow-x: hidden;
}

body {
  background-color: var(--color-bg-dark);
  color: #F8FAFC;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #070B14;
}
::-webkit-scrollbar-thumb {
  background: #1E293B;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

/* Text Gradients */
.text-gradient-gold {
  background: linear-gradient(135deg, #D3F5E8 0%, #2FAE8B 50%, #0A5C4A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #FFD9D3 0%, #FF6B5B 50%, #C4291A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
  background: linear-gradient(135deg, #CCFBF1 0%, #12A889 50%, #0C7A63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-silver {
  background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 50%, #64748B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Luxury Glassmorphism */
.glass-nav {
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(47, 174, 139, 0.2);
}

.glass-card {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  background: rgba(20, 30, 51, 0.9);
  border-color: rgba(47, 174, 139, 0.4);
  box-shadow: 0 12px 35px -10px rgba(47, 174, 139, 0.2);
  transform: translateY(-4px);
}

.glass-card-gold {
  background: linear-gradient(145deg, rgba(47, 174, 139, 0.1) 0%, rgba(15, 23, 42, 0.75) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(47, 174, 139, 0.3);
  border-radius: 16px;
}

.glass-card-gold:hover {
  border-color: rgba(47, 174, 139, 0.7);
  box-shadow: 0 14px 45px -10px rgba(47, 174, 139, 0.3);
}

/* Glowing Elements */
.glow-gold-sm {
  box-shadow: 0 0 15px rgba(47, 174, 139, 0.25);
}

.glow-gold-lg {
  box-shadow: 0 0 40px rgba(47, 174, 139, 0.35);
}

/* Background Grids & Orbs */
.bg-grid-pattern {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.bg-orb-gold {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(47, 174, 139, 0.15) 0%, rgba(7, 11, 20, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
}

.bg-orb-purple {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 91, 0.12) 0%, rgba(7, 11, 20, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(50px);
}

.bg-orb-teal {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(18, 168, 137, 0.16) 0%, rgba(7, 11, 20, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(45px);
}

/* Custom Buttons */
.btn-gold {
  background: linear-gradient(135deg, #8FE3C4 0%, #2FAE8B 50%, #0E6B57 100%);
  color: #070B14;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(47, 174, 139, 0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(47, 174, 139, 0.6);
  color: #000;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-outline-gold {
  background: transparent;
  color: #8FE3C4;
  border: 1px solid rgba(47, 174, 139, 0.5);
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-gold:hover {
  background: rgba(47, 174, 139, 0.15);
  border-color: #2FAE8B;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(47, 174, 139, 0.25);
  transform: translateY(-2px);
}

/* Category Filter Badges */
.filter-btn {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(47, 174, 139, 0.2);
  border-color: #2FAE8B;
  color: #D3F5E8;
  box-shadow: 0 0 15px rgba(47, 174, 139, 0.3);
}

/* --- NON-STOP INFINITE MARQUEE --- */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track-continuous {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee-infinite 28s linear infinite;
}

@keyframes marquee-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Brand Logo Pill Card for High Color Visibility */
.brand-logo-card {
  background: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 150px;
  height: 68px;
  flex-shrink: 0;
}

.brand-logo-card:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 25px rgba(47, 174, 139, 0.5);
}

.brand-logo-card img {
  max-height: 44px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Photo Marquee Stream Card */
.event-photo-stream-card {
  width: 280px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.event-photo-stream-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(47, 174, 139, 0.5);
}

.event-photo-stream-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Swiper Styling Overrides */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3) !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-gold) !important;
  width: 28px !important;
  border-radius: 5px !important;
  box-shadow: 0 0 10px rgba(47, 174, 139, 0.5) !important;
}

/* Card Hover Media Zoom */
.card-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Modal Overlay */
.modal-overlay {
  background: rgba(7, 11, 20, 0.88);
  backdrop-filter: blur(12px);
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #2FAE8B, #FF6B5B, #12A889);
  z-index: 1000;
  width: 0%;
  transition: width 0.1s ease-out;
}
