.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3a5a44 url() center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.56) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 780px;
  padding: 40px 20px;
}

.hero-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8d8b8;
  font-weight: 700;
}

.hero-heading {
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 680px;
  font-size: 17px;
}

.hero-search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 6px 20px;
  gap: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.hero-book-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 22px;
  text-decoration: none;
}

.hero-book-btn:hover {
  text-decoration: none;
  background: var(--accent-dark);
}

.search-icon {
  font-size: 18px;
  color: #888;
  flex-shrink: 0;
}

.hero-search input[type="search"] {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
  padding: 12px 0;
  background: transparent;
  color: #222;
}

.hero-explore-link {
  display: inline-block;
  margin-top: 0;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-explore-link:hover {
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}

/* ── Search Suggestions Dropdown ── */

.search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  z-index: 100;
}

.suggest-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: #173024;
  transition: background 0.15s;
}

.suggest-item:hover,
.suggest-item.active {
  background: #f0f7f3;
  text-decoration: none;
}

.suggest-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.suggest-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: #ecf5f0;
  border-radius: 8px;
  flex-shrink: 0;
}

.suggest-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.suggest-title {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggest-meta {
  font-size: 12px;
  color: #5b6f66;
}
