:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #0f172a;
  --light-bg: #f8fafc;
  --dark-text: #1e293b;
  --light-text: #64748b;
  --accent: #f59e0b;
}

body {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: var(--dark-text);
  background-color: var(--light-bg);
}


.header-bg {
  /* background: linear-gradient(to top, #dc3545, #c89292); */
  background: linear-gradient(to top, #dc3545, #e2c7c7);
  color: white;
  position: relative;
  overflow: hidden;
}

.header-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.header-content {
  position: relative;
  z-index: 1;
}

.search-box {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.search-input {
  border: none;
  padding: 12px 16px;
  font-size: 16px;
}

.search-input:focus {
  box-shadow: none;
}

.search-divider {
  width: 1px;
  background-color: #e2e8f0;
  height: 32px;
}


@media (max-width: 768px) {
  .search-box {
    flex-direction: column;
  }

  .search-divider {
    width: 100%;
    height: 1px;
    margin: 8px 0;
  }
}