:root {
  --surface: #f7f8fa;
  --card: #ffffff;
  --border: #e1e5ed;
  --text-primary: #1b1f23;
  --text-secondary: #5c6370;
  --accent: #115ea3;
  --accent-strong: #0f4d8c;
  --warning: #c83b3b;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --gap: 16px;
  --gap-lg: 24px;
  font-family:
    'Segoe UI',
    'Inter',
    system-ui,
    -apple-system,
    sans-serif;
}
* {
  margin: 0px;
  padding: 0px;
}
html,
body {
  position: relative;
  background: var(--surface);
  color: var(--text-primary);
}

body {
  overflow-y: auto;
  min-height: 100vh;
  line-height: 1.5;
}
textarea:focus,
input:focus {
  outline: none;
}
a {
  color: inherit !important;
  text-decoration: none !important;
}

/* Enhanced Navbar */
.navbar {
  border-bottom: 1px solid var(--border);
  background: var(--card) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 12px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 20px;
  color: var(--accent) !important;
  gap: 10px;
  transition: opacity 0.2s;
}

.navbar-brand:hover {
  opacity: 0.8;
}

.brand-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-link {
  display: flex !important;
  align-items: center;
  gap: 6px;
  padding: 8px 16px !important;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-secondary) !important;
  transition: all 0.2s;
}

.nav-link:hover {
  background: var(--surface);
  color: var(--accent) !important;
}

.nav-link.active {
  background: #e8f2ff;
  color: var(--accent) !important;
}

.nav-link svg {
  stroke: currentColor;
}

/* Breadcrumb Navigation */
.breadcrumb-container {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: var(--accent) !important;
  text-decoration: none !important;
  transition: opacity 0.2s;
}

.breadcrumb-item a:hover {
  opacity: 0.7;
  text-decoration: underline !important;
}

