/* === Global Base Styles (Irish Heritage Theme) === */
body {
  background: #0b3d0b;       /* Irish dark green */
  color: #f7f5e7;            /* parchment text */
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;       /* center horizontally */
}

/* Centered container */
.container {
  width: 100%;
  max-width: 1200px;         /* limit content width */
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;            /* Celtic gold */
  margin-top: 0;
}

/* Paragraphs */
p {
  margin: 0 0 1.2rem;
}

/* Links */
a {
  color: #d4af37;            /* Celtic gold */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

/* ====== Hero Section ====== */
.hero {
  background: #0b3d0b; /* Irish dark green */
  color: #f7f5e7;      /* parchment text */
  padding: 4rem 1rem;
  width: 100%;
}

.hero-inner {
  display: flex;
  flex-direction: column;   /* always stacked */
  align-items: center;      /* center horizontally */
  justify-content: center;
  max-width: 900px;         /* narrower column for readability */
  margin: 0 auto;
  text-align: center;
}

/* Headline */
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.2;
  color: #d4af37; /* Celtic gold */
  margin-bottom: 1rem;
  text-align: center;
}

/* Subheading */
.hero-subheading {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;   /* base size */
  line-height: 1.9;
  margin-bottom: 2rem;
  text-align: center;
}

/* CTA Buttons */
.btn {
  font-size: 1.4rem;
  padding: 1.4rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin: 0.5rem; /* spacing between buttons */
}

.btn-primary {
  background: #16a34a; /* emerald */
  color: #fff;
}

.btn-secondary {
  border: 2px solid #d4af37;
  color: #d4af37;
  background: transparent;
}

/* Hero Image */
.hero-image {
  text-align: center;
  margin-top: 3rem;   /* space above image */
}

.hero-image img {
  max-width: 800px;   /* wide on desktop */
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Glow */
.hero-image .hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(22,163,74,0.28) 20%, rgba(22,163,74,0.12) 55%, rgba(22,163,74,0) 85%),
    radial-gradient(circle, rgba(212,175,55,0.12) 15%, rgba(212,175,55,0) 70%);
  filter: blur(36px);
}

/* ====== Mobile Fixes ====== */
@media (max-width: 768px) {
  .hero-subheading {
    font-size: 1.8rem;   /* larger text on mobile */
    line-height: 2rem;
  }

  .btn {
    font-size: 1.7rem;   /* bigger buttons on mobile */
    padding: 1.6rem 2.2rem;
    width: 100%;
    max-width: 500px;
    margin: 0.75rem auto;
    text-align: center;
  }

  .hero-image img {
    max-width: 100%; /* full width on mobile */
  }
}

/* ====== Section Styling ====== */
section {
  padding: 4rem 1.5rem;
  width: 100%;
  max-width: 900px;       /* match hero width */
  margin: 0 auto;
  text-align: center;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #d4af37;         /* Celtic gold */
  margin-bottom: 1.5rem;
}

section p,
section li {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* On mobile make text and spacing bigger */
@media (max-width: 768px) {
  section h2 {
    font-size: 2.2rem;
  }

  section p,
  section li {
    font-size: 1.4rem;  /* larger for readability */
    line-height: 1.9;
  }

  section {
    padding: 3rem 1rem; /* reduce side padding, more top/bottom breathing */
  }
}

/* ====== Problem → Promise Section ====== */
.problem-promise {
  background: #f7f5e7;      /* parchment background */
  color: #0b3d0b;           /* dark green text */
  padding: 5rem 1.5rem;
}

.problem-promise h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #0b3d0b;
  margin-bottom: 2rem;
}

.problem-text {
  font-size: 1.3rem;
  line-height: 1.9;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.problem-promise-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-side, .promise-side {
  background: #fff;
  border: 3px solid #d4af37; /* gold border */
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.problem-side h3 {
  color: #b91c1c; /* red tone for problem */
  margin-bottom: 1rem;
}

.promise-side h3 {
  color: #0a7d42; /* emerald for promise */
  margin-bottom: 1rem;
}

.problem-side li,
.promise-side li {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

/* Problem / Solution images */
.problem-image,
.solution-image {
  display: flex;
  justify-content: center;  /* center horizontally */
  align-items: center;      /* center vertically */
  text-align: center;       /* fallback alignment */
  margin-bottom: 1rem;
  width: 100%;
}

.problem-image img.problem-img,
.solution-image img.solution-img {
  display: block;
  margin: 0 auto;
  max-width: 160px;   /* consistent size on desktop */
  width: 100%;        /* shrink on mobile */
  height: auto;
  object-fit: contain;
  border: 2px solid #d4af37; /* Celtic gold outline */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background: #f7f5e7;       /* parchment fill */
}

/* Mobile responsive */
@media (max-width: 768px) {
  .problem-promise-split {
    grid-template-columns: 1fr; /* stack problem/promise */
  }
}

.comparison-images {
  text-align: center;
  margin-bottom: 1rem;
}

.comparison-images img.comparison-img {
  width: 160px;        /* match old placeholder size */
  height: 160px;       /* force square box */
  object-fit: contain; /* keep whistle aspect ratio */
  border: 2px solid #d4af37; /* Celtic gold */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background: #f7f5e7; /* parchment fill */
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center; /* keeps image centered vertically with text */
}

.story-image {
  text-align: center;
}

.story-image img.workshop-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid #d4af37; /* Celtic gold */
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-image img.workshop-img {
    max-width: 100%;
  }
}
.craft-single {
  background: transparent !important; /* force no background */
  border: 3px solid #d4af37; /* Celtic gold */
  border-radius: 10px;
  padding: 2rem;
  max-width: 800px;
  margin: 2rem auto;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  color: #f7f5e7; /* parchment text for contrast */
}

.craft-single ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.craft-single li {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}
