@charset "UTF-8";
body {
  font-family: serif;
}

main {
  line-height: 2;
  padding-bottom: 4em;
  margin-bottom: 4em;
}

section {
  margin-top: 1em;
  margin-bottom: 1em;
}

p {
  margin-top: 2em;
}

li {
  margin-top: 0.5em;
}

a {
  color: blue;
} /* Unvisited link  */
a:visited {
  color: blue;
} /* Visited link    */
a:hover {
  color: blue;
} /* Mouse over link */
a:active {
  color: blue;
} /* Selected link   */
/* FAQ / accordion styling */
.faq {
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 800px;
}

/* Each faq item */
.faq-item {
  border-color: #e5e7eb; /* light gray */
  padding: 0.75rem 0;
}

/* Button acts as header */
.faq-item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: background-color 160ms ease, box-shadow 160ms ease;
  border-radius: 6px;
}

/* Hover and focus affordances */
.faq-item > button:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.faq-item > button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 197, 192, 0.12);
}

/* Question text */
.faq-item > button > span:first-child {
  flex: 1 1 auto;
  text-align: left;
  color: #111827; /* dark gray */
  font-weight: 600;
  font-size: 1.06rem;
}

/* Toggle symbol (+ / −) */
.faq-item > button > span:last-child {
  flex: 0 0 1.8rem;
  text-align: center;
  color: #6b7280; /* gray */
  font-weight: 700;
  margin-left: 0.75rem;
  font-size: 1.2rem;
}

/* Answer paragraph styling */
.faq-item p {
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: #4b5563; /* medium gray */
  line-height: 1.45;
  padding-right: 0.5rem;
  font-size: 0.975rem;
  animation: faqFadeIn 180ms ease both;
}

/* Small fade/slide animation for answers */
@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Optional small separator tweak */
.faq-item + .faq-item {
  margin-top: 0.25rem;
}

/* Art collage styling */
.art-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .art-collage {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .art-collage {
    grid-template-columns: 1fr;
  }
}
.art-collage img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.art-collage img:hover {
  transform: scale(1.25);
}
