/* Page Header */
.page-header {
  text-align: center;
  padding: 60px 20px 30px;
  background: linear-gradient(to right, #f5f5f5, #ffffff);
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.page-header p {
  font-size: 1.1rem;
  color: #666;
}

/* Filter Buttons */
.filter-controls {
  text-align: center;
  margin: 30px 0;
}
.filter-btn {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background: #eee;
  color: #333;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: #ff5e57;
  color: #fff;
}

/* Masonry Gallery */
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
  padding: 20px;
}
.gallery-item {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  break-inside: avoid;
  animation: fadeIn 0.6s ease-in-out forwards;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 12px;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}
.gallery-item:hover .overlay {
  opacity: 1;
}

/* Video Showcase */
.video-showcase {
  text-align: center;
  padding: 60px 20px;
  background: #f8f8f8;
}
.video-showcase h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.video-showcase p {
  color: #666;
  margin-bottom: 30px;
}
.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: auto;
}
.video-wrapper video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid { column-count: 2; }
}
@media (max-width: 600px) {
  .gallery-grid { column-count: 1; }
}

/* Testimonials */
.testimonials {
  background: #fff5f5;
  padding: 60px 20px;
  text-align: center;
}
.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.testi-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testi-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-5px);
}
.testi-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
}
.testi-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff5e57;
}
/* Lightbox */
#lightbox {
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
}
#lightbox.active {
  display: flex;
}
#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}
