body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f6f2;
  color: #2e2e2e;
}

.hero,
.filters,
.cards {
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero {
  text-align: center;
  padding: 50px 20px;
  background: white;
}

.hero img {
  max-width: 100%;
  height: auto;
}

.filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 20px;
}

.filter-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.filters button {
  border: none;
  background: white;
  padding: 6px 10px;
  border-radius: 14px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 11px;
}

.admin-btn {
  background: black !important;
  color: white;
}

.cards {
  padding: 20px;
}

.card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.carousel {
  position: relative;
}

.carousel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: none;
}

.carousel img.active {
  display: block;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255,255,255,0.85);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

.left {
  left: 10px;
}

.right {
  right: 10px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 12px;
  width: 100%;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

.dot.active {
  background: white;
}

.content {
  padding: 5px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.tags span {
  background: #f2efe8;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
}

.tag-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
}

footer {
  text-align: center;
  font-size: 14px;
  color: #666;
  padding: 20px;
  margin-top: 20px;
}

.title-row {
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
}

.title-row h2 {
margin: 0;
}


.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 95%;
  max-height: 90%;
  object-fit: contain;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 25px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255,255,255,0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}

.left-lightbox {
  left: 20px;
}

.right-lightbox {
  right: 20px;
}

.route-link {
  display: block;
  text-align: center;
  margin: 0px 0 15px;
}

.route-icon {
  height: 30px;
  width: auto;
  max-width: 90%;
}