/* Import shared styles */
@import url('home.css');

/* Gallery page specific styles */
.gallery-hero-section {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 2rem) 0 4rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--text-invert);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/YaahmanWebPicture/img-17.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 117, 26, 0.8), rgba(139, 69, 19, 0.6));
}

 .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            animation: fadeInUp 1s ease;
        }

        .breadcrumb {
            margin-bottom: 20px;
            font-size: 14px;
        }

        .breadcrumb a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--primary-color);
        }

        .breadcrumb span {
            margin: 0 5px;
        }
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}
.hero-content {
  position: relative;
  z-index: 3;   /* stays above overlay */
}

.hero-background,
.hero-overlay {
  z-index: 1;   /* background layers stay behind text */
}

.gallery-hero-section .breadcrumb {
  position: relative;
  z-index: 4;   /* make sure breadcrumb is on top */
}


.title-line {
  display: block;
}

.gallery-hero-section .breadcrumb {
    color: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
}

.gallery-hero-section .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.gallery-hero-section .breadcrumb a:hover {
    color: white;
}

.gallery-hero-section .breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.title-line.highlight {
  color: var(--text-invert);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 1.1s forwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-invert);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
  color: var(--text-invert);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-invert);
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: var(--text-invert);
  margin-bottom: 0.5rem;
}

.scroll-text {
  font-size: 0.8rem;
  font-weight: 500;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Gallery Filters */
.gallery-filters-section {
  padding: 3rem 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}

.filters-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-main);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--text-invert);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

#gallerySearch {
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--bg-surface);
  color: var(--text-main);
  width: 250px;
  transition: all var(--transition-fast);
}

#gallerySearch:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(232, 117, 26, 0.1);
}

.search-icon {
  position: absolute;
  left: 0.8rem;
  color: var(--text-light);
}
/* Gallery Grid */
.gallery-grid-section {
  padding: 4rem 0;
  background: var(--bg-body);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  background: var(--bg-surface);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
  opacity: 0;
  transform: translateY(30px);
  cursor: pointer;
}

.gallery-item.animated {
  animation: fadeInUp 0.8s ease-out forwards;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.gallery-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 117, 26, 0.3), rgba(139, 69, 19, 0.2));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .image-overlay {
  opacity: 1;
}

.gallery-content {
  padding: 1.5rem;
}

.gallery-category {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--bg-highlight);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.gallery-category.wedding { background: rgba(232, 117, 26, 0.1); color: var(--primary-color); }
.gallery-category.corporate { background: rgba(139, 69, 19, 0.1); color: var(--secondary-color); }
.gallery-category.private { background: rgba(255, 179, 71, 0.1); color: var(--accent-color); }
.gallery-category.cocktail { background: rgba(212, 160, 23, 0.1); color: var(--warning-color); }

.gallery-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.gallery-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.gallery-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-light);
}

.gallery-date {
  font-weight: 500;
}

/* Featured Events */
.featured-events-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}

.featured-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.featured-event-card {
  background: var(--bg-body);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-fast);
}

.featured-event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.event-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-event-card:hover .event-image img {
  transform: scale(1.1);
}
/* Gallery Carousel Styles */
.gallery-carousel-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.gallery-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.carousel-slide {
    display: none;
    position: relative;
    height: 500px;
}

.carousel-slide.active {
    display: block;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 3rem;
    z-index: 2;
}

.slide-category {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
    color: white;
}

.slide-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
}

.slide-stats {
    display: flex;
    gap: 2rem;
}

.slide-stats .stat {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: all var(--transition-fast);
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255,255,255,0.5);
}

/* Enhanced Filter Styles */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.search-box {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 117, 26, 0.1);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.5;
}

/* Enhanced Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-fast);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-item.animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.gallery-content {
    padding: 1.5rem;
}

.gallery-category {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.gallery-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    color: var(--text-main);
}
.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-main); /* Add this line */
}

.breadcrumb a {
    color: var(--primary-color); /* Change from var(--text-invert) */
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-color); /* Optional: different hover color */
}

.breadcrumb span {
    margin: 0 5px;
    color: var(--text-light); /* Make the slash separator visible */
}
.gallery-hero-section .breadcrumb {
    color: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
}

.gallery-hero-section .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.gallery-hero-section .breadcrumb a:hover {
    color: white;
}

.gallery-hero-section .breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.gallery-description {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.gallery-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .gallery-carousel {
        height: 400px;
    }
    
    .carousel-slide {
        height: 400px;
    }
    
    .slide-content {
        padding: 2rem;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-prev {
        left: 1rem;
    }
    
    .carousel-next {
        right: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-carousel {
        height: 300px;
    }
    
    .carousel-slide {
        height: 300px;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-title {
        font-size: 1.2rem;
    }
    
    .slide-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        text-align: center;
    }
}

.event-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 117, 26, 0.4), rgba(139, 69, 19, 0.3));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.featured-event-card:hover .image-overlay {
  opacity: 1;
}

.event-content {
  padding: 2rem;
}

.event-category {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--bg-highlight);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.event-category.wedding { background: rgba(232, 117, 26, 0.1); color: var(--primary-color); }
.event-category.corporate { background: rgba(139, 69, 19, 0.1); color: var(--secondary-color); }
.event-category.private { background: rgba(255, 179, 71, 0.1); color: var(--accent-color); }

.event-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.event-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.event-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.event-stats .stat {
  background: var(--bg-highlight);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Lightbox Modal Updates */
.lightbox-image-container {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.lightbox-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 117, 26, 0.2), rgba(139, 69, 19, 0.1));
}

/* Responsive Design Updates */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .event-image {
    height: 200px;
  }
  
  .lightbox-image-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .gallery-image {
    height: 180px;
  }
  
  .event-image {
    height: 180px;
  }
  
  .lightbox-image-container {
    height: 250px;
  }
}
/* Testimonials Section */
.gallery-testimonials-section {
  padding: 6rem 0;
  background: var(--bg-body);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg-surface);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stars {
  color: var(--warning-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 0.9rem;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.author-event {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* CTA Section */
.gallery-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--text-invert);
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: var(--bg-surface);
  border-radius: var(--border-radius);
  overflow: hidden;
  animation: scaleIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2001;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--primary-color);
}

.lightbox-nav.prev {
  left: 1rem;
}

.lightbox-nav.next {
  right: 1rem;
}

.lightbox-image-container {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container .image-placeholder {
  font-size: 6rem;
  color: var(--text-invert);
}

.lightbox-caption {
  padding: 2rem;
}

.lightbox-caption h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.lightbox-caption p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.lightbox-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.lightbox-meta span {
  padding: 0.3rem 0.8rem;
  background: var(--bg-highlight);
  border-radius: 15px;
  color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .filters-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-buttons {
    justify-content: center;
  }
  
  .search-box {
    width: 100%;
  }
  
  #gallerySearch {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-events-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-buttons {
    flex-direction: column;
  }
  
  .filter-btn {
    width: 100%;
    text-align: center;
  }
  
  .lightbox-content {
    max-width: 95%;
    max-height: 95%;
  }
  
  .lightbox-image-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    margin: 0 1rem;
  }
  
  .featured-event-card {
    margin: 0 1rem;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .lightbox-caption {
    padding: 1.5rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}