body {
  font-family: 'Segoe UI', sans-serif;
  background: #f7f7f7;
  padding: 40px;
}

h2 {
  margin-bottom: 20px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.slider-wrapper {
  display: flex;
  overflow-x: scroll;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px;
  scrollbar-width: none; /* Firefox */
}

.slider-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.card-normal {
  min-width: 260px!important;
  max-width: 260px!important;
  border-radius: 10px;
  min-height:357px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.card-small{
  min-width: 194px!important;
  max-width: 194px!important;
  border-radius: 10px;
  min-height:180px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
}

.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.favorite-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border: none;
  border-radius: 50%;
  padding: 6px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.favorite-btn i {
  color: #bbb;
  font-size: 16px;
}

.favorite-btn.active i {
  color: #e74c3c;
}

.card-body {
  padding: 15px;
}

.card-body h4 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: bold;
}

.card-body p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.rating {
  margin-top: 5px;
  font-size: 13px;
}

.badge {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 13px;
  margin-right: 5px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.slider-btn.prev { left: -15px; }
.slider-btn.next { right: -15px; }

.slider-btn.hidden {
  display: none;
}

.card-img-top {
  height: 350px!important; /* Maintain aspect ratio */
}

.card-img-wrapper {
  position: relative; /* This is required to position the overlay elements inside it */
}

.card-img-wrapper {
  position: relative;
}

.overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  z-index: 10;
}

.destination-info {
  display: flex;
  align-items: center;
}

.destination-name {
  font-size: 24px;
  font-weight: bold;
  margin-right: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.flag-container {
  width: 30px;
  height: 20px;
}

