/* Local Inter Font - Variable Weights (300-700) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/Inter-Variable.woff2') format('woff2');
}
/* Custom Scrollbar Styles for Volunteer Section */
.volunteer-scroll-container {
  scrollbar-width: thin;
  scrollbar-color: #FFA559 rgba(255, 255, 255, 0.2);
}

.volunteer-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.volunteer-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.volunteer-scroll-container::-webkit-scrollbar-thumb {
  background: #FFA559;
  border-radius: 10px;
}

.volunteer-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #B76E2E;
}

/* Smooth scrolling */
.volunteer-scroll-container {
  scroll-behavior: smooth;
}

/* Category Card Hover Effects */
.category-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.category-card.active {
    background-color: rgba(183, 110, 46, 0.1);
    border-left-width: 4px;
    border-left-color: #B76E2E;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Smooth transition for description area */
#selected-category-info {
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-height: 120px;
}

/* Donation button enhancement */
.donation-btn {
    transition: all 0.3s ease;
}

.donation-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 30px -10px rgba(183, 110, 46, 0.4);
}

/* <!-- Add required CSS for line clamping --> */

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

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

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -12px rgba(0,0,0,0.15);
}
/* ============================================
   GURUSTHAN PAGINATION STYLES
   ============================================ */

/* Pagination Container */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

/* Pagination Items */
.pagination .page-item {
    display: inline-block;
    margin: 0 1px;
}

/* Pagination Links */
.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    text-decoration: none;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

/* Hover State */
.pagination .page-link:hover {
    color: #B76E2E;
    background: #FFF7EF;
    border-color: #FFA559;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(183, 110, 46, 0.15);
}

/* Active/Current Page */
.pagination .page-item.active .page-link {
    color: #FFFFFF;
    background: linear-gradient(135deg, #B76E2E, #9B5A24);
    border-color: #B76E2E;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(183, 110, 46, 0.3);
}

/* Disabled State */
.pagination .page-item.disabled .page-link {
    color: #D1D5DB;
    background: #F9FAFB;
    border-color: #E5E7EB;
    cursor: not-allowed;
    pointer-events: none;
}

/* Previous & Next Arrows */
.pagination .page-link .arrow-icon {
    font-size: 12px;
}

/* Pagination Info Text */
.pagination-info {
    text-align: center;
    font-size: 13px;
    color: #6B7280;
    margin-top: 8px;
}

/* ============================================
   ALTERNATIVE STYLE 1 - Rounded Pills
   ============================================ */
.pagination.pill-style .page-link {
    border-radius: 50px;
    min-width: 40px;
}

/* ============================================
   ALTERNATIVE STYLE 2 - Minimal Lines
   ============================================ */
.pagination.line-style .page-link {
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    min-width: auto;
    padding: 8px 14px;
}
.pagination.line-style .page-item.active .page-link {
    background: transparent;
    color: #B76E2E;
    border-bottom-color: #B76E2E;
    box-shadow: none;
}

/* ============================================
   ALTERNATIVE STYLE 3 - Dark Theme
   ============================================ */
.pagination.dark-style .page-link {
    background: #2C1A12;
    color: #FFF9F0;
    border-color: #4A3728;
}
.pagination.dark-style .page-link:hover {
    background: #3D2518;
    border-color: #B76E2E;
}
.pagination.dark-style .page-item.active .page-link {
    background: linear-gradient(135deg, #B76E2E, #FFA559);
    border-color: #B76E2E;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 576px) {
    .pagination .page-link {
        min-width: 30px;
        height: 30px;
        font-size: 12px;
        padding: 0 8px;
        border-radius: 6px;
    }
    
    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link {
        min-width: 30px;
    }
}

/* ============================================
   PAGINATION CONTAINER WRAPPER
   ============================================ */
.pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

/* Showing X of Y results */
.pagination-summary {
    font-size: 12px;
    color: #9CA3AF;
    margin-bottom: 12px;
}

/* ============================================
   ANIMATION FOR ACTIVE PAGE
   ============================================ */
.pagination .page-item.active .page-link {
    animation: paginationPopIn 0.3s ease-out;
}

@keyframes paginationPopIn {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ============================================
   FIRST & LAST PAGE BUTTONS
   ============================================ */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Ellipsis (...) Style */
.pagination .page-item.disabled .page-link.ellipsis {
    border: none;
    background: transparent;
    color: #9CA3AF;
}