/* ============================================
   GLOBAL RESET
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================================
   GLOBAL PAGE STYLING
   ============================================ */
body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
  line-height: 1.5;
  padding: 20px;
}

a {
  color: #00aaff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ============================================
   HEADER / LOGO
   ============================================ */
.header-logo img {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 0 auto;
}

/* ============================================
   CENTERED NAV BAR WITH SOCIAL ICONS
   ============================================ */
nav {
  background: #0000ff;
  padding: 8px 0;
  margin-top: 20px;
}

.nav-center {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.nav-center li a {
  color: #fff;
  background: #0000ff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 1rem;
}

.nav-center li a:hover {
  background: #fff;
  color: #f00;
}

.nav-center .social-icons {
  display: flex;
  gap: 8px;
}

.nav-center .social-icons img {
  width: 32px;
  height: 32px;
  filter: none !important;
  display: block;
}

/* ============================================
   IMAGE ROWS (GLOBAL)
   ============================================ */
.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.image-row img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* ============================================
   WIDE HEADER IMAGE
   ============================================ */
.wide-header img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

/* ============================================
   HOME PAGE — FIRST IMAGE ROW
   ============================================ */
.home .first-row {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 10px 0;
}

.home .first-row img {
  max-width: 260px;
  height: auto;
}

.home .middle-logo {
  height: 140px;
  width: auto;
}

/* ============================================
   HOME PAGE — SECOND ROW
   ============================================ */
.home .image-row:nth-of-type(2) {
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.home .wide-header img {
  max-width: 420px;
}

/* ============================================
   PHOTO GALLERY
   ============================================ */
.photo-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  padding: 20px 0;
}

.photo-gallery img {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 2px solid #333;
}

@media (min-width: 900px) {
  .photo-gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}

.photo-gallery img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Force Lightbox captions to be visible */
.lb-caption {
  color: #fff !important;
  padding: 10px !important;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
}


/* ============================================
   FOOTER
   ============================================ */
footer {
  margin-top: 40px;
  color: #fff;
  font-size: 0.8rem;
}
