/* wind.css - Styling for Windnet site */

/* Base Setup */
body {
  margin: 0;
  font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', sans-serif;
  background-color: #E6ECEF;
  color: #3B5C68;
  line-height: 1.6;
}

main {
  padding: 2rem;
  max-width: 768px;
  margin: auto;
}

/* Navigation */
nav {
  background-color: #DFE7EC;
  border-bottom: 1px solid #C2D9E5;
}

nav ul {
  margin: 0;
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #3B5C68;
  font-weight: bold;
}

nav a:hover {
  color: #6E9CAE;
}

/* Sections */
section {
  background-color: #F9FBFC;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

h1, h2, h3 {
  color: #3B5C68;
  margin-top: 0;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background-color: #C2D9E5;
  border-radius: 6px;
  overflow: hidden;
}

table th,
table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #E6ECEF;
  text-align: left;
}

/* Code & Blocks */
code {
  background-color: #DFE7EC;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Courier New', Courier, monospace;
}

pre {
  background-color: #DFE7EC;
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #6E9CAE;
}

/* --- Zephyr Reflection Styles --- */

/* Give art sections a sense of depth and air */
#cloud-sequence, 
#jar-sequence {
  text-align: center;
  background: linear-gradient(#F9FBFC, #E6ECEF);
  padding: 2rem 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Headings inside these sections */
#cloud-sequence h2,
#jar-sequence h2 {
  color: #4B6F80;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Images — larger, centered, softly bordered */
figure {
  margin: 2rem auto;
  max-width: 90%;
}

figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

figure img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Captions — smaller, lighter text with tone */
figcaption {
  font-size: 0.85rem;
  color: #6E9CAE;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Reflection text area */
section#reflection-notes {
  border-left: 4px solid #C2D9E5;
  background-color: #F9FBFC;
  padding: 1.5rem;
  font-style: italic;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  figure img {
    max-width: 100%;
    border-radius: 8px;
  }
}
