/* Base body and typography */
body {
  font: 16px/1.5 'Roboto Slab', serif;
  margin: 0;
  background-color: #fae1ea;
  color: #d72660;
  padding: 6rem 0 2rem 0;
}

/* Main wrapper/card */
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem 2rem 1.25rem;
  background: #fbeaf2;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(215,38,96,0.07);
  text-align: center;
}

/* Headings */
h1, h2 {
  color: #d72660;
  text-align: center;
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}
h2 {
  font-size: 1.2em;
  margin-top: 2em;
  margin-bottom: .7em;
}

/* Paragraph text */
p {
  color: #d72660;
  margin-bottom: 1.25em;
  margin-top: 0.25em;
}

/* Lists */
ul {
  color: #a42657;
  padding-left: 2em;
  margin-bottom: 1.5em;
  background: #fce6fb;
  border-radius: 13px;
  padding: 1em 1.3em 1em 2em;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(215,38,96,0.04);
  text-align: left;
}
li {
  margin-bottom: .85em;
}

/* Hyperlinks – keep normal links simple and readable */
a {
  color: #d72660;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font-weight: 600;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #a42657;
}

/* Volunteering section links (optionally separated, for clarity) */
.vol-link {
  color: #d72660;
  font-weight: 600;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  transition: color .2s;
}
.vol-link:hover {
  color: #a42657;
  text-decoration: underline;
}

/* PROJECT AND HISTORY CARDS STYLES */
.history-card {
  background: #fbeaf2;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(215,38,96,0.06);
  color: #a42657;
  margin: 2rem 0 2.7rem 0;
  padding: 1.7rem 1.5rem 1.2rem 1.5rem;
}
.history-card h2 {
  margin: 0 0 .6em 0;
  color: #d72660;
  font-size: 1.22em;
  font-weight: 700;
  text-align: center;
}
.history-card ul {
  padding-left: 1.2em;
  margin: 0.7em 0 .1em 0;
  list-style-type: disc;
}
.history-card li {
  background: none;
  color: #a42657;
  border: none;
  box-shadow: none;
  padding: 0 0 .18em 0;
  margin: 0 0 .4em 0;
  font-size: 1em;
}
.project-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.project-card {
  margin-bottom: 2rem;
  padding: 1.5rem 1rem 1rem 1rem;
  background: #fbeaf2;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  color: #d72660;
  box-shadow: 0 2px 8px rgba(215,38,96,0.04);
}
.project-card p {
  color: #a42657;
  margin: 0.5rem 0 0.5rem 0;
}

/* NAV and LINK LISTS ON INDEX */
nav {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Main navigation/text "links" on index */
.link {
  display: block;
  padding: 0.9rem 1.1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  color: #d72660;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s, box-shadow .2s;
  margin: 0 auto;
  max-width: 480px;
}
.link:hover,
.link:focus {
  background: #fbeaf2;
  color: #a42657;
  box-shadow: 0 1px 6px rgba(215,38,96,0.09);
}

/* BUTTONS (distinct from links) */
.art-btn {
  display: inline-block;
  background-color: #e35d6a;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  font-size: 1em;
  border: none;
  box-shadow: 0 2px 8px rgba(215,38,96,0.04);
  cursor: pointer;
  margin-bottom: 0.6em;
  transition: background .3s, transform .15s;
}
.art-btn:hover {
  background: #d14656;
  transform: translateY(-2px);
}
.back-link {
  display: inline-block;
  color: #e35d6a;
  background-color: transparent;
  border: none;
  text-decoration: none;
  font-size: 1em;
  margin-top: 2.4em;
  padding: 0;
  border-radius: 999px;
  font-weight: 600;
  transition: color .2s;
}
.back-link:hover {
  color: #a42657;
  text-decoration: underline;
}

/* Social media button colors (for .social-button on index) */
.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.3s, transform 0.2s;
}
.social-button i {
  font-size: 1.1rem;
}
.social-button:hover {
  transform: translateY(-2px);
}
.social-button.email {
  background-color: #e35d6a;
}
.social-button.email:hover {
  background-color: #d14656;
}
.social-button.linkedin {
  background-color: #0077b5;
}
.social-button.linkedin:hover {
  background-color: #005582;
}

/* Gallery styles */
#gallery {
  display: none;
  margin-top: 1.4rem;
  text-align: center;
}
#gallery img {
  max-width: 185px;
  height: auto;
  border-radius: 14px;
  margin: 0.5em;
  box-shadow: 0 1px 8px rgba(215,38,96,0.13);
  border: 2px solid #fbeaf2;
}

