/* Gallery Page Styles */

.gallery-header {
  padding: 180px 0 80px;
  background-color: #F8FAFC;
  background-image: 
    linear-gradient(rgba(248, 250, 252, 0.3), rgba(248, 250, 252, 0.5)),
    url('../images/img10.jpg');
  background-size: cover;
  background-position: center;
}

.gallery-header h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.gallery-header p {
  font-size: 1.15rem;
  color: var(--text-main);
  max-width: 700px;
}

.filters-wrapper {
  background: var(--bg-white);
  padding-top: 60px;
  padding-bottom: 60px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  background: var(--bg-light);
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: var(--bg-border);
}

.filter-btn.active {
  background: var(--primary-blue);
  color: var(--text-light);
}

.gallery-grid-section {
  padding: 0 0 100px;
  background: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Dark CTA */
.dark-cta {
  padding: 100px 0;
  background: var(--bg-light);
}

.dark-cta-card {
  background: var(--dark-navy);
  color: var(--text-light);
  padding: 80px 40px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.dark-cta-card h2 {
  color: var(--text-light);
  font-size: 3rem;
  margin-bottom: 24px;
}

.dark-cta-card p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

@media (max-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .dark-cta-card h2 { font-size: 2.25rem; }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
