.hero-section {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/assets/images/pattern.png");
  opacity: 0.1;
}

.hero-section h1 {
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.search-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.hero-images {
  position: relative;
  height: 400px;
}

.hero-image-1,
.hero-image-2,
.hero-image-3 {
  position: absolute;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.hero-image-1 {
  width: 60%;
  top: 0;
  right: 0;
  z-index: 3;
}

.hero-image-2 {
  width: 50%;
  top: 20%;
  left: 0;
  z-index: 2;
}

.hero-image-3 {
  width: 40%;
  bottom: 0;
  right: 20%;
  z-index: 1;
}

.hero-images:hover .hero-image-1 {
  transform: translateY(-10px);
}

.hero-images:hover .hero-image-2 {
  transform: translateX(10px);
}

.hero-images:hover .hero-image-3 {
  transform: translateY(10px);
}

.card {
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-dark.bg-primary {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) !important;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.3rem;
}

.nav-link {
  padding: 0.8rem 1rem !important;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.dropdown-item {
  padding: 0.7rem 1.2rem;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.list-group-item-action:hover {
  transform: translateX(5px);
  transition: transform 0.2s;
}

.card-header.bg-warning {
  background: linear-gradient(45deg, #ffc107, #ffdb4d) !important;
}

.pro-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.pro-badge .badge {
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
