/* Base Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

/* HEADER */
.site-header {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
}

.site-title {
  font-size: 2rem;
  font-family: 'Georgia', serif;
  color: #2c2c2c;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* NAV BAR */
.nav--list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
}

.item--wrapper {
  text-decoration: none;
  color: #444;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.item--wrapper:hover {
  border-color: #a0522d;
  color: #a0522d;
}


.stat-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  min-height: 60vh;
  z-index: 2;
  position: relative;
}

.stat-container {
  background-color: rgba(255, 255, 255, 0.75); /* subtle background */
  padding: 2.5rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  text-align: center;
  max-width: 700px;
  width: 100%;
}

/* Text animation */
.fade-line {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
  animation-delay: var(--delay);
  margin: 0.6rem 0;
  font-family: 'Georgia', serif;
  color: #3a2a1d;
  font-weight: 500;
  font-size: 1.4rem;
}

.fade-line:first-child {
  font-size: 2.2rem;
  font-weight: bold;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* STATISTICS BLOCK */
.stat-block {
  background: #fdf7f3;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 3rem;
  border: 1px solid #f1e8e3;
}

.stat-title {
  font-size: 2.2rem;
  color: #5a3510;
  margin-bottom: 1rem;
  font-family: 'Georgia', serif;
  font-weight: bold;
}

.stat-block p {
  font-size: 1.3rem;
  color: #7a4b2a;
  margin: 0.4rem 0;
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: #a0522d;
}

/* POETIC PARAGRAPHS */
.narrative-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  background: none;
  position: relative;
  z-index: 2;
}

.narrative-container {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3rem 3.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  max-width: 850px;
  width: 100%;
  text-align: left;
}

.narrative-line {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 1s forwards;
  animation-delay: var(--delay);
  font-size: 1.3rem;
  line-height: 1.8;
  color: #2f1f16;
  font-family: 'Georgia', serif;
  margin-bottom: 16px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* FOOTER */
footer {
  border-top: 1px solid #e6e6e6;
  margin-top: 4rem;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  color: #999;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .nav--list {
    flex-direction: column;
    gap: 1rem;
  }

  .site-header {
    padding: 2rem 1rem;
  }

  .site-title {
    font-size: 1.75rem;
  }
}



/* Foreground gradient color wash */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(255, 236, 221, 0.15) 0%,
    rgba(255, 250, 240, 0.08) 50%,
    rgba(255, 224, 200, 0.1) 100%
  );
}

/* Make content layer appear above the foreground color wash */
.main-content, header, nav, footer {
  position: relative;
  z-index: 2;
}



/* INFO PAGE */

.padded-container {
  background-color: rgba(255, 255, 255, 0.82);
  padding: 1rem 3rem;
  border-radius: 1rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  max-width: 900px;
  margin: 2rem auto;
  font-size: 20px;
  line-height: 1.7;
  color: #2f1b10;
  font-family: 'Georgia', serif;
}

h2, h3 {
  margin-top: 2rem;
  color: #472b1e;
}

ul {
  padding-left: 1.3rem;
  margin-top: 0.5rem;
}

ul li {
  margin-bottom: 0.5rem;
}

.closing-line {
  margin-top: 2rem;
  font-style: italic;
  color: #3b271c;
}

/* Fade in like the intro section */
.fade-container .fade-line {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
  animation-delay: var(--delay);
    font-size: 1.4rem;
  line-height: 1.8;
  color: #2f1f16;
  font-family: 'Georgia', serif;
  margin-bottom: 16px;
  font-weight: normal;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}








/* IMAGE CODE */
.image-row {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin: 4em auto 2em auto;
  padding: 0 1.5em;
  max-width: 1000px;
  flex-wrap: wrap;
}

.image-box {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 252, 243, 0.88); /* matches your glassy look */
  padding: 1em;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(80, 65, 32, 0.15);
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.caption {
  font-size: 0.95rem;
  margin-top: 0.8em;
  color: #524320;
  text-align: center;
  font-style: italic;
}