@charset "UTF-8";

/* Custom Utilities */
body {
    background-color: #F9F7F1;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Dropcap */
.drop-cap::first-letter {
    float: left;
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    line-height: 0.8;
    font-weight: 700;
    padding-right: 0.5rem;
    padding-top: 0.2rem;
    color: #800020;
}

/* Fade In Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F0EBE0;
}

::-webkit-scrollbar-thumb {
    background: #800020;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5D0917;
}

/* Sticky Table of Contents */
.sticky-toc {
    position: sticky;
    top: 6rem;
    /* Adjust based on header height */
    align-self: flex-start;
    /* Important for flexbox containers */
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
}

.sticky-toc a {
    display: block;
    padding: 0.5rem 0;
    color: #5D0917;
    /* burgundy-800 */
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s;
    border-left: 2px solid transparent;
    padding-left: 1rem;
}

.sticky-toc a:hover,
.sticky-toc a.active {
    color: #800020;
    /* burgundy */
    border-left-color: #D4AF37;
    /* gold-400 */
    background-color: rgba(128, 0, 32, 0.05);
}

/* APA Reference Formatting */
.apa-reference {
    padding-left: 2em;
    text-indent: -2em;
    margin-bottom: 1em;
    font-family: 'Merriweather', serif;
    font-size: 0.9em;
    line-height: 1.6;
}

/* Justify Text Optimization */
.text-justify-inter-word {
    text-justify: inter-word;
}

/* Hero Gradient */
.hero-gradient {
    background: linear-gradient(to right, #FFF5F7, #FFFBEB);
}