/* Gallery Page Styles */
.gallery-hero {
  padding: 80px 0;
  background-color: var(--background-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.gallery-hero.miami::before {
  background-image: url("../assets/images/miami-hero.jpg");
}

.gallery-hero.la::before {
  background-image: url("../assets/images/la-hero.jpg");
}

.gallery-hero.ny::before {
  background-image: url("../assets/images/ny-hero.jpg");
}

.gallery-hero .container {
  position: relative;
  z-index: 1;
}

.gallery-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.gallery-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.location-info {
  padding: 60px 0;
  background-color: var(--background-color);
}

.location-info-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.location-info h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.location-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.gallery-section {
  padding: 60px 0;
  background-color: var(--background-dark);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}

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

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

.cta-section {
  padding: 80px 0;
  background-color: var(--background-color);
  text-align: center;
}

.cta-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-hero h1 {
    font-size: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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

