/* =====================================================
   Angels Beauty Box - Global Styles
   Replica of Purple Consulting Theme
   ===================================================== */

/* -----------------------------------------------------
   Scrollbar - Soft Rose & Neutral
   ----------------------------------------------------- */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #a88a87 #fcfcfc;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #fcfcfc;
}

::-webkit-scrollbar-thumb {
  background: #a88a87;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8a6b68;
}

/* -----------------------------------------------------
   Typography
   ----------------------------------------------------- */
body { 
  font-family: 'Inter', system-ui, sans-serif; 
}

h1, h2, h3, h4, h5, h6 { 
  font-family: 'Cormorant Garamond', serif; 
}

.font-accent {
  font-family: 'Bebas Neue', sans-serif;
}

/* -----------------------------------------------------
   UI Components
   ----------------------------------------------------- */

/* Line Accent - decorative element */
.line-accent {
  width: 48px;
  height: 2px;
  background: #a88a87;
}

/* -----------------------------------------------------
   Hero Section
   ----------------------------------------------------- */
.hero-gradient {
  background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
}

/* Hero Geometric Background Elements */
.hero-geo {
  position: absolute;
  pointer-events: none;
  opacity: 0.05;
}

.hero-geo-circle {
  border: 1px solid white;
  border-radius: 50%;
}

.hero-geo-square {
  border: 1px solid white;
}

.hero-geo-diamond {
  border: 1px solid white;
  transform: rotate(45deg);
}

.hero-geo-line {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  height: 1px;
}

.hero-geo-dots {
  background-image: radial-gradient(circle, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-geo-ring {
  border: 1px solid rgba(168, 138, 135, 0.3);
  border-radius: 50%;
}

/* Hero Animations */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes float-slower {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(-15px) rotate(48deg); }
}

@keyframes pulse-subtle {
  0%, 100% { opacity: 0.05; transform: scale(1); }
  50% { opacity: 0.08; transform: scale(1.02); }
}

.geo-float { animation: float-slow 12s ease-in-out infinite; }
.geo-float-alt { animation: float-slower 15s ease-in-out infinite; }
.geo-pulse { animation: pulse-subtle 8s ease-in-out infinite; }

/* -----------------------------------------------------
   Card Effects
   ----------------------------------------------------- */
.card-shine {
  position: relative;
  overflow: hidden;
}

.card-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transition: left 0.5s ease;
}

.card-shine:hover::before {
  left: 100%;
}

/* Image Overlay - gradient fade */
.img-overlay {
  position: relative;
}

.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,26,26,0.8) 100%);
}

/* -----------------------------------------------------
   Navigation
   ----------------------------------------------------- */
#navbar {
  transition: all 0.3s ease;
}

#navbar.scrolled {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* -----------------------------------------------------
   Utility Classes
   ----------------------------------------------------- */
.overflow-x-hidden {
  overflow-x: hidden;
}

.text-stroke-white {
  -webkit-text-stroke: 1px white;
  color: transparent;
}

.text-stroke-dark {
  -webkit-text-stroke: 1px #1a1a1a;
  color: transparent;
}

/* -----------------------------------------------------
   Swiper Customization
   ----------------------------------------------------- */
.studio-swiper {
  overflow: visible !important;
}

.studio-swiper-pagination.swiper-pagination-fraction {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.1em;
}

.studio-swiper-pagination .swiper-pagination-current {
  color: #a88a87;
}

.studio-swiper .swiper-slide {
  transition: opacity 0.5s ease;
}

.studio-swiper .swiper-slide-next {
  opacity: 0.4;
}

.studio-swiper .swiper-slide-active {
  opacity: 1;
}

@media (max-width: 1024px) {
  .studio-swiper .swiper-slide-next {
    opacity: 1;
  }
}

/* -----------------------------------------------------
   Hero Swiper
   ----------------------------------------------------- */
.hero-swiper {
  width: 100%;
  height: 650px;
}

.hero-swiper .swiper-slide {
  position: relative;
}
