.swiper-button-next,
.swiper-button-prev {
    color: #CA2E0A;
}

.gradient-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: white;
}

@media (max-width: 768px) {
    .hero-swiper {
        height: 60vh !important;
    }

    .gradient-overlay {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    }
}

.swiper-pagination-bullet {
    background: white;
    border: 2px solid #CA2E0A;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #CA2E0A;
    opacity: 1;
}


.spinner {
    width: 2rem;
    height: 2rem;
    border: 4px solid #e5e7eb; /* gray-200 */
    border-top-color: #4b5563; /* gray-700 */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 50;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.lazy-image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

.gallery-filter-btn {
    padding: 8px 16px;
    border: 2px solid #CA2E0A;
    color: #CA2E0A;
    background-color: transparent;
    border-radius: 9999px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background-color: #CA2E0A;
    color: white;
}

.swiper-button-next,
.swiper-button-prev {
    color: #CA2E0A;
}

/* Style for gallery swiper navigation */
.gallery-content .swiper-button-next,
.gallery-content .swiper-button-prev {
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

.gallery-content .swiper-button-next::after,
.gallery-content .swiper-button-prev::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #CA2E0A;
    opacity: 1;
}