/* =========================================================
   Travel / Oklahoma City — page-specific overrides
   Loaded after ../style.css
   ========================================================= */

.heroOC {
  max-width: var(--content-max);
  margin: 0 auto;
  background-image: linear-gradient(rgba(6, 8, 14, 0.55), rgba(6, 8, 14, 0.92)),
    url("media/okcity.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 140px 20px 120px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.heroOC p {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text-muted);
}

.heroOC h1 {
  font-family: var(--font-display);
  color: var(--text);
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.heroOC h2 {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* "Food and Drink" card grid */

section.secondary h2 {
  margin-bottom: 6px;
}

section.secondary h3 {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

section.secondary .card {
  overflow: hidden;
}

section.secondary .card-header.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
  align-items: stretch;
}

section.secondary .card-header img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

section.secondary .card-header iframe.embed {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  display: block;
}

section.secondary .card-body h4 {
  margin-bottom: 8px;
}

section.secondary .card-body h5 {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 12px 0 4px;
}

section.secondary .card-body p {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

section.secondary .card-footer {
  padding: 0 20px 20px;
  background: transparent;
  border: none;
}

/* Instagram embed card background (Instagram forces white internally) */

.instagram-embeds blockquote.instagram-media {
  background: #fff;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5), 0 1px 10px 0 rgba(0, 0, 0, 0.15);
  margin: 1px;
  max-width: 540px;
  min-width: 326px;
  padding: 0;
  width: calc(100% - 2px);
}

@media (max-width: 992px) {
  section.secondary .card-header.grid {
    grid-template-columns: 1fr;
  }

  section.secondary .card-header img,
  section.secondary .card-header iframe.embed {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .heroOC {
    padding: 90px 18px;
  }
}

/* ---------- Travel hub (destination grid) ---------- */

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.destination-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 150ms ease, border-color 150ms ease;
}

.destination-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-border);
}

.destination-card img {
  border-radius: 0;
  margin-bottom: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.destination-card .destination-body {
  padding: 18px 20px;
}

.destination-card .destination-body h4 {
  margin-bottom: 4px;
}

.destination-card .destination-body p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.destination-card.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-faint);
  border-style: dashed;
  min-height: 220px;
  padding: 24px;
}

