* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
}

/* ===== Header Styling ===== */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: #004080;
  color: #fff;
}

.logo {
  font-size: 1.8em;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff9933;
}

/* ===== Hero Section ===== */
.gallery-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('./img10.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2em;
}

/* ===== Gallery Section ===== */
.gallery-section {
  padding: 60px 10%;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h3 {
  font-size: 2em;
  color: #004080;
}

/* ===== Gallery Grid with Figures ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-grid figure {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.gallery-grid figure:hover {
  transform: translateY(-5px);
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 15px;
  font-size: 0.95em;
  color: #444;
  background-color: #f0f0f0;
  text-align: center;
}

/* ===== Footer Styling ===== */
footer {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 20px 10%;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-container .socials img {
  width: 24px;
  margin: 0 8px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s;
}

.footer-container .socials img:hover {
  transform: scale(1.2);
}
