body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #EEE1C6;
  color: #333;
}

/* ---- HEADER ---- */
header {
  background: #154734;
  color: white;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;      /* allows wrapping on mobile */
  justify-content: space-between;
  align-items: center;
}

header nav {
  margin-top: 10px;
}

header nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}

/* ---- BASIC SECTIONS ---- */
.hero {
  padding: 120px 20px;
  text-align: center;
  background: #EEE1C6;
}

.content {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  background: #EEE1C6;
}

/* ---- ABOUT US COLUMNS ---- */
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 20px;
}

/* CARDS */
.about-card {
  background: #154734;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: white;                /* 🔥 makes text white */
}

.about-card h3,
.about-card p {
  color: white;                /* ensures ALL text in card is white */
}

/* ---- FOOTER ---- */
footer {
  background: #154734;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* ---- LOGO ---- */
.logo {
  width: 150px;
  height: auto;
}

/* ---- Headshots ---- */
.head {
  width: 150px;
  height: auto;
}

/* ---- MOBILE OPTIMIZATION ---- */
@media (max-width: 768px) {

  /* Stack columns on mobile */
  .about-columns {
    grid-template-columns: 1fr;
  }

  /* Reduce padding on mobile */
  .content {
    padding: 20px 15px;
  }

  header {
    text-align: center;
    flex-direction: column;
  }

  header nav a {
    margin: 10px;
    display: inline-block;
  }

  .logo {
    width: 120px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.4rem;
  }

  .logo {
    width: 90px;
  }

  .about-card {
    padding: 15px;
  }
}
/* Slideshow */
.slideshow-container {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Caption */
.caption {
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 10px;
  text-align: center;
  border-radius: 0 0 10px 10px;
  font-size: 1.1rem;
}

/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 45%;
  padding: 12px;
  color: white;
  font-size: 24px;
  font-weight: bold;
  user-select: none;
  border-radius: 3px;
  background: rgba(0,0,0,0.3);
}

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.6);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Dots */
.dots-container {
  text-align: center;
  margin-top: 12px;
}

.dot {
  height: 14px;
  width: 14px;
  margin: 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 0.9s;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}
