body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; /* default is -16px -bump up */
  line-height: 1.6; /* adds breathing room between lines */
  background-color: #FFF5EE; /* blue for strip color is 1B73A0, but using cream now */
  color: #489CC3; /* blue body text for readibility */
  text-align: center;


  /* Make the page a column so footer can sit at the bottom */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #F0EAE0; /* sandy eggshell header background? */
  color: #F0EAE0;
  padding: 1rem;
  text-align: center;
}

/* Controls logo size */
header .logo {
  width: clamp(220px, 60vw, 520px); /* adjust to desired size- min, fluid, max */
  height: auto;  /* keep proportions  correct */
  display: block;
  margin: 0 auto;
}

/* make all images scale down on small screens */
img { max-width: 100%; height: auto; display: block; }





/* about phtoto styles here */
.about-photo {
  max-width: 900px;  /* adjust to taste  */
  margin: 2rem auto;   /*  center the block   */
  padding: 0 1rem;   /* breathing room on small screens   */
}

.about-photo img {
  border-radius: 12px;  /* optional soften corners */
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);  /* optional subtle depth  */
}

.about-photo figcaption {
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}
/* end about photo section  */



  

nav {
  display: flex;
  justify-content: center;
  background-color: #489CC3; /* matches body for smooth flow test blue top strip lighter blue */
}

nav a {
  color: white;
  text-decoration: none;
  padding: 1rem;
  display: inline-block;
}

nav a:hover {
  background-color: #489CC3; /* lighter teal on hover */
}

/* simple, responsive gallery layout */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  justify-items: center;
}

#gallery img { 
  width: 100%;
  aspect-ratio: 4 / 3;  /* or try 1 / 1 for squares  */
  object-fit: cover;  /* fills the box nicely, crops edges if needed  */
  border-radius: 6px; 
  display: block;
}

/* prevent fixed footer from covering content */
main {
  flex: 1;
}

footer {
  text-align: center;
  background-color: #1B73A0;
  color: white;
  font-size: 14px;    /* smaller text   */
  padding: .5rem .75rem;    /* smaller height */
}

.before-after-gallery {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two equal columns */
  gap: 16px;
  margin-bottom: 24px;
  align-items: start;
}

.image-box h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #489CC3; /* matches my pallete */
}

.image-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/*  optional enforce uniform crop boxes for a cleaner grid. */
.image-box img {
  aspect-ratio: 4 / 3;  /*  remove for more natural heights  */
  object-fit: cover;
}


/*  responsive stack the pair on narrow screens  */
@media (max-width: 700px) {
  .image-pair {
    grid-template-columns: 1fr;
  }
}
