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

:root {
  --pastel-blue: #a3d2f2;
  --pastel-blue-light: #e3f2fd;
  --pastel-blue-dark: #72aee6;
  --white: #ffffff;
  --text-main: #334155;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--white);
  color: var(--text-main);
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--pastel-blue-dark) var(--white);
}

/* Custom Scrollbar for Chrome, Edge, and Safari */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: var(--white);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--pastel-blue);
  border-radius: 5px;
}

/* Hero Section Overlay */
.hero-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.8) 100%);
}

.section-dark-gradient {
  background: linear-gradient(135deg, var(--pastel-blue-light) 0%, var(--white) 100%);
}

.text-gradient {
  background: linear-gradient(90deg, var(--pastel-blue-dark), var(--text-main));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animations */
.reveal, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal.active, .reveal-up.active, .reveal-left.active, .reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* Hover Effects */
.btn-primary {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.2);
  transition: all 0.4s ease;
  transform: skewX(-15deg);
}

.btn-primary:hover::after {
  left: 100%;
}

.hover-lift {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.nav-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(163, 210, 242, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  color: var(--text-main) !important;
}

.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform 0.6s ease;
}

.img-zoom:hover img {
  transform: scale(1.05);
}

/* Responsive text size fix */
@media (min-width: 768px) {
  .text-xs, .text-sm {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}

/* Infinite Marquee */
.animate-marquee {
  animation: scroll-marquee 40s linear infinite;
  display: flex;
}
.hover\:pause:hover {
  animation-play-state: paused !important;
}
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.75rem)); }
}
