/* =========================
   Base styling
========================= */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #f7f6f3 0%, #f2eef9 100%);
  color: #2b2b2b;
  line-height: 1.6;
}

/* =========================
   Hero section
========================= */
.hero {
  text-align: center;
  padding: 80px 20px 40px;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #e6e6e6;
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #3b2a4a;
}

.subtitle {
  font-size: 1.1rem;
  color: #6b5a7a;
}

/* =========================
   Layout container
========================= */
.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* =========================
   Intro card (kept style)
========================= */
.intro-card {
  background: rgba(255, 255, 255, 0.92);
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #e6e6e6;
  margin-bottom: 50px;
  box-shadow: 0 4px 14px rgba(80, 50, 120, 0.06);
}

.intro-card h2 {
  margin-top: 0;
  color: #3b2a4a;
}

/* =========================
   Section layout
========================= */
.gallery-section {
  margin-bottom: 60px;
}

.gallery-section h2 {
  margin-bottom: 5px;
  color: #3b2a4a;
}

.section-subtitle {
  margin-top: 0;
  margin-bottom: 20px;
  color: #6b5a7a;
}

/* =========================
   Shared grid
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

/* =========================
   Soft “art gallery” tiles
========================= */
.gallery-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e6e6e6;
  border-radius: 16px;

  /* reduced padding for images */
  padding: 10px;

  text-align: center;

  box-shadow: 0 4px 14px rgba(80, 50, 120, 0.06);

  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;

  /* important for images */
  overflow: hidden;
}

/* hover becomes more “gallery spotlight” */
.gallery-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(80, 50, 120, 0.15);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}


/* =========================
   Haiku section (kept poetic feel)
========================= */
.haiku-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.haiku-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e6e6e6;
  border-radius: 16px;

  padding: 25px;

  font-style: italic;
  color: #4a3b5c;

  box-shadow: 0 4px 14px rgba(80, 50, 120, 0.06);

  white-space: pre-line;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.haiku-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(80, 50, 120, 0.12);
}

/* =========================
   Footer
========================= */
.footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #7a6f86;
}
