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

body {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dark {
  background-color: #1a1a1a;
  color: #e5e5e5;
}
.dark .bg-white {
  background-color: #2d2d2d !important;
}
.dark .text-gray-700 {
  color: #e5e5e5 !important;
}
.dark .text-gray-300 {
  color: #b0b0b0 !important;
}
.dark .border-gray-300 {
  border-color: #4a4a4a !important;
}

#navbar {
  background: linear-gradient(135deg, #F1E3F3, #8FB8ED);
  backdrop-filter: blur(10px);
}
#navbar.scrolled {
  background: rgba(241, 227, 243, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.dark #navbar {
  background: linear-gradient(135deg, #2d2d2d, #404040);
}
.dark #navbar.scrolled {
  background: rgba(45, 45, 45, 0.95);
}

.hero-section .carousel-container {
  position: relative;
}
.hero-section .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-section .carousel-slide.active {
  opacity: 1;
}
.hero-section .carousel-dot {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.hero-section .carousel-dot.active {
  opacity: 1 !important;
}

.parallax-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.parallax-section .parallax-bg {
  will-change: transform;
}
.parallax-section .parallax-overlay {
  z-index: 1;
}
.parallax-section .relative.z-10 {
  z-index: 2;
}

button {
  transition: all 0.3s ease;
}
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#mobile-menu {
  transition: all 0.3s ease;
  transform: translateY(-100%);
}
#mobile-menu.show {
  transform: translateY(0);
}

footer {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}
footer a {
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .parallax-section h2 {
    font-size: 2rem;
  }
  .parallax-section p {
    font-size: 1rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #8FB8ED, #3590F3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #62BFED, #3590F3);
}

.dark ::-webkit-scrollbar-track {
  background: #2d2d2d;
}

.dark ::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #4a4a4a, #6a6a6a);
}

/*# sourceMappingURL=styles.css.map */
