:root {
  --primary-color: #FFD700;
  --background-dark: #000000;
  --background-light: #ffffff;
  --text-light: #ffffff;
  --text-dark: #000000;
  --font-main: 'Montserrat', sans-serif;
}

/* Hero Section */
.gallery-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem 2rem;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
  font-family: var(--font-main);
}

.gallery-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.gallery-hero p {
  font-size: 1.2rem;
  max-width: 1200px;
  line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background-color: var(--background-light);
  font-family: var(--font-main);
}

/* Gallery Card */
.gallery-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  padding: 0.25rem;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  color: var(--text-dark);
  backdrop-filter: blur(4px);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 85%;
  margin-bottom: 0;
  padding: 0;
  border: none;
  border-radius: 6px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .gallery-card img {
    height: auto;
  }
}

/* Divider */
.divider {
  height: 4px;
  background-color: var(--primary-color);
}
