/* Custom overrides for the Japan travel site */
:root {
  --brand-red: #e6002d;
  --bs-list-group-active-bg: var(--brand-red);
  --bs-list-group-active-border-color: var(--brand-red);
  --bs-list-group-active-color: #fff;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
  width: 100%;
  padding-bottom: 1rem;
}

footer {
  flex-shrink: 0;
  width: 100%;
}

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

.hero {
  background: linear-gradient(135deg, rgba(230, 0, 45, 0.08), rgba(255, 255, 255, 0.4));
  border-radius: 1rem;
}

.section-title {
  border-left: 4px solid var(--brand-red);
  padding-left: 0.75rem;
}

.card img {
  object-fit: cover;
  height: 180px;
}

footer a {
  color: inherit;
}

.list-group {
  --bs-list-group-active-bg: var(--brand-red);
  --bs-list-group-active-border-color: var(--brand-red);
  --bs-list-group-active-color: #fff;
}

.list-group .list-group-item.active {
  background-color: var(--brand-red) !important;
  border-color: var(--brand-red) !important;
  color: #fff;
}
