/* Custom Styles for RelateMe Society Portal */

/* 1. Global & Font Defaults */
:root {
    --primary-blue: #2563eb;
    --primary-emerald: #059669;
    --bg-light: #f9fafb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-light);
}

/* 2. Navigation Blur Effect */
.nav-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* 3. Hero & Image Styles */
.hero-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}

.profile-shadow {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 4. Member List Improvements */
/* This ensures your Nagpur/Chandrapur member lists look uniform */
.member-item {
    transition: background-color 0.2s ease;
}

.member-item:hover {
    background-color: #f3f4f6;
    border-radius: 8px;
}

.initials-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    flex-shrink: 0;
}

/* 5. Progress Bars */
.progress-bar-bg {
    background-color: #e5e7eb;
    border-radius: 9999px;
    height: 0.625rem;
    width: 100%;
}

.progress-bar-fill {
    background-color: var(--primary-blue);
    height: 100%;
    border-radius: 9999px;
    transition: width 1s ease-in-out;
}

/* 6. Card Hover Animations */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* 7. Footer Styles */
.footer-link {
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #60a5fa;
}



/* Update your body style in style.css */
body {
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
    line-height: 1.6;
}

/* Specific styling for the history section cards */
#history .bg-white {
    transition: transform 0.3s ease;
}

#history .bg-white:hover {
    transform: translateY(-5px);
}