/* ====== SIGHTS ====== */
.sights-slider-wrapper {
    max-width: 100%;
    overflow: hidden;
}

.sights-slider .slick-list {
    margin: 0 -15px;
}

.sights-slider .slick-slide {
    padding: 0 15px;
    width: 33.333% !important;
    /* Force 3 columns on large screens */
}

.sights-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.sight-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sight-card {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.sight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sight-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.sight-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sight-card:hover .sight-image img {
    transform: scale(1.05);
}

.sight-content {
    position: relative;
}

.sight-title {
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.sight-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Controls Styles */
.sights-controls {
    margin-top: 2rem !important;
}

.sights-progress-container {
    flex: 1;
    max-width: 200px;
}

.sights-progress-bar {
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.sights-progress-fill {
    height: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

.sights-arrows {
    display: flex;
    gap: 10px;
}

.sights-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid #333;
    background: white;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sights-arrow:hover {
    background: #333;
    color: white;
    transform: scale(1.1);
}

.sights-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.sights-arrow:disabled:hover {
    background: white;
    color: #333;
}

/* Responsive Design */
@media (min-width: 992px) {
    .sights-slider .slick-slide {
        width: 33.333% !important;
    }
}

@media (max-width: 991px) {
    .sights-slider .slick-slide {
        width: 100% !important;
    }

    .sight-image {
        height: 220px;
    }

    .sights-controls {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .sights-progress-container {
        max-width: 150px;
    }

    .sights-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .sight-content {
        padding: 15px !important;
    }
}

/* ======== GALLERY ========== */
.gallery-container {
    position: relative;
    min-height: 80vh;
}

.gallery-title {
    text-align: center;
    margin-bottom: 60px;
    color: white;
    font-weight: 300;
    font-size: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.gallery-subtitle {
    text-align: center;
    margin-bottom: 80px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.main-slider {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.slide-item {
    padding: 0;
    outline: none;
}

.image-container {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.image-container:hover {
    transform: translateY(-10px) scale(1.02);
}

.slide-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.7s ease;
    /* Re-added transition */
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
}

.image-container:hover .slide-image {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2) saturate(1.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(13, 13, 15, 0.8), rgba(20, 20, 20, 0.8));
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.image-container:hover .overlay-content {
    transform: translateY(0);
}

.overlay-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.overlay-description {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

.thumbnail-slider {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.thumb-item {
    padding: 0 8px;
    outline: none;
    cursor: pointer;
}

.thumb-container {
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    backdrop-filter: blur(5px);
}

.thumb-container:hover {
    transform: scale(1.05);
}

.thumb-container.active {
    border-color: rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.thumb-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.thumb-container:hover .thumb-image {
    transform: scale(1.1);
}

.slick-prev,
.slick-next {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px !important;
    color: white !important;
    opacity: 1 !important;
}

.slick-prev {
    left: 30px !important;
}

.slick-next {
    right: 30px !important;
}

.slick-dots {
    bottom: -60px !important;
}

.slick-dots li button:before {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
    color: white !important;
    transform: scale(1.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 2rem;
    }

    .slide-image {
        height: 300px;
    }

    .slick-prev,
    .slick-next {
        width: 40px !important;
        height: 40px !important;
    }

    .slick-prev {
        left: 15px !important;
    }

    .slick-next {
        right: 15px !important;
    }
}


.no-posts-message {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    padding: 60px 20px;
}