.lightbox-desc {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222c;
  color: #eaeaea;
  font-size: 1.15rem;
  padding: 1rem 2rem;
  text-align: center;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  letter-spacing: 0.02em;
  z-index: 10002;
  backdrop-filter: blur(2px);
}
/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
}
.lightbox-img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(142,197,255,0.35);
}
.lightbox-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 10001;
  transition: color 0.2s;
}
.lightbox-close:hover {
  color: var(--accent);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  width: 100vw;
  pointer-events: none;
}
.lightbox-prev, .lightbox-next {
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  margin: 0 2vw;
  pointer-events: auto;
  user-select: none;
  transition: color 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover {
  color: var(--accent);
}
/* Modern Gallery Grid */
.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}


.gallery-item {
  width: 22vw;
  max-width: 220px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(142,197,255,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  background: #222;
}

.gallery-item:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 24px rgba(142,197,255,0.35);
  z-index: 2;
}
:root {
  --bg-color: #0b0f19;
  --bg-secondary: #111726;
  --accent: #8ec5ff;
  --accent-glow: rgba(142, 197, 255, 0.6);
  --text: #eaeaea;
  --text-muted: #aaa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg-color);
  color: var(--text);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-secondary);
  padding: 1rem 2rem;
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent);
}

.logo {
  display: flex;          /* side-by-side layout */
  align-items: center;    /* vertical centering */
}

.logo img {
  height: 50px;           /* adjust size if needed */
  margin-right: 10px;     /* space between logo and title */
}

.tag {
  color: var(--text-muted);
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent);
}

#hero {
  background: url('media/hero-bg.png') center/cover no-repeat;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
}

#hero h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

#hero p {
  color: var(--text-muted);
}

main {
  padding: 2rem;
}

.content {
  max-width: 1000px;
  margin: auto;
  padding: 2rem 0;
}

.content h2 {
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
  font-family: 'Orbitron', sans-serif;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px var(--accent-glow);
}

.officers {
  display: grid;
  gap: 1rem;
}

.officer {
  background: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
}

footer {
  text-align: center;
  padding: 1rem;
  background: var(--bg-secondary);
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 2rem;
}