/* _CSS-halloween.css */
.halloween-landing {
  font-family: "Segoe UI", sans-serif;
  color: #332a1a;
  background-color: #fdfaf6;
}

.hero-halloween {
  height: 320px;
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* optional overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-halloween h1 {
  font-size: 2.5em;
  color: #ffcc66;
  margin-bottom: 0.3em;
}

section {
  max-width: 1100px;
  margin: 2em auto;
  padding: 1.5em;
  background: #fffaf2;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

section h2 {
  color: #a1531e;
  border-bottom: 2px solid #e2b76c;
  padding-bottom: 0.3em;
  margin-bottom: 0.8em;
}

.list-three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.8em;
  list-style: none;
  padding: 0;
}

.list-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.8em;
  list-style: none;
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1em;
}

.gallery-grid figure {
  background: #f4ebe2;
  border-radius: 8px;
  padding: 0.5em;
  text-align: center;
}

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

.story-cards article {
  background: #f6ede3;
  border-left: 4px solid #c96e26;
  padding: 1em;
  border-radius: 6px;
}

.quick-links ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.quick-links li {
  display: inline-block;
  margin: 0.5em 1em;
}

.more-connections {
  margin: 2em 0;
  padding: 1em;
  background-color: #f7f3ed;
  border-top: 2px solid #c4a36d;
  border-radius: 8px;
}

.section-title {
  color: #5b3b1a;
  font-size: 1.6em;
  margin-bottom: 0.8em;
  text-align: center;
}

.connections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5em;
  align-items: start;
}

.connections-column {
  padding: 0.5em 1em;
}

.connection-list {
  list-style: none;
  padding-left: 0;
}

.connection-list li {
  margin: 0.5em 0;
}

.connection-list a {
  color: #704214;
  text-decoration: none;
  font-weight: 600;
}

.connection-list a:hover {
  color: #b86b33;
  text-decoration: underline;
}

/* Haunted Locations Section Layout */
.haunted-locations {
    max-width: 950px;
    margin: 1em auto;
    padding: 0 1em;
}

/* Individual haunted subsection container */
.haunted-locations .haunted-section {
    margin-bottom: 2em;
    padding: 1em;
    border-radius: 8px;
    /* Optional subtle overlay to differentiate sections */
    background: rgba(0, 0, 0, 0.05); 
}

/* Lists */
.haunted-locations .haunted-section ul {
    list-style: none;
    padding-left: 0;
}

.haunted-locations .haunted-section li {
    margin-bottom: 1em;
}

.haunted-locations .haunted-section li .desc {
    display: block;
    margin-top: 0.2em;
}

/* === Haunted Locations — layout-only, use global colors === */

.page-title {
  font-size: 1.9em;                 /* keep size only */
  color: var(--primary-accent);     /* use global desert clay */
  text-align: center;
  margin-bottom: 1em;
}

.intro-text {
  text-align: center;
  font-size: 1.1em;                 /* keep size only */
  margin-bottom: 2em;
  color: var(--text-main);          /* use global body text color */
}

.haunted-section {
  margin-bottom: 2em;
  padding: 0.6em 0;                 /* light spacing, layout-only */
  background: transparent;          /* don't force color */
  border-radius: 0;                 /* keep neutral unless layout needs it */
}

/* headings inside haunted-section should use the global primary color */
.haunted-section h2 {
  color: var(--primary-accent);     /* desert clay from global */
  border-bottom: 1px solid rgba(0,0,0,0.08); /* subtle divider, layout-only */
  padding-bottom: 0.3em;
  margin-top: 0.2em;
  margin-bottom: 0.6em;
}

.haunted-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.haunted-section li {
  margin: 0.6em 0;
}

/* description text should use the global text color but slightly muted by alpha */
.desc {
  display: block;
  color: rgba(46, 27, 14, 0.75);    /* muted version of global text-main; layout-only */
  font-size: 0.95em;
  margin-top: 0.2em;
}

/* related links: rely on --primary-accent and --text-main instead of hard-coded colors */
.related-links {
  text-align: center;
  padding-top: 1em;
  border-top: 1px solid rgba(0,0,0,0.08); /* subtle divider */
}

.related-links a {
  color: var(--primary-accent);
  text-decoration: none;
  font-weight: 600;
}

.related-links a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/*
<!-- ============================== -->
<!-- CSS (suggested external file: _CSS-craftkids.css) -->
<!-- ============================== -->
*/

.craftkids-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5em;
  background-color: #fcfaf6;
  border: 1px solid #d4b998;
  border-radius: 10px;
}

.craftkids-title {
  text-align: center;
  font-size: 1.9em;
  color: #4b2a10;
  margin-bottom: 0.8em;
}

.craftkids-intro {
  text-align: center;
  font-size: 1.1em;
  color: #444;
  margin-bottom: 1.8em;
  line-height: 1.5;
}

.craftkids-section {
  margin-bottom: 2em;
}

.craftkids-subtitle {
  color: #6b3c1c;
  border-bottom: 1px solid #d4b998;
  padding-bottom: 0.3em;
  margin-bottom: 0.5em;
  font-size: 1.3em;
}

.craftkids-list {
  list-style: disc;
  margin-left: 1.5em;
  line-height: 1.5;
  color: #333;
}

.craftkids-text {
  font-size: 1.05em;
  color: #444;
  line-height: 1.6;
}

.craftkids-related {
  text-align: center;
  border-top: 1px solid #d4b998;
  padding-top: 1.5em;
}

.craftkids-related-title {
  color: #5b3b1a;
  margin-bottom: 0.8em;
}

.craftkids-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.craftkids-related-list li {
  margin: 0.5em 0;
}

.craftkids-related-list a {
  color: #704214;
  text-decoration: none;
  font-weight: bold;
}

.craftkids-related-list a:hover {
  color: #b86b33;
  text-decoration: underline;
}

… 
/* =============================== */
/* Día de los Muertos Page Layout  */
/* =============================== */

/* Container and layout */
.muertos-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5em;
  background: var(--bg-alt, #fdfaf6); /* use global background, fallback off-white */
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
}

/* Title and intro */
.muertos-title {
  text-align: center;
  font-size: 1.9em;
  color: var(--primary-accent); /* desert clay from global */
  margin-bottom: 0.8em;
}

.muertos-intro {
  text-align: center;
  font-size: 1.1em;
  color: var(--text-main);
  margin-bottom: 1.8em;
  line-height: 1.5;
}

/* Section blocks */
.muertos-section {
  margin-bottom: 2em;
}

.muertos-subtitle {
  color: var(--primary-accent);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 0.3em;
  margin-bottom: 0.5em;
  font-size: 1.3em;
}

.muertos-text {
  font-size: 1.05em;
  color: var(--text-main);
  line-height: 1.6;
}

/* Lists */
.muertos-event-list,
.muertos-links-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.muertos-event-list li,
.muertos-links-list li {
  margin: 0.5em 0;
}

/* Links */
.muertos-links-list a {
  color: var(--primary-accent);
  text-decoration: none;
  font-weight: 600;
}

.muertos-links-list a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/* Notes or small details */
.muertos-note {
  font-size: 0.95em;
  color: var(--text-muted, rgba(0,0,0,0.65));
  font-style: italic;
}