/* ================================================
   The London Scoop — Shared Stylesheet
   ================================================ */

/* === Custom Properties === */
:root {
  --red:       #E8322A;
  --red-dark:  #C42820;
  --red-light: rgba(232, 50, 42, 0.08);
  --white:     #ffffff;
  --off-white: #FFF8F5;
  --cream:     #FEF3EF;
  --grey-dark: #1A1A1A;
  --grey-mid:  #4A4A4A;
  --grey-soft: #757575;
  --grey-line: #E4E4E4;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --max:       860px;
  --max-wide:  1100px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--grey-dark);
  background: var(--white);
  line-height: 1.65;
}

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

a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover { color: var(--red-dark); }

/* === Layout Helpers === */
.wrapper {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.wrapper-wide {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 62px;
}

.site-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  text-decoration: none;
  letter-spacing: -0.025em;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--red-dark); }

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.site-nav a {
  color: var(--grey-dark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--red); }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--grey-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 4rem;
}

.site-footer p + p { margin-top: 0.4rem; }

.site-footer a {
  color: #ffffff;
  font-weight: 600;
}
.site-footer a:hover { color: rgba(255,255,255,0.8); }

/* ================================================
   NEWSLETTER CTA BOX
   ================================================ */
.cta-box {
  background: var(--red);
  color: var(--white);
  padding: 2.75rem 2rem;
  border-radius: 10px;
  text-align: center;
  margin: 3.5rem auto;
  max-width: var(--max);
}

.cta-box h2 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.cta-box p {
  font-size: 1rem;
  opacity: 0.93;
  max-width: 480px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.25rem;
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-button:hover {
  color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* ================================================
   HOMEPAGE HERO
   ================================================ */
.hero {
  background: var(--cream);
  padding: 4.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--grey-line);
}

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--grey-dark);
  line-height: 1.15;
  margin-bottom: 0.9rem;
  letter-spacing: -0.03em;
}

.hero .subhead {
  font-size: 1.15rem;
  color: var(--grey-mid);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.hero .intro-text {
  font-size: 1.05rem;
  color: var(--grey-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================
   HOMEPAGE CARDS
   ================================================ */
.cards-section {
  padding: 3rem 0;
}

.cards-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--grey-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--grey-line);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
  border-color: var(--red);
}

.card-emoji {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 0.85rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grey-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.55;
}

.card .read-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--red);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}

/* ================================================
   GUIDE PAGE — HERO
   ================================================ */
.guide-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--grey-line);
  padding: 3rem 1.5rem 2.5rem;
}

.guide-hero h1 {
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--grey-dark);
  line-height: 1.2;
  margin-bottom: 0.85rem;
  letter-spacing: -0.025em;
  max-width: var(--max);
}

.guide-hero .guide-intro {
  font-size: 1.08rem;
  color: var(--grey-mid);
  max-width: var(--max);
  line-height: 1.7;
}

/* ================================================
   GUIDE PAGE — ARTICLE BODY
   ================================================ */
.guide-body {
  padding: 2rem 0;
}

.guide-body p {
  margin-bottom: 1.1rem;
  line-height: 1.75;
}

.guide-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grey-dark);
  margin: 3rem 0 1rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  padding-top: 0.5rem;
  border-top: 2px solid var(--grey-line);
}

.guide-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--grey-dark);
  margin: 2rem 0 0.5rem;
}

.guide-body ul,
.guide-body ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
}

.guide-body li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.guide-body strong {
  font-weight: 600;
  color: var(--grey-dark);
}

/* ================================================
   MUSEUM / ACTIVITY ENTRY CARDS
   ================================================ */
.entry {
  border-left: 4px solid var(--red);
  background: var(--off-white);
  border-radius: 0 8px 8px 0;
  padding: 1.4rem 1.4rem 1.4rem 1.6rem;
  margin: 2rem 0;
}

.entry h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--grey-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.25rem;
  font-size: 0.82rem;
  color: var(--grey-soft);
  margin-bottom: 0.85rem;
}

.entry-meta span::before {
  margin-right: 0.2rem;
}

