/* Catholic Tamil Songs - Custom Styles */

/* Tamil Font Support */
/* Note: Fonts should be placed in www/fonts/ directory */
/* Using TTF format - ensure NotoSansTamil-Regular.ttf and NotoSansTamil-Bold.ttf exist */

@font-face {
    font-family: 'Noto Sans Tamil';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/NotoSansTamil-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Noto Sans Tamil';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/NotoSansTamil-Bold.ttf') format('truetype');
}

/* Tamil text styling */
.tamil-text {
    font-family: 'Noto Sans Tamil', 'Noto Sans Tamil Fallback', system-ui, -apple-system, sans-serif;
    font-feature-settings: 'kern' 1;
    text-rendering: optimizeLegibility;
}

/* Lyrics display */
.lyrics-content {
    font-family: 'Noto Sans Tamil', system-ui, -apple-system, sans-serif;
    white-space: pre-line;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Category cards */
.category-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
}

/* Navbar brand icon */
.navbar-brand img {
    border-radius: 6px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lyrics-content {
        font-size: 1rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

/* Dark mode support (if enabled later) */
[data-bs-theme="dark"] {
    --bs-body-bg: #1a1a1a;
    --bs-body-color: #e0e0e0;
}

[data-bs-theme="dark"] .card {
    background-color: #2d2d2d;
    border-color: #404040;
}

[data-bs-theme="dark"] .search-result:hover {
    background-color: #2d2d2d;
}
