/**
 * Heartland Japan — custom.css
 * Extracted from head.php <style> block + utility classes for inline style replacement.
 */

/* ===========================
   Base
   =========================== */
body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

/* ===========================
   Footer responsive
   =========================== */
@media (max-width: 767px) {
  #footer-brand {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

/* ===========================
   Micro-interactions
   =========================== */
.card-hover {
  transition: box-shadow 0.3s ease;
}
.card-hover:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.btn-hover {
  transition: box-shadow 0.2s ease;
}
.btn-hover:hover {
  box-shadow: 0 2px 8px rgba(42,122,184,0.2);
}

/* ===========================
   Footer text/border colors
   =========================== */
.text-white-60 {
  color: rgba(255,255,255,0.6);
}
.text-white-35 {
  color: rgba(255,255,255,0.35);
}
.text-white-30 {
  color: rgba(255,255,255,0.3);
}
.border-white-20 {
  border: 1px solid rgba(255,255,255,0.2);
}
.border-white-10 {
  border-color: rgba(255,255,255,0.1);
}
.border-top-white-10 {
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===========================
   Shadow
   =========================== */
.shadow-mega {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* ===========================
   Number decoration (Booking Process)
   =========================== */
.num-decoration {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 2.75rem;
  color: #e8e0d8;
}

/* ===========================
   About page number decoration
   =========================== */
.num-decoration-sm {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #e8e0d8;
}

/* ===========================
   Icon box (Booking Process)
   =========================== */
.icon-box {
  width: 28px;
  height: 28px;
  background: #f5f0ea;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   Tour detail: meta label & value
   =========================== */
.meta-label {
  font-size: 10px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.meta-value {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
}

/* ===========================
   Tour detail: tab underline
   =========================== */
.tab-underline {
  height: 2px;
  background: #1a1a1a;
  margin-bottom: -1px;
}

/* ===========================
   Carousel nav buttons
   =========================== */
.carousel-nav-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  box-sizing: border-box;
  flex-shrink: 0;
  background: #1a1a1a;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* ===========================
   Text shadow (CTA section)
   =========================== */
.text-shadow-hero {
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.text-shadow-sub {
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* ===========================
   No scrollbar
   =========================== */
.no-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* ===========================
   Tour meta grid gap
   =========================== */
.gap-meta {
  gap: 10px 16px;
}