.breadcrumb-item.active {
  color: var(--text-secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: var(--text-secondary);
  margin: 0 8px;
}

/* Modern Footer */
.modern-footer {
  background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
  color: #e2e8f0;
  padding: 60px 0 0;
  margin-top: 80px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
  margin: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .brand-icon {
  color: #60a5fa;
}

.footer-brand .brand-name {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.footer-description {
  color: #cbd5e0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s;
  color: white !important;
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e0 !important;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #60a5fa !important;
  padding-left: 4px;
}

.footer-newsletter-text {
  color: #cbd5e0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 14px;
  transition: all 0.2s;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-input::placeholder {
  color: #a0aec0;
}

.newsletter-button {
  padding: 10px 16px;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-button:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  color: #a0aec0;
  font-size: 14px;
  margin: 0;
}

.footer-badges {
  display: flex;
  gap: 12px;
}

.footer-badge {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 12px;
  color: #e2e8f0;
  font-weight: 500;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
  .modern-footer {
    padding: 40px 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-badges {
    justify-content: center;
  }
}

footer {
  background: #f1f1f1;
  width: 100%;
  padding: 16px 0px;
  color: #999;
  position: absolute;
  bottom: 0;
}

.banner {
  height: 500px;
  width: 100%;
  background: #999;
  margin: 20px 0px;
}

.content {
  padding: 64px 0px;
  /* display: flex;
  flex-wrap: wrap; */
}
.tile {
  position: relative;
  height: 260px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.2s all;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: 0.2s all;
}
.tile img:hover {
  filter: brightness(80%);
  transform: scale(1.04);
}

.tile-text {
  position: absolute;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
  bottom: 16px;
}

.tile-desc {
  position: absolute;
  z-index: 1;
  bottom: 48px;
  padding: 0 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.pexels.com/photos/2422461/pexels-photo-2422461.jpeg?cs=srgb&dl=pexels-josh-hild-2422461.jpg&fm=jpg');

  /* Set a specific height */
  height: 48vh;
  width: 100vw;
  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: #fff;
}

.hero-subheading {
  font-size: 24px;
  font-weight: 100;
}
.hero-input {
  width: 80%;
  height: 50px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.nav-link {
  margin-right: 36px;
}

/* activity page css */

.activity-card {
  color: #000;
  position: relative;
  height: 360px;
  /* width: calc(25% - 20px); */
  /* padding: 6px; */
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  -webkit-transition: 0.2s all;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.activity-card img {
  width: 100%;
  height: 230px;
  border-radius: var(--radius);
  -webkit-transition: 0.2s all;
  -webkit-filter: brightness(70%);
  overflow: hidden;
}
.activity-card img:hover {
  -webkit-filter: brightness(50%);
  transform: scale(1.1);
}

/* activity-detail page css */

.adventure-detail-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  /* margin: 8px; */
  background: var(--card);
  box-shadow: var(--shadow);
}

.activity-card-image {
  height: 500px;
  width: 100%;
  cursor: pointer;
  -webkit-transition: 0.2s all;
  border-radius: 2px;
}
.activity-card-image:hover {
  -webkit-filter: brightness(50%);
}
.experience-content ul li {
  margin-left: 16px;
  padding: 0;
}
/* Modern Filter Panel */
.filter-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.filter-header:hover {
  background: var(--surface);
}

.filter-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.filter-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.filter-count-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  animation: badgePop 0.3s ease;
}

@keyframes badgePop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.btn-clear-all {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-clear-all:hover {
  background: #fee;
  border-color: var(--warning);
  color: var(--warning);
}

.btn-clear-all svg {
  stroke: currentColor;
}

.filter-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  max-height: 500px;
  overflow: hidden;
}

.filter-content.collapsed {
  max-height: 0;
  padding: 0 20px;
  opacity: 0;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.filter-group-label svg {
  color: var(--accent);
  flex-shrink: 0;
}

.filter-control-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.filter-select {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1.5L6 6.5L11 1.5" stroke="%235c6370" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.filter-select:hover {
  border-color: var(--accent);
  background-color: var(--card);
}

.filter-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(17, 94, 163, 0.1);
}

.btn-clear-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.btn-clear-filter:hover {
  background: #fee;
  border-color: var(--warning);
  color: var(--warning);
}

.active-filters-section {
  padding-top: 12px;
  border-top: 1px solid var(--border);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.active-filters-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.active-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-filter {
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 5px 20px;
  margin: 10px 10px 10px 0px;
  color: var(--accent-strong);
  background: #e8f2ff;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .filter-header {
    padding: 14px 16px;
  }
  
  .filter-content {
    padding: 16px;
  }
  
  .filter-title {
    font-size: 14px;
  }
  
  .btn-clear-all {
    padding: 6px 12px;
    font-size: 13px;
  }
}
.category-banner {
  position: absolute;
  /* height: 50px; */
  padding: 5px 10px;
  box-shadow: 2px 1px 10px 1px rgba(0, 0, 0, 0.3);
  /*
  box-shadow: 0px 9.4px 20.4px rgba(0, 0, 0, 0.13),
    0px 9.2px 20.6px rgba(0, 0, 0, 0.1); */
  min-width: 50%;
  color: #fff;
  background: var(--accent);
  top: 0;
  right: 0;
  z-index: 1;
  margin-top: 16px;
  margin-right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 0px 0px 10px;
  font-weight: bolder;
}

.card-surface,
.tile,
.activity-card,
.adventure-detail-card,
#reservation-panel-sold-out,
#reservation-panel-available,
.card-skeleton {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-body {
  padding: var(--gap);
}

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

.card-title {
  font-size: 16px;
  font-weight: 600;
}

.card-meta {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.card-media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: 0.2s all;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}

.pill-accent {
  background: #e8f2ff;
  color: var(--accent-strong);
  border: 1px solid var(--accent);
}

.reserve-button {
  width: 100%;
  border: none;
  background-color: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 15px;
  margin: 20px 0px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.reserve-button:hover {
  background-color: var(--accent-strong);
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type='number'] {
  -moz-appearance: textfield;
}
#reserved-banner {
  display: none;
}
.reservation-visit-button {
  background-color: var(--accent);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  white-space: nowrap;
  border-radius: 20px;
  cursor: pointer;
}
.reservation-visit-button:hover {
  background-color: var(--accent-strong);
}

#carouselExampleIndicators {
  width: 100%;
}
#reservation-panel-sold-out {
  border: solid 1px var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 30px;
  background: var(--card);
  box-shadow: var(--shadow);
}
#reservation-panel-available {
  border: solid 1px var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 30px;
  background: var(--card);
  box-shadow: var(--shadow);
}

#reservation-panel-available label {
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

#reservation-panel-available .form-control {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  box-shadow: none;
}

#reservation-panel-available .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(17, 94, 163, 0.15);
}

.reserve-button {
  box-shadow: 0 8px 18px rgba(17, 94, 163, 0.18);
}

.info-banner {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin: 12px 0;
  font-weight: 500;
}
.info-banner.warning {
  background: #fff4e5;
  color: #8a4b00;
  border: 1px solid #f6c97b;
}
.info-banner.success {
  background: #e8f3ff;
  color: var(--accent-strong);
  border: 1px solid #b7d4f6;
}

.card-skeleton {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--gap);
  box-shadow: var(--shadow);
}
.shimmer {
  position: relative;
  overflow: hidden;
  background: #e9ecf3;
  border-radius: 6px;
}
.shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.65),
    transparent
  );
  transform: translateX(-100%);
  animation: shimmer 1.2s infinite;
}
.thumb {
  height: 160px;
}
.line {
  height: 12px;
  margin-top: 12px;
}
.short {
  width: 60%;
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.empty-card {
  border: 1px dashed var(--border);
  color: var(--text-secondary);
  padding: 24px;
  border-radius: var(--radius);
  background: #fdfefe;
  text-align: center;
}

input:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .hero-image {
    height: 40vh;
  }
  .filter-bar {
    flex-direction: column;
    gap: 12px;
  }
  .filter-bar-tile {
    border-right: none;
    width: 100%;
    padding: 0;
  }
}

