
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background: #f8f8f8;
  padding: 10px;
}

/* Center logo and put navigation under it */
.logo-container {
  text-align: center;
  margin-bottom: 10px;
}

.logo {
  width: 400px;
  height: auto;
}

header nav {
  text-align: center;
}

header nav ul {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

header nav ul li {
  display: inline;
  margin: 0 10px;
}

header nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.mission {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  text-align: center;
  background: linear-gradient(135deg, #e6f9f9, #ffffff);
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.mission h2 {
  color: #2ca6a4; /* teal */
  margin-bottom: 20px;
  font-size: 2em;
}

.mission p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #333;
}

/* Logo band (teal) */
.header-top {
  background-color: #2ca6a4; /* teal */
  padding: 30px 0;
  text-align: center;
  margin: 0;
  width: 100%;
}

.header-top {
  background-color: #2ca6a4; /* teal */
  padding: 30px 0;
  text-align: center;
  margin: 0;
  width: 100vw;   /* span full viewport width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Navigation bar (white background) */
.header-nav {
  background-color: #ffffff; /* white strip */
  padding: 10px 0;
  text-align: center;
}

.header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 10px;
}

.header-nav ul li {
  margin: 0;
  padding: 0;
}

.header-nav ul li a {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  background-color: #2ca6a4; /* teal default */
  color: #ffffff;            /* white text always */
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  transition: background-color .2s ease, transform .2s ease;
}

.header-nav ul li a:hover,
.header-nav ul li a:focus {
  background-color: #1d7d7b; /* darker teal on hover */
  color: #ffffff;
  transform: translateY(-2px);
}

.header-nav ul li a:active {
  background-color: #1d7d7b; /* pressed state */
  color: #ffffff;
}

/* Active/current page highlight */
.header-nav ul li a.active {
  background-color: #1d7d7b; /* darker teal when active */
  color: #ffffff;
  font-weight: bold;
}

/* Ensure body has no margin interfering */
body {
  margin: 0;
  padding: 0;
}

.site-footer {
  background-color: #2ca6a4; /* teal */
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 4px solid #22b6b3; /* aqua accent */
}

.site-footer a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}

.site-footer a:hover {
  color: #e6f9f9; /* light aqua on hover */
}

.about-section {
    max-width: 800px;        /* controls the width of the text block */
    margin: 0 auto;          /* centers the block horizontally */
    text-align: left;      /* centers the text inside the block */
    padding: 20px;           /* optional: space inside the block */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* optional: subtle shadow */
    background: linear-gradient(135deg, #e6f9f9, #ffffff);
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.about-section h1, 
.about-section h2 {
  color: #2ca6a4;
  text-align: center;
  margin-bottom: 10px;
}

.about-section blockquote {
  background-color: #f2fafa;
  border-left:15px solid #2ca6a4;
  padding-left: 15px;
  margin: 10px 10;
  font-style: italic;
  color: #333;
}

.about-section a {
  color: #2ca6a4;
  font-weight: bold;
  text-decoration: none;
}

.about-section a:hover {
  text-decoration: underline;
}
.about-photos {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: nowrap; /* don't wrap by default */
}

.about-photos figure {
  flex: 0 0 45%; /* lock width at about half */
  max-width: 400px;
  text-align: center;
}

.about-photos img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.about-photos figcaption {
  margin-top: 8px;
  font-size: 0.9em;
  color: #555;
  font-style: italic;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.gallery figcaption {
  text-align: center;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #444;
}
/* Gallery grid */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  margin: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
