/**
 * Hero Section - Final Design
 * Based on Base44 screenshot
 */

.hero-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 280px;
  margin: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Fallback gradient if no image */
  background-image: linear-gradient(135deg, #1A2332 0%, #2D1F3D 50%, #8B1538 100%);
}

@media (min-width: 768px) {
  .hero-wrapper {
    margin: 32px;
  }
}

@media (min-width: 1024px) {
  .hero-wrapper {
    margin: 40px;
  }
}

@media (min-width: 1536px) {
  .hero-wrapper {
    min-height: 360px;
  }
}

/* Glowing Corner Lines */
.hero-corner-tl {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 80px;
  height: 80px;
  border-left: 4px solid #fffdf0;
  border-top: 4px solid #fffdf0;
  border-radius: 8px 0 0 0;
  z-index: 10;
  filter: drop-shadow(0 0 20px rgba(255, 253, 240, 1))
          drop-shadow(0 0 35px rgba(255, 250, 200, 0.8));
}

.hero-corner-br {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 80px;
  height: 80px;
  border-right: 4px solid #fffdf0;
  border-bottom: 4px solid #fffdf0;
  border-radius: 0 0 8px 0;
  z-index: 10;
  filter: drop-shadow(0 0 20px rgba(255, 253, 240, 1))
          drop-shadow(0 0 35px rgba(255, 250, 200, 0.8));
}

/* Content Container */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  text-align: center;
}

@media (min-width: 1536px) {
  .hero-content {
    padding: 80px 32px;
  }
}

/* Title */
.hero-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
}

@media (min-width: 1536px) {
  .hero-title {
    font-size: 48px;
  }
}

.hero-title-red {
  color: #E31E24;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.hero-title-white {
  color: white;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

/* Subtitle */
.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0 0 32px 0;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.12);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 20px;
  }
}

@media (min-width: 1536px) {
  .hero-subtitle {
    font-size: 24px;
  }
}

/* Search Bar */
.hero-search {
  position: relative;
  width: 100%;
  max-width: 512px;
  margin: 0 0 24px 0;
}

.hero-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  z-index: 1;
}

.hero-search-input {
  width: 100%;
  height: 48px;
  padding: 12px 16px 12px 48px;
  border-radius: 9999px; /* rounded-full */
  border: 0;
  background: white;
  font-size: 16px;
  color: #111827;
  transition: all 0.2s;
}

.hero-search-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #E31E24;
}

.hero-search-input::placeholder {
  color: #9ca3af;
}

/* Filter Badges */
.hero-filters {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .hero-filters {
    display: flex;
  }
}

.hero-filter-badge {
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.hero-filter-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-filter-badge.active {
  background: #E31E24;
  border-color: #E31E24;
}
