body {
  font-family: system-ui, sans-serif;
  margin: 0;
  color: #1f2937;
  background: #f9fafb;
  overflow-x: hidden;
}

/* Background slideshow */
.bg-slideshow {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
}
.bg-slideshow img {
  position: absolute;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.7);
  opacity: 0;
  transition: opacity 3s ease-in-out;
}
.bg-slideshow img.active { opacity: 1; }

.bg-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: -1;
}

/* Header */
header {
  background: rgba(25,118,210,0.9);
  color: #fff;
  text-align: center;
  padding: 1.2rem;
}

/* Highlights box */
.highlights {
  background: rgba(255,255,255,0.9);
  margin: 1rem;
  padding: 1rem;
  border-radius: 10px;
}

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background: #bbdefb;
  position: sticky;
  top: 0;
  z-index: 10;
}
.tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  background: #e3f2fd;
  transition: .3s;
}
.tab.active {
  background: #1976d2;
  color: white;
}

/* Grid cards */
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}
.card {
  width: 45%;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: 0.3s;
}
.card:hover { transform: translateY(-5px); }
.card img { width: 100%; height: auto; }
.card-content { padding: 1rem; }
.hotel-recommendations {
  margin-top: .8rem;
  background: #e3f2fd;
  padding: .5rem;
  border-radius: 6px;
}

/* Print button */
.print-btn {
  display: block;
  margin: 20px auto;
  padding: 12px 20px;
  background: #1976d2;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* ðŸ“± Responsive for mobile */
@media (max-width: 768px) {
  .card { width: 95%; }
  header h1 { font-size: 1.2rem; }
  .tab { font-size: 0.9rem; padding: 8px; }
  .highlights ul { padding-left: 1.2rem; }
}

/* 🖼️ Same height images on all screens */
.day .card img {
  width: 100%;
  height: 240px;        /* same height for all */
  object-fit: cover;    /* fill container neatly */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: block;
  transition: transform 0.3s ease;
}

/* Hover effect (optional) */
.day .card img:hover {
  transform: scale(1.03);
}

/* 📱 Responsive for smaller screens */
@media (max-width: 768px) {
  .day .card img {
    height: 200px;      /* reduce height on mobile */
  }
}

/* 🧱 Ensure grid adjusts correctly */
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.card {
  flex: 1 1 300px;     /* each card responsive */
  max-width: 400px;
}

