html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.meaningfulIntro {
    width: 50%;        /* or whatever width you like */
    margin: 0 auto;    /* ← this centers it horizontally */
    padding: 1rem;
    box-sizing: border-box;
}
  
/* optional: keep your text-left or justify as you prefer */
.meaningfulIntro p {
    font-size: clamp(.75rem, 1.75vw, 1.25rem);
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: center;
}

/* container & width cap */
.meaningfulList {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

/* text blocks */
.family-text,
.cam-text {
    font-weight: bolder;  
    max-width: 800px;
    text-align: center;
    margin: 0 auto 1rem;
    padding-bottom: 2vh;
}

/* divider line */
.section-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #ccc;
    margin: 0;
}

/* image wrappers */
.family-group,
.cam-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* responsive fixed-base sizing */
.family-group img,
.cam-group img {
    flex: 0 1 200px;
    max-width: 45%;
    height: auto;
    border-radius: 4px; /* optional */
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    padding: 2rem 0; /* increased vertical padding to lower text */
    margin: 0;
}

footer p {
    margin: 0;
    padding-top: 0.5rem; /* extra space above copyright text */
}
  
/* 1) Add more space above your intro paragraph */
.meaningfulIntro {
  /* if you’d rather push the <p> down inside the box: */
    margin-bottom: 3vh;
}

/* 2) Shrink the Cam images specifically */
.cam-group img {
  /* base 150px, but still responsive */
    flex: 0 1 150px;
    max-width: 30%;
}

/* 3) Separate the Cam section from the footer */
footer {
    margin-top: 3rem;
}   
   
.cam-group img {
  /* base 120px and responsive */
  flex: 0 1 120px;
  max-width: 30%;
}

.section-divider {
  /* extend 10% beyond container on each side */
  width: 120%;
  margin: 0 -10%;
  border-top: 1px solid #ccc;
}

.family-group img,
.cam-group img {
  /* subtle black “neon” glow */
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.7);
}

/* ===== Responsive font sizes ===== */

/* 1) Make your intro text scale nicely */
.meaningfulIntro p {
  font-size: clamp(.6rem, 3.3vw, 1.3rem);
}

/* 2) Keep section paragraphs just a bit smaller than the intro */
.family-text,
.cam-text {
  font-size: clamp(.4rem, 2.5vw, .9rem);
  line-height: 1.5;
}

/* Initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When scrolled into view */
.reveal-visible {
  opacity: 1;
  transform: none;
}
