/*
Theme Name: Crossing Boundaries
Description: Official theme for the Durham & UFRJ internationalisation project.
Author: Cesimar xavier
Version: 1.0.0
Text Domain: crossingboundaries
*/

.skip-to-content {
    position: absolute;
    top: -999px;
    left: 50%;
    transform: translateX(-50%);
    background: #68246D;
    color: white;
    padding: 1rem;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Hide scrollbar but keep functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.image-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(104, 36, 109, 0.9) 100%);
}

/* Cursor Styles for Dragging */
.cursor-grab {
    cursor: grab;
}

.cursor-grabbing {
    cursor: grabbing;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Filter Button Active State */
.filter-btn.active {
    background-color: #68246D;
    color: white;
    border-color: #68246D;
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}