/* Travel Page Styles — OliBene warm light theme */

/* Hero Section */
.travel-hero {
  background: linear-gradient(135deg, #f0ebe4 0%, #e8ddd4 50%, #f5f0eb 100%);
  padding: 60px 30px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.travel-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" x="10" font-size="60" opacity="0.06">✈️</text><text y="90" x="60" font-size="40" opacity="0.05">🏨</text><text y="30" x="70" font-size="35" opacity="0.05">🗺️</text></svg>') repeat;
  pointer-events: none;
}

.travel-hero__content {
  position: relative;
  z-index: 1;
}

.travel-hero__title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #2a2a2a;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.travel-hero__subtitle {
  font-family: 'Mulish', sans-serif;
  font-size: 1.1rem;
  color: #888;
  margin: 0;
  font-weight: 400;
}

/* Quick Links */
.travel-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 24px;
  justify-content: center;
  background: #fff;
  border-bottom: 1px solid #e0dbd4;
}

.travel-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #faf8f5;
  color: #333;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Mulish', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #e0dbd4;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.travel-quick-link:hover {
  background: #b5704d;
  color: #fff;
  border-color: #b5704d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(181, 112, 77, 0.25);
}

.travel-quick-link i {
  font-size: 0.9rem;
}

/* Travel Cards with thumbnails */
.travel-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-thumb {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin: -20px -20px 12px -20px;
  width: calc(100% + 40px);
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body .card-desc {
  flex: 1;
}

.card-source-label {
  font-family: 'Mulish', sans-serif;
  font-size: 0.75rem;
  color: #999;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .travel-hero {
    padding: 40px 20px 35px;
  }

  .travel-hero__title {
    font-size: 1.8rem;
  }

  .travel-hero__subtitle {
    font-size: 0.95rem;
  }

  .travel-quick-links {
    gap: 8px;
    padding: 15px 16px;
  }

  .travel-quick-link {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .card-thumb {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .travel-hero__title {
    font-size: 1.5rem;
  }

  .travel-quick-links {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .travel-quick-links::-webkit-scrollbar {
    display: none;
  }
}