.entry p {
  font-size: 0.95rem;
  color: var(--grey-dark);
  margin-bottom: 0.65rem;
  line-height: 1.7;
}

.tip {
  background: var(--red-light);
  border-radius: 5px;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  color: var(--grey-mid);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.tip strong {
  color: var(--red);
  font-weight: 600;
}

/* ================================================
   SECTION DIVIDERS
   ================================================ */
.section-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

/* ================================================
   BREADCRUMB
   ================================================ */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--grey-soft);
  padding: 0.75rem 0 0;
}
.breadcrumb a {
  color: var(--grey-soft);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 0.4rem; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1.25rem;
    min-height: auto;
    gap: 0.5rem;
  }

  .site-nav { gap: 0.2rem 1rem; }

  .hero { padding: 3rem 1.25rem; }

  .guide-hero { padding: 2rem 1.25rem 1.75rem; }

  .cta-box {
    padding: 2rem 1.25rem;
    margin: 2.5rem auto;
    border-radius: 6px;
  }

  .cta-box h2 { font-size: 1.3rem; }

  .cards-grid { grid-template-columns: 1fr; }

  .entry-meta { flex-direction: column; gap: 0.25rem; }

  .wrapper, .wrapper-wide { padding: 0 1.25rem; }
}

@media (max-width: 420px) {
  .site-nav a { font-size: 0.82rem; }
  .site-logo { font-size: 1.15rem; }
}

/* ================================================
   LAST UPDATED DATE
   ================================================ */
.last-updated {
  font-size: 0.82rem;
  color: var(--grey-soft);
  margin: 0.35rem 0 0.6rem;
  font-style: italic;
}

/* ================================================
   COMPARISON TABLE
   ================================================ */
.table-wrap {
  overflow-x: auto;
  margin: 1.75rem 0 2rem;
  border: 1px solid var(--grey-line);
  border-radius: 8px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.comparison-table th {
  background: var(--grey-dark);
  color: var(--white);
  padding: 0.65rem 0.9rem;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.comparison-table th:first-child { border-radius: 7px 0 0 0; }
.comparison-table th:last-child  { border-radius: 0 7px 0 0;  }

.comparison-table td {
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid var(--grey-line);
  vertical-align: top;
  line-height: 1.45;
  color: var(--grey-mid);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--grey-dark);
  white-space: nowrap;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td     { background: var(--cream); }

/* ================================================
   PARENT INTEL (micro-specific parent details)
   ================================================ */
.parent-intel {
  margin-top: 1rem;
  border-top: 1px solid var(--grey-line);
  padding-top: 0.85rem;
}

.parent-intel h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--grey-soft);
  margin-bottom: 0.55rem;
}

.parent-intel ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.parent-intel li {
  font-size: 0.87rem;
  line-height: 1.55;
  padding: 0.3rem 0;
  border-bottom: 1px dashed var(--grey-line);
  color: var(--grey-mid);
}

.parent-intel li:last-child { border-bottom: none; }

.parent-intel li strong {
  color: var(--grey-dark);
  font-weight: 600;
}

/* ================================================
   90-MINUTE BOX
   ================================================ */
.ninety-min {
  background: var(--grey-dark);
  color: var(--white);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
}

.ninety-min h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #ff8a80;
  margin-bottom: 0.55rem;
}

.ninety-min ul {
  margin: 0;
  padding-left: 1.2rem;
}

.ninety-min li {
  font-size: 0.87rem;
  line-height: 1.55;
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.88);
}

.ninety-min li:last-child { margin-bottom: 0; }

/* ================================================
   MID-ARTICLE CTA
   ================================================ */
.mid-cta {
  background: var(--red);
  color: var(--white);
  padding: 1.75rem 2rem;
  border-radius: 10px;
  text-align: center;
  margin: 2.5rem 0;
}

.mid-cta p {
  font-size: 1rem;
  opacity: 0.93;
  max-width: 520px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-item {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--grey-line);
  padding-bottom: 1.75rem;
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--grey-dark);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.faq-item p {
  font-size: 0.93rem;
  color: var(--grey-mid);
  margin-bottom: 0;
  line-height: 1.7;
}
