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

body {
  padding-top: 72px;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
}

main {
  width: 100%;
  max-width: 100%;
  position: relative;
}

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

.hero-swiper .swiper-pagination {
  bottom: 2rem !important;
  position: absolute !important;
  z-index: 10 !important;
}

@media (min-width: 640px) {
  .hero-swiper .swiper-pagination {
    bottom: 3rem !important;
  }
}

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(4px) !important;
}

.hero-swiper .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.7) !important;
  transform: scale(1.2) !important;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: white !important;
  width: 32px !important;
  height: 10px !important;
  border-radius: 5px !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

.swiper-pagination {
  bottom: 2rem !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 6px !important;
  transition: var(--transition) !important;
}

.swiper-pagination-bullet-active {
  background: white !important;
  width: 30px !important;
  border-radius: 6px !important;
}

#lightbox.active {
  display: flex !important;
}

a.nav-link:not(.active) {
  color: #111827 !important;
}

a.nav-link:not(.active) * {
  color: #111827 !important;
}

a.nav-link.active,
a.nav-link.active * {
  color: var(--primary) !important;
}

a.nav-link.active {
  font-weight: 600 !important;
}

[data-theme="dark"] header a.nav-link:not(.active),
[data-theme="dark"] header a.nav-link:not(.active) span,
[data-theme="dark"] header a.nav-link:not(.active) svg {
  color: var(--text-primary) !important;
}

[data-theme="dark"] header a.nav-link.active,
[data-theme="dark"] header a.nav-link.active span,
[data-theme="dark"] header a.nav-link.active svg {
  color: var(--primary) !important;
}


#mobileNavMenu.active {
  max-height: 500px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#mobileMenuBtn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(0.5rem);
}

#mobileMenuBtn.active span:nth-child(2) {
  opacity: 0;
}

#mobileMenuBtn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-0.5rem);
}

[data-theme="dark"] a:not(.nav-link):not(button):not(.btn) {
  color: var(--text-primary) !important;
}

[data-theme="dark"] a:not(.nav-link):not(button):not(.btn):hover {
  color: var(--primary) !important;
}

[data-theme="dark"] footer a[class*="group"] svg[style*="color: #111827"] {
  color: white !important;
}

[data-theme="dark"] footer a[aria-label]:hover svg {
  color: white !important;
  fill: white !important;
}

