/* FaithPilgrimage.com — Stylesheet */
/* Version: 1.0 | 2026-05-11 */

:root {
  --bg: #faf8f5;
  --bg-light: #f0ebe3;
  --text: #2c2417;
  --text-muted: #6b5c4a;
  --accent: #8b5a2b;
  --accent-hover: #6d4620;
  --highlight: #c4a35a;
  --border: #e0d8cc;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(44, 36, 23, 0.08);
  --shadow-lg: 0 8px 24px rgba(44, 36, 23, 0.12);
  --radius: 8px;
  --max-w: 1100px;
  --font-body: 'Georgia', 'Times New Roman', serif;
  --font-ui: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-ui); font-weight: 600; line-height: 1.3; }
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; }

/* ─── Layout ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ─── Top Nav ─── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.site-logo span { color: var(--accent); }
.site-logo:hover { text-decoration: none; color: var(--text); }

.main-nav { display: flex; gap: 0.25rem; align-items: center; }
.main-nav a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover { background: var(--bg-light); color: var(--text); text-decoration: none; }
.main-nav .nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1.125rem;
}
.main-nav .nav-cta:hover { background: var(--accent-hover); }

/* ─── Footer ─── */
.site-footer {
  background: var(--text);
  color: var(--bg-light);
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem 3rem;
  margin-bottom: 2.5rem;
}
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.875rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: #c8bfb0;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: #8a7f72;
  line-height: 1.6;
}
.footer-bottom .affiliate-note { color: #a89880; font-style: italic; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  min-height: 44px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-hover); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }

.btn-full { width: 100%; justify-content: center; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,14,8,0.72) 0%, rgba(20,14,8,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  max-width: 640px;
  margin-bottom: 1.25rem;
}
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn-primary { background: var(--white); color: var(--text); }
.hero-actions .btn-primary:hover { background: var(--bg-light); }
.hero-actions .btn-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; }
.trust-item strong { color: var(--text); }

/* ─── Section spacing ─── */
.section { padding: 4rem 0; }
.section-alt { background: var(--white); }
.section h2 { margin-bottom: 0.5rem; }
.section-intro { color: var(--text-muted); max-width: 600px; margin-bottom: 2.5rem; }

/* ─── Destination Cards ─── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.dest-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.dest-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.dest-card-img { height: 200px; object-fit: cover; width: 100%; }
.dest-card-body { padding: 1.25rem; }
.dest-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.dest-card p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.dest-card .btn { font-size: 0.875rem; }

/* ─── How It Works ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.step { text-align: center; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--highlight);
  color: var(--accent);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9375rem; color: var(--text-muted); }

/* ─── Page Header ─── */
.page-header {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.page-header .container { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.breadcrumb {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--highlight); }
.page-header h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 0.25rem; }
.page-header .subtitle { color: var(--text-muted); font-size: 1rem; max-width: 560px; }
.page-header .hero-cta { margin-left: auto; }

/* ─── Tour Cards ─── */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.tour-card:hover { box-shadow: var(--shadow-lg); }
.tour-card-img { height: 200px; object-fit: cover; width: 100%; }
.tour-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.tour-card h3 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.4; }
.tour-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.875rem; flex: 1; }
.tour-card-meta { display: flex; gap: 1rem; font-family: var(--font-ui); font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1rem; }
.tour-card-meta .badge {
  background: var(--bg-light);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
  color: var(--text);
}
.tour-card .btn { font-size: 0.875rem; }

/* ─── Overview Text ─── */
.overview-text { max-width: 720px; }
.overview-text p { margin-bottom: 1.25rem; font-size: 1.0625rem; }

/* ─── Guide Section ─── */
.guide-list { list-style: none; }
.guide-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.guide-list li:last-child { border-bottom: none; }
.guide-list h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.guide-list p { font-size: 0.9375rem; color: var(--text-muted); }

/* ─── FAQ ─── */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.faq-a { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Product Page ─── */
.product-hero {
  position: relative;
  background: var(--text);
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}
.product-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.product-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  width: 100%;
}
.price-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.product-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  list-style: none;
  margin: 1.5rem 0;
}
.product-highlights li {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.product-highlights li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* ─── Itinerary ─── */
.itinerary-block { max-width: 720px; }
.itinerary-block h3 { margin-bottom: 1rem; }
.itinerary-period {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--highlight);
  margin: 2rem 0 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.itinerary-period:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.itinerary-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
}
.itinerary-time { color: var(--accent); font-weight: 600; font-family: var(--font-ui); font-size: 0.875rem; }
.itinerary-desc { color: var(--text-muted); }
.itinerary-desc strong { color: var(--text); }

/* ─── Includes / Not Included ─── */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 720px;
}
.include-list, .exclude-list { list-style: none; }
.include-list li, .exclude-list li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
}
.include-list li::before { content: "✓"; color: #2d7d46; font-weight: 700; }
.exclude-list li::before { content: "✗"; color: #b84040; font-weight: 700; }
.include-list li { color: var(--text); }
.exclude-list li { color: var(--text-muted); }

/* ─── Practical Info ─── */
.practical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 720px;
}
.practical-item h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--highlight);
  margin-bottom: 0.375rem;
}
.practical-item p { font-size: 0.9375rem; color: var(--text-muted); }

/* ─── Testimonial ─── */
.testimonial {
  background: var(--white);
  border-left: 3px solid var(--highlight);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.testimonial p { font-style: italic; color: var(--text); margin-bottom: 0.5rem; font-size: 1rem; }
.testimonial cite { font-size: 0.875rem; color: var(--text-muted); font-style: normal; }

/* ─── Related Tours ─── */
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 720px; }
.related-card { background: var(--white); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); }
.related-card h4 { font-size: 0.9375rem; margin-bottom: 0.375rem; }
.related-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ─── Cross Links ─── */
.cross-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}
.cross-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: var(--accent);
  font-weight: 500;
}
.cross-link::after { content: "→"; }

/* ─── Affiliate Disclosure ─── */
.affiliate-disclosure {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 2rem 0;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .main-nav { display: none; } /* hamburger TBD */
  .hero h1 { font-size: 1.875rem; }
  .includes-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .page-header .hero-cta { margin-left: 0; width: 100%; }
  .page-header .hero-cta .btn { width: 100%; justify-content: center; }
}
/* ─── Accessibility fixes ─── */
/* Skip to content */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 0;
  background: var(--accent);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

/* Focus states */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  z-index: 200;
  box-shadow: 0 -2px 8px rgba(44,36,23,0.1);
}
.sticky-cta .btn { width: 100%; justify-content: center; }
@media (max-width: 768px) {
  .sticky-cta { display: block; }
}

/* Mobile nav */
.mobile-nav-toggle { display: none; border: none; background: none; cursor: pointer; padding: 0.5rem; }
@media (max-width: 768px) {
  .mobile-nav-toggle { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
  .main-nav { 
    display: none; 
    position: fixed; 
    top: 64px; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: var(--white); 
    flex-direction: column; 
    padding: 1.5rem; 
    gap: 0.5rem;
    z-index: 300;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1.125rem; padding: 0.875rem 1rem; border-bottom: 1px solid var(--border); }
}
