/* ==========================================================
   PILGRIMAGE TOURS PAGE — PRODUCTION CSS
   ========================================================== */

:root {
  --radius-xl: 26px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --card-height-desktop: 260px;
  --card-height-tablet: 240px;
  --card-height-mobile: 220px;

  --navy: #0b2a4a;
  --navy-soft: #143b66;
  --saffron: #c2410c;

  --text-dark: #0f172a;
  --text-muted: #6b7280;
  --white: #ffffff;

  --shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.12);
  --shadow-hover: 0 26px 60px rgba(15, 23, 42, 0.18);
}

/* RESET */

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

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: #ffffff;
  color: var(--text-dark);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* HERO */

.pilgrimage-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 85svh;
  background-image: url("/assets/images/hero/pilgrimage-hero.webp");
  background-size: cover;
  background-position: center;
}

.pilgrimage-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.6)
  );
}

.pilgrimage-hero-overlay h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.pilgrimage-hero-overlay p {
  margin-top: 10px; /* respectful spacing */
  margin-bottom: 0;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.45;
  color: #fde68a;
}

/* INTRO */

.pilgrimage-intro {
  max-width: 1100px;
  margin: 72px auto;
  padding: 0 24px;
  text-align: center;
}

.pilgrimage-intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* DESTINATION GRID */

.destination-section {
  max-width: 1480px;
  margin: 96px auto;
  padding: 0 24px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */

.destination-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.destination-card img {
  width: 100%;
  height: var(--card-height-desktop);
  object-fit: cover;
}

.card-overlay {
  padding: 18px;
}

.card-overlay h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.card-overlay p {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-footer {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 0.9rem;
  font-weight: 600;
}

.cta {
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--saffron), #ea580c);
  color: var(--white);
}

/* TABLET */

@media (max-width: 1024px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-card img {
    height: var(--card-height-tablet);
  }

  .pilgrimage-hero {
    height: 75vh;
  }

  .pilgrimage-hero-overlay h1 {
    font-size: 2.6rem;
  }
}

/* MOBILE */

@media (max-width: 640px) {
  .destination-grid {
    grid-template-columns: 1fr;
  }

  .destination-card img {
    height: var(--card-height-mobile);
  }

  .pilgrimage-hero {
    height: 68vh;
  }

  .pilgrimage-hero-overlay h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .pilgrimage-hero-overlay p {
    margin-top: 8px;
    font-size: 0.95rem;
  }
}

/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {
  .destination-card {
    transition: none;
  }
}
