.filled-center {
  /* Set background image */
  background-image: url("../images/cover.png");

  /* Make background cover entire div */
  background-size: cover;

  /* Center the background image */
  background-position: top;

  /* Prevent background from repeating */
  background-repeat: no-repeat;

  /* Make div fill available space */
  width: 100%;

  /* Center content inside the div */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Alternative: If you want the image to fill exactly without cropping */
.filled-center-contain {
  background-image: url("../images/cover.png");
  background-size: contain; /* Shows full image, may have empty space */
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Alternative: Fixed aspect ratio container */
.filled-center-fixed {
  background-image: url("../images/cover.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.py-14rem {
  padding-top: 14rem !important;
  padding-bottom: 14rem !important;
}

/* Search container */
.search-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 600px;
}

/* Search input styling */
.search-input {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.search-input:focus {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Search options container */
.search-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Search option buttons */
.search-option {
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-option:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
}

.search-option:active {
  transform: translateY(0);
}

/* Active state for search options */
.search-option.active {
  background: rgba(59, 130, 246, 0.9);
  color: white;
}

.search-option.active:hover {
  background: rgba(59, 130, 246, 1);
}

/* Responsive design */
@media (max-width: 768px) {
  .search-container {
    max-width: 90%;
    gap: 1rem;
  }

  .search-input {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
  }

  .search-options {
    gap: 0.5rem;
  }

  .search-option {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

.bg-dark {
  background-color: #000 !important;
}
