/* Site Styles for Newspaper System */

@font-face {
    font-family: 'Faruma';
    src: url('/fonts/Faruma.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Waheed';
    src: url('/fonts/Waheed.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Faruma', sans-serif;
}

.thaana-text {
    font-family: 'Waheed',  sans-serif;
    direction: rtl;
    text-align: right;
    line-height: 1.8;
    word-spacing: 0.2em;
    letter-spacing: 0.05em;
}

.english-text {
    direction: ltr;
}

.search-overlay {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
}

.search-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.nav-link-hover {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link-hover::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: #006045;
    transition: all 0.3s ease;
}

.nav-link-hover:hover::after {
    width: 100%;
    left: 0;
}

.mobile-menu-slide {
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu-slide.active {
    transform: translateY(0);
    opacity: 1;
}

.search-input-focus {
    box-shadow: 0 0 20px rgba(115, 238, 176, 0.3);
}

.category-hero {
    background: linear-gradient(135deg, #006045 0%, #004d3a 100%);
}

.article-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #006045;
}

.category-badge {
    background: linear-gradient(135deg, #006045, #004d3a);
}

.breadcrumb-item {
    position: relative;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    position: absolute;
    right: -20px;
    color: #6b7280;
}
