/* ============================================================
   GLOBAL DEFAULTS
   ============================================================ */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000000;
  color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

footer {
  text-align: center;
  color: #888888;
  margin-top: 40px;
  padding-bottom: 40px;
}

/* ============================================================
   NAVIGATION (nav.html)
   ============================================================ */
.nav-center {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #003399;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 12px 0;
}

.nav-center li {
  display: inline-flex;
  align-items: center;
}

.nav-center a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
}

.nav-center a:hover {
  text-decoration: underline;
}

.nav-center .social-icons img {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}

/* ============================================================
   HOME PAGE (index.htm)
   ============================================================ */
body.home {
  background-color: #000000;
  color: #ffffff;
}

/* Header logo */
body.home .header-logo img {
  margin: 20px auto;
}

/* Image rows */
body.home .image-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px auto;
  width: 90%;
  max-width: 1200px;
}

/* First row extra spacing */
body.home .first-row {
  margin-top: 40px;
}

/* Middle logo */
body.home .middle-logo {
  max-width: 300px;
}

/* Wide header */
body.home .wide-header {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================================
   PHOTOS HOME PAGE (Photos.htm)
   ============================================================ */
/* Match banner spacing on Photos Home page */
.photos-page header img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
}


.photos-page {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  color: #ffffff;
}

/* Page wrapper if used */
.photos-page .page-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* Photo gallery grid */
.photos-page .photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* Photo images */
.photos-page .photo-gallery img {
  border: 3px solid #003399;
  transition: transform 0.2s ease-in-out;
}

.photos-page .photo-gallery img:hover {
  transform: scale(1.05);
}

/* Photo links */
.photos-page .photo-link {
  color: #ffffff;
  text-decoration: underline;
}

.photos-page .photo-link:hover {
  color: #cccccc;
}
