:root {
  --pink: #ffbbea;
  --black: #000001;
}

.fun-hero {
  background: var(--black);
  padding: 3.5rem 0 2.5rem;
  color: white;
  text-align: center;
}

.fun-title {
  font-family: 'Antonio', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 0.25rem;
  color: var(--pink);
}

.fun-subtitle {
  font-family: 'TT Bricks Trial', sans-serif;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

/* Section headings */
.memory-header {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin: 3rem 0 1.75rem;
}

/* Uniform image boxes */
.memory-box {
  aspect-ratio: 4 / 5;
  background: #f5f5f5;
  overflow: hidden;
  border-radius: 10px;
  max-width: 500px;
}

.memory-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* Captions */
.caption {
  font-size: .95rem;
  color: #444;
  margin-top: .5rem;
  font-style: italic;
}

/* Videos use same ratio box */
.video-box {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Section spacing */
.memory-section {
  margin-bottom: 3rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e8e8e8;
  padding: 1.5rem 0 2rem;
}
.footer-line {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.footer-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.footer-btn {
  background: var(--pink);
  color: var(--black);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: none;
}
.footer-btn:hover {
  background: #ff5aa9;
}
.footer-btn.hollow {
  background: #fff;
  border: 1px solid #333;
}
.footer-btn.hollow:hover {
  background: #f9f9f9;
}
