* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #1d3557;
  padding: 1.5rem 0 1rem 0;
  display: flex;
  justify-content: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img-placeholder {
  width: 240px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(30,40,80,0.05);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  justify-content: center;
}

.gallery-item {
  display: block;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(30,40,80,0.10);
  transition: transform 0.12s;
}

.gallery-item:hover {
  transform: scale(1.04);
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  display: block;
}

.gallery-caption {
  padding: 1rem 1rem 0.7rem 1rem;
  background: #111;
  font-size: 1.08rem;
  text-align: left;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .gallery {
    gap: 1.2rem;
  }
  .gallery-caption {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .logo-img-placeholder {
    width: 120px;
    height: 60px;
  }
  .gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100vw;
  }
  .gallery-item {
    width: 98vw;
    max-width: 380px;
    margin: 0 auto;
  }
}
