/*--------------------------------------------------------------
# Gallery Page Styles
--------------------------------------------------------------*/

/* Gallery Hero Section */
.gallery-hero-section {
  padding-top: 3rem;
}

.section-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.gallery-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.gallery-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

/* Gallery Filter Section */
.gallery-filter-section {
  padding-top: 0;
}

.isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.isotope-filters li {
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--surface-color);
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.isotope-filters li:hover,
.isotope-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Gallery Items */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

/* Call to Action Section */
.gallery-cta-section {
  padding-bottom: 5rem;
}

.cta-box {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 90%),
    color-mix(in srgb, var(--accent-color), transparent 95%)
  );
  border-radius: 20px;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.cta-button {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .gallery-main-title {
    font-size: 2rem;
  }

  .gallery-description {
    font-size: 1rem;
  }

  .isotope-filters li {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-description {
    font-size: 1rem;
  }
}
