/* ================= HOME HEADER ================= */
.home-header {
  margin: 40px 0 24px;
}

.location-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
}

.location-icon {
  color: var(--primary);
  width: 20px;
  height: 20px;
}

/* ================= HIGHLIGHTED EVENTS ================= */
.highlighted-events {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 32px;
  scrollbar-width: none; /* Firefox */
}
.highlighted-events::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.highlighted-card {
  position: relative;
  min-width: 280px;
  max-width: 280px;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background-color: #000;
}

.highlighted-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.3s;
}

.highlighted-card:hover img {
  transform: scale(1.05);
}

.highlighted-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
  text-align: center;
}

.highlighted-badge {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
  opacity: 0.9;
}

.highlighted-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.highlighted-date {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ================= FILTERS ================= */
.filters-row {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid var(--border);
  background-color: var(--bg-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.filter-btn:hover {
  background-color: var(--bg-pink);
  border-color: var(--primary);
}

.filter-btn.active {
  background-color: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

/* ================= POPULAR EVENTS ================= */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.section-header .see-all {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.popular-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media(min-width: 768px) {
  .popular-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.popular-card {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--bg-white);
  transition: box-shadow 0.2s;
  height: 140px;
}

.popular-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.popular-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 16px;
  flex: 1;
}

.popular-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.popular-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.popular-meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.popular-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}

.popular-image {
  width: 100px;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.popular-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= VIEW ALL BOTTON ================= */
.view-all-container {
  display: flex;
  justify-content: center;
  margin: 48px 0 64px;
}

.btn-large {
  background-color: var(--primary);
  color: white;
  padding: 14px 48px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s;
  display: inline-block;
}

.btn-large:hover {
  background-color: var(--primary-hover);
}

/* ================= DATE MODAL ================= */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  width: 90%;
  max-width: 400px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.2rem;
  color: var(--text-light);
}

.modal-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 24px;
}

.modal-pills {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.modal-pill {
  border: 1px solid var(--border);
  padding: 8px;
  text-align: center;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.modal-pill.active {
  background: var(--bg-pink);
  border-color: var(--primary);
  color: var(--primary);
}

.modal-dates {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-dates input {
  border: 1px solid var(--border);
  padding: 8px;
  border-radius: var(--radius);
  width: 100%;
  font-size: 0.85rem;
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.modal-clear {
  color: var(--text-light);
  font-size: 0.9rem;
}

.modal-apply {
  background-color: var(--primary);
  color: white;
  padding: 8px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
}
