/*
Theme Name: Sanatan Theme
Theme URI: https://thesanatandharma.in
Author: Principal Architect
Description: Modern, minimal, spiritual theme for Sanatan Dharma platform.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: sanatan-theme
*/

/* WordPress Native Pagination UI */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.nav-links .page-numbers:hover {
    background: #fff7ed;
    color: #ea580c;
    border-color: #fdba74;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234,88,12,0.15);
}
.nav-links .page-numbers.current {
    background: linear-gradient(135deg, #9f1239 0%, #ea580c 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(159,18,57,0.3);
}
.nav-links .dots {
    border: none;
    background: transparent;
    box-shadow: none;
    color: #94a3b8;
}

/* Header Neumorphic Hover Effects */
.sanatan-nav-menu li {
    list-style: none;
}
.sanatan-nav-menu a {
    position: relative;
    padding: 8px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-block;
    color: inherit;
    text-decoration: none;
}
.sanatan-nav-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.15), inset -2px -2px 6px rgba(255, 255, 255, 0.1);
}
.sanatan-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 2px;
    background: #fde047; /* Bright Saffron/Yellow underline */
    transition: width 0.3s ease;
}
.sanatan-nav-menu a:hover::after {
    width: 50%;
}
