/* Thisdomaindontexist123 — Decorative activity consultation site */
:root {
  --primary: #A1C6F6;
  --primary-dark: #5a8fc9;
  --navy: #1e3a5f;
  --navy-deep: #0f2438;
  --cream: #f8fbff;
  --white: #ffffff;
  --text: #1a2a3a;
  --text-light: #f0f6fc;
  --accent: #e85d4c;
  --shadow: 0 8px 32px rgba(30, 58, 95, 0.12);
  --radius: 12px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--navy-deep);
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Decorative pattern overlay */
.deco-pattern {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(161, 198, 246, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(90, 143, 201, 0.2) 0%, transparent 45%);
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link img {
  height: 42px;
  width: auto;
}

/* Plain text nav */
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--accent);
  color: var(--navy-deep);
}

.menu-toggle {
  display: none;
  background: var(--navy);
  color: var(--text-light);
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.menu-toggle .material-icons {
  vertical-align: middle;
}

/* Disclaimer bar */
.disclaimer-bar {
  background: var(--navy-deep);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  text-align: center;
}

.disclaimer-bar p {
  max-width: 900px;
  margin: 0 auto;
}

/* Hero collage */
.hero-collage {
  position: relative;
  min-height: 420px;
  background: var(--navy);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero-collage-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  opacity: 0.55;
}

.hero-collage-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-collage-grid .tile-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.hero-collage-grid .tile-2 { grid-column: 3 / 5; grid-row: 1 / 2; }
.hero-collage-grid .tile-3 { grid-column: 3 / 4; grid-row: 2 / 4; }
.hero-collage-grid .tile-4 { grid-column: 4 / 5; grid-row: 2 / 3; }
.hero-collage-grid .tile-5 { grid-column: 1 / 2; grid-row: 3 / 4; }
.hero-collage-grid .tile-6 { grid-column: 2 / 5; grid-row: 3 / 4; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 720px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,36,56,0.85) 0%, rgba(30,58,95,0.7) 100%);
  z-index: 1;
}

/* Buttons as links */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 93, 76, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: var(--primary);
  color: var(--navy-deep);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--primary);
  color: var(--navy-deep);
}

.section-alt h2,
.section-alt h3 {
  color: var(--navy-deep);
}

.section-dark {
  background: var(--navy);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.section-lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 680px;
}

.section-dark .section-lead {
  color: rgba(240, 246, 252, 0.9);
}

/* Decorative section border */
.section-deco {
  position: relative;
}

.section-deco::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.section-dark .card {
  background: rgba(255,255,255,0.08);
  border-left-color: var(--primary);
  color: var(--text-light);
}

.section-dark .card h3 {
  color: var(--white);
}

.card .material-icons {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-alt .card .material-icons {
  color: var(--navy);
}

/* Image + text blocks */
.media-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.media-block.reverse {
  direction: rtl;
}

.media-block.reverse > * {
  direction: ltr;
}

.media-block img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}

.img-frame-deco {
  position: relative;
}

.img-frame-deco::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--primary);
  border-radius: var(--radius);
  z-index: -1;
}

/* Lists */
.check-list,
.number-list,
.icon-list {
  list-style: none;
  margin: 1rem 0;
}

.check-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.number-list {
  counter-reset: step;
}

.number-list li {
  counter-increment: step;
  padding: 1rem 1rem 1rem 3.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  background: rgba(255,255,255,0.6);
  border-radius: 8px;
}

.number-list li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.icon-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(30,58,95,0.2);
}

.icon-list .material-icons {
  color: var(--accent);
  flex-shrink: 0;
}

/* Timeline */
.timeline {
  border-left: 3px solid var(--primary);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.timeline-item {
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--white);
}

/* FAQ accordion */
.faq-list details {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-list summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  background: var(--primary);
}

.faq-list .faq-answer {
  padding: 0 1.25rem 1rem;
}

/* Events calendar table */
.events-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.events-table th,
.events-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(30,58,95, 0.1);
}

.events-table th {
  background: var(--navy);
  color: var(--text-light);
}

.events-table td {
  background: var(--white);
  color: var(--navy-deep);
}

.events-table td a:not(.btn) {
  color: var(--navy);
}

.events-table tr:hover td {
  background: rgba(161, 198, 246, 0.35);
  color: var(--navy-deep);
}

.section-dark .events-table td,
.section-alt .events-table td,
.section-cream .events-table td {
  color: var(--navy-deep);
  background: var(--white);
}

/* Health safety box */
.safety-box {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.safety-box h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.safety-box .material-icons {
  color: var(--accent);
}

/* Stats row */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  min-width: 140px;
  box-shadow: var(--shadow);
}

.stat-item strong {
  display: block;
  font-size: 1.75rem;
  color: var(--accent);
  font-family: var(--font-display);
}

/* Quote block */
.quote-block {
  font-style: italic;
  padding: 1.5rem 2rem;
  border-left: 5px solid var(--accent);
  background: rgba(161, 198, 246, 0.3);
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Contact form */
.contact-form {
  max-width: 560px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--navy-deep);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(161, 198, 246, 0.5);
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.35rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: var(--text-light);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.site-footer a {
  color: var(--text-light);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--primary);
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.footer-contact {
  font-size: 0.9rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-contact a {
  text-decoration: underline;
}

.hero-trust {
  font-size: 0.9rem;
  margin-top: 1rem;
  opacity: 0.95;
}

.hero-trust a {
  color: var(--primary);
  text-decoration: underline;
}

.business-notice {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.business-notice strong {
  color: var(--navy-deep);
}

.footer-bottom {
  border-top: 1px solid rgba(161, 198, 246, 0.3);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-ads-note {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 0.5rem;
}

.compliance-strip {
  background: var(--navy-deep);
  color: var(--text-light);
  padding: 1rem 0;
  font-size: 0.9rem;
  border-top: 3px solid var(--primary);
}

.compliance-strip a {
  color: var(--primary);
  text-decoration: underline;
}

.compliance-strip p {
  margin: 0;
  max-width: 900px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  color: var(--text-light);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-actions .btn {
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
}

.cookie-settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.cookie-settings.open {
  display: block;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.cookie-toggle input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--primary);
}

.cookie-toggle.disabled {
  opacity: 0.7;
}

/* Policy pages */
.policy-content {
  padding: 3rem 0 4rem;
}

.policy-content h1 {
  margin-bottom: 1rem;
}

.policy-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 0.75rem;
}

.policy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Success page */
.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.success-page .material-icons {
  font-size: 4rem;
  color: var(--accent);
}

/* Page hero (inner) */
.page-hero {
  background: var(--navy);
  color: var(--text-light);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

/* Tag pills */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: var(--navy);
  color: var(--text-light);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.section-alt .tag {
  background: var(--white);
  color: var(--navy);
}

/* Responsive */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .media-block {
    grid-template-columns: 1fr;
  }

  .media-block.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 85vw);
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    padding: 4rem 1.5rem 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(30,58,95,0.1);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
  }

  .nav-overlay.open {
    display: block;
  }

  .hero-collage {
    min-height: 360px;
  }

  .events-table {
    font-size: 0.85rem;
  }

  .events-table th,
  .events-table td {
    padding: 0.6rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.5rem 0;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-row {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 93.75%;
  }

  .header-inner {
    padding: 0.5rem 0.75rem;
  }

  .logo-link img {
    height: 34px;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .container {
    width: min(100% - 1rem, var(--max-width));
  }

  .btn {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }
}
