/*
Theme Name: Academic Persona
Theme URI: https://shabbirshowne.com/academic-persona
Author: Shabbir Showne
Author URI: https://shabbirshowne.com
Description: A minimalist, professional academic portfolio for researchers. Features deep navy accents, refined serif typography, and a modern academic aesthetic.
Version: 1.1.0
Text Domain: academic-persona
License: All Rights Reserved - Developed by Shabbir Showne. Unauthorized copying, modification, or distribution is strictly prohibited without explicit written permission from the developer.
Tags: portfolio, academic, minimalist, blog, education, research, social-sciences
*/

/* --- Base Variables & Core Styling --- */
:root {
    --academic-navy: #001B3D;
    --academic-slate: #4A4A4A;
    --academic-soft: #F4F7FF;
    --academic-purple: #D8D4F2;
    --academic-white: #FFFFFF;
}

/* Sticky Footer Layout */
body {
    background-color: var(--academic-white);
    color: var(--academic-slate);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--academic-navy);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* --- Layout Utilities --- */
html {
    scroll-behavior: smooth;
}

::selection {
    background-color: var(--academic-navy);
    color: var(--academic-white);
}

/* --- Bibliography Styling --- */
.biblio-indent {
    padding-left: 2rem;
    text-indent: -2rem;
    line-height: 1.8;
}

/* --- Animations --- */
@keyframes slideDown {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.animate-slideDown {
    animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}

/* Post Excerpt Fixes */
.prose p {
    margin-bottom: 1.5rem;
}
