/* General styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
}

/* Header styles */
.site-header {
  background-color: #00264d;
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 60px;
  margin-right: 15px;
}

.main-title {
  font-size: 1.5rem;
  margin: 0;
}

/* Gallery section */
.gallery-page {
  padding: 2rem;
  text-align: center;
}

.gallery-page h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Portrait gallery (9:16 images) */
.portrait-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 2rem;
}

.portrait-gallery img {
  width: 180px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.portrait-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Landscape/grid gallery (16:9 images) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: #00264d;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.gallery-page {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-page h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: #003366;
}

.gallery-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px;
}

.image-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.image-card video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.image-card p {
  padding: 10px;
  font-weight: 500;
  font-size: 16px;
  color: #003366;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #003366;
  color: white;
  margin-top: 50px;
}
