/* MAPIF Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #6D3DF5;
  --accent: #A58DFF;
  --light-lavender: #F7F2FF;
  --deep-purple: #2A1B47;
  --white: #FFFFFF;
  --gray: #F7F7F7;
  --text-dark: #1a1a1a;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

.text-primary-purple {
  color: var(--primary);
}

.bg-primary-purple {
  background-color: var(--primary);
}

.text-accent-purple {
  color: var(--accent);
}

.bg-accent-purple {
  background-color: var(--accent);
}

.bg-deep-purple {
  background-color: var(--deep-purple);
}

.bg-light-lavender {
  background-color: var(--light-lavender);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-dark {
  background: rgba(42, 27, 71, 0.95);
  /* Deep purple glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--deep-purple);
}

/* Animations */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(106, 13, 173, 0.2);
}

/* Floating Popup */
.floating-popup-btn {
  box-shadow: 0 4px 15px rgba(106, 13, 173, 0.4);
  transition: all 0.3s ease;
}

.floating-popup-btn:hover {
  transform: scale(1.1);
}

/* Swiper Pagination Custom */
.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}