﻿/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ========================
   Global Text & Body Styling
   ======================== */
body, p, ul li, ol li {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    color: #2b2b2b !important; /* Dark Charcoal */
    background-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --h4-color: #008EE5; /* Bright Blue */
    --code-background: #E9E9E9 !important; /* Light Gray */
    --text-highlight-bg: transparent;
    --hr-thickness: 1px;
}

.site-body-left-column,
.site-body-right-column {
    font-size: 15px !important;
}

    .site-body-left-column .site-body-left-column-inner {
        margin-left: inherit;
    }

.backlinks .internal-link {
    text-decoration: none;
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.8 !important;
}

@media (max-width: 750px) {
    a.site-header-logo {
        display: none;
    }
}

/* ========================
   Headings
   ======================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif !important;
}

h1 {
    font-weight: 600;
    color: #F58223 !important; /* Orange */
}

h2 {
    font-weight: 600;
    color: #008EE5 !important; /* Bright Blue */
}

h3 {
    font-weight: 500;
    color: #14274E !important; /* Dark Navy */
}

h4::before {
    content: "> ";
    color: #3F1C83; /* Deep Purple */
}

h4 {
    font-weight: 500;
    color: #3F1C83 !important; /* Deep Purple */
    padding: 5px 10px 5px 0;
}

.el-h4 h4 {
    margin: 0;
    padding: 4px 1px;
    line-height: 1;
}

.el-h4 {
    background-color: transparent;
    padding: 0;
    margin-top: 5px;
}

h4.publish-article-heading {
    margin-top: 15px !important;
}

/* ========================
   Links
   ======================== */
a {
    text-decoration: none !important;
    transition: color 0.3s ease-in-out !important;
    font-weight: 500 !important;
}

    a:hover {
        color: white !important; /* White */
        text-decoration: underline !important;
    }

.outline-view .tree-item-inner {
    color: #14274E !important; /* Dark Navy */
}

.outline-view-outer .tree-item-children {
    border-left: none;
}

.nav-view-outer .tree-item-self.mod-active {
    background-color: #008EE5; /* Bright Blue */
    border-left: 2px solid #F58220; /* Orange (variant) */
}

.nav-view-outer .tree-item-self:hover:not(.mod-collapsible):not(.mod-active) {
    border-left: none;
}

.outline-view-outer .tree-item-self.mod-active {
    color: #F58220 !important; /* Orange */
    border-left: none !important;
}

    .outline-view-outer .tree-item-self.mod-active:hover {
        color: #F58220 !important; /* Orange */
    }

.markdown-rendered a {
    color: #F58220 !important; /* Orange */
}

/* ========================
   Other Element Styling
   ======================== */
.is-flashing {
    background-color: none !important;
}

.site-body-right-column .site-body-right-column-inner {
    margin: 0 10px !important;
}

/* ========================
   Sidebar Styling
   ======================== */
.site-body-left-column {
    padding: 24px 15px 0 15px;
    background-color: #14274E; /* Dark Navy */
    color: #FFF !important; /* White */
    width: 406px !important;
}

a.site-body-left-column-site-name {
    display: none;
}

.nav-view-outer .tree-item-self a {
    color: white; /* White */
}

.tree-item-inner {
    color: #F58220 !important; /* Orange */
}

.nav-view-outer .tree-item-self:not(.mod-collapsible) {
    border-left: none;
}

.nav-view-outer .tree-item-children .tree-item-children .tree-item-children {
    border-left: none;
}

.tree-item-children {
    border-left: 2px solid #14274E; /* Dark Navy */
    padding-left: 5px;
}

.outline-view-outer .tree-item-self.mod-active {
    color: #F58220 !important; /* Orange */
    border-left: 2px solid #F58220; /* Orange */
}

/* Sidebar responsiveness */
.published-container {
    --sidebar-left-width: 420px !important;
    --nav-item-border-color-hover: #F58220; /* Orange */
    --logo-max-height: 45px;
    --page-title-size: 2.1em;
    --logo-height: 30px;
    --line-height-tight: 1.5;
}

@media screen and (max-width: 750px) {
    .published-container.has-navigation.is-left-column-open .site-body-left-column {
        transform: translateX(0);
        background-color: #14274E; /* Dark Navy */
    }
}

/* ========================
   Markdown Styling
   ======================== */
.markdown-rendered {
    color: #333 !important; /* Dark Gray */
}

    .markdown-rendered a {
        color: #008EE5 !important; /* Bright Blue */
        font-weight: bold;
    }

    .markdown-rendered code {
        font-family: var(--font-monospace) !important;
        background-color: #EBF5FF; /* Light Sky Blue */
        padding: 2px 4px;
        border-radius: 3px;
    }

/* ========================
   Footer
   ======================== */
.site-footer a {
    visibility: hidden;
}

/* ========================
   Checkmarks & Lists
   ======================== */
.checkmark {
    color: #00C853 !important; /* Bright Green */
    font-weight: bold;
}

/* List Styling */
ul, ol {
    list-style-type: disc !important;
    padding-left: 5px !important;
    margin-left: 0 !important;
    margin: 10px 0 !important;
}

    ul li, ol li {
        padding-left: 5px !important;
        margin-bottom: 8px !important;
    }

        ul li strong, ol li strong {
            font-weight: 600 !important;
            color: inherit !important;
        }

ol {
    list-style-type: decimal !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* ========================
   Buttons
   ======================== */
button, .btn {
    background-color: #F58220 !important; /* Orange */
    color: white !important; /* White */
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

    button:hover, .btn:hover {
        background-color: #D9534F !important; /* Dark Red */
    }

/* ========================
   Navigation & Misc
   ======================== */
.site-body-left-column-site-logo {
    text-align: left;
}

.site-body-left-column-site-name {
    padding: 4px 16px 11px 0;
    color: #008EE5 !important; /* Bright Blue */
}

    .site-body-left-column-site-name:hover {
        color: #008EE5 !important; /* Bright Blue */
        text-decoration: none !important;
    }
/*
pre.skill-description {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
}*/

.skill-description-block {
    font-family: 'Poppins', sans-serif !important;
}

    .skill-description-block pre {
        font-family: 'Poppins', sans-serif !important;
    }