/* === v2 rewrite overrides === */
.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.section {
  padding: 32px 0;
}

.section-tight {
  padding: 24px 0;
}

.hero {
  background:
    linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.6)),
    url('https://images.pexels.com/photos/2422461/pexels-photo-2422461.jpeg?cs=srgb&dl=pexels-josh-hild-2422461.jpg&fm=jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 56px 0;
}

.hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.85);
}

.hero-input {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  min-width: 280px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.card-surface {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card-body {
  padding: 16px;
}

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

.card-title {
  font-size: 16px;
  font-weight: 600;
}

.card-meta {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.card-media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  z-index: 1;
}

.card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
  position: relative;
  z-index: 1;
}

.card-surface:hover .card-media img,
.card-surface:focus-within .card-media img {
  transform: scale(1.03);
  filter: brightness(92%);
}

.card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.tile {
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tile .card-media img {
  height: 260px;
}

.tile-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.tile-desc {
  position: absolute;
  bottom: 46px;
  left: 16px;
  right: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.filter-tile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-label {
  color: var(--text-secondary);
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.pill-accent {
  background: #e8f2ff;
  color: var(--accent-strong);
  border: 1px solid var(--accent);
}

.reservation-panel {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.activity-card {
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.activity-card .card-media img {
  height: 220px;
}

.reservation-total {
  font-size: 18px;
  font-weight: 700;
}

.reservation-chip {
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }

  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Adventure card polish */
.activity-card {
  height: 360px;
  padding: 0;
  overflow: hidden;
}

.activity-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.activity-card .card-media img {
  height: 210px;
  border-radius: 0;
}

.activity-card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.activity-card .card-row {
  align-items: center;
}

.activity-card .card-title {
  line-height: 1.3;
}

.activity-card .card-meta {
  font-size: 12px;
}

.activity-card .pill {
  margin-top: auto;
}
