:root {
  --primary-color: #7c5cff;
  --secondary-color: #2d3748;
  --light-color: #f7fafc;
  --accent-color: #4fd1c5;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--secondary-color);
  background-color: var(--light-color);
}

.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 40px;
}

.nav-link {
  font-weight: 500;
  color: var(--secondary-color) !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #6a4ce6;
  border-color: #6a4ce6;
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.hero-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 2rem;
  max-width: 600px;
}

.search-box {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.form-control {
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.1);
}

.input-group-text {
  background: transparent;
  border: none;
  padding: 0 0.75rem;
}

.btn-search {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
}

.popular-searches {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.popular-searches strong {
  font-weight: 600;
}

.badge-primary {
  background-color: var(--accent-color);
  color: white;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .search-box {
    flex-direction: column;
  }
}

/* Add animation classes */
.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  50% {
    transform: translate(5px, 5px) rotate(2deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

.animate-float-slow {
  animation: float-slow 8s ease-in-out infinite;
}

@keyframes float-slow {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  50% {
    transform: translate(3px, 3px) rotate(1deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

.animate-float-fast {
  animation: float-fast 4s ease-in-out infinite;
}

@keyframes float-fast {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  50% {
    transform: translate(7px, 7px) rotate(3deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
