/* =========================
   Global Body & Fonts
========================= */
body {
  background-color: #6b8e23;  /* soft olive */
  color: #fcf8e8; /* softer, natural-looking white/cream */
  font-family: "Oswald", sans-serif;
  margin: 0;
  padding: 0;
}

/* =========================
   Content Container
========================= */
.content {
  max-width: 900px;           /* keeps content from stretching too wide */
  margin: 40px auto;          /* centers content horizontally */
  padding: 30px 25px;         /* distance from browser edges */
  text-align: center;         /* centers headings, images */
  background-color: rgba(0,0,0,0.1); /* subtle "paper" background */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* =========================
   Paragraphs
========================= */
p {
  text-align: center;         /* center the paragraphs */
  line-height: 1.6;
  margin-bottom: 18px;
}

/* =========================
   Headings
========================= */
h1, h2, h3 {
  margin-top: 20px;
  margin-bottom: 15px;
}

/* =========================
   Links & Buttons
========================= */
a {
  color: #fff8d3;
  text-decoration: none;
}

a:hover {
  color: #ffffe0;
  text-decoration: underline;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #556b2f;
  color: #fffacd;
  border-radius: 8px;
  margin-top: 10px;
  transition: all 0.2s ease;
}

.button:hover {
  background-color: #6b8e23;
  color: #ffffe0;
  transform: translateY(-2px);
}

/* =========================
   Images
========================= */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* =========================
   Exploration List Section
========================= */
.exploration {
  text-align: left;          /* left-align title and list */
  margin: 30px auto;         /* keep it centered horizontally but content left-aligned */
  max-width: 700px;          /* optional, smaller width than main container */
}

.exploration h3 {
  margin-bottom: 8px;        /* slightly smaller spacing under title */
  font-weight: bold;
}

.exploration ul {
  list-style-type: none;      /* remove bullets */
  padding-left: 0;            /* remove default left padding */
  margin: 0;
  line-height: 1.2;           /* tighter spacing between lines */
}

.exploration li {
  margin-bottom: 4px;         /* smaller spacing between items */
}

/* Email links in cursive */
.email-link {
  font-style: italic;
  color: #fff8d3;          /* keep original color */
  text-decoration: none;    /* keep links clean */
}

.email-link:hover {
  color: #ffffe0;           /* hover effect */
  text-decoration: underline;
}

.exploration ol {
  list-style-type: none;  /* removes bullets */
  padding-left: 0;        /* remove default left padding */
  margin: 0;
  line-height: 1.4;       /* compact spacing */
}

img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}