/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Song+Myung&display=swap');
</style>

/* General Styles */
body {
    background: #FEF9F2;
    font-family: "Poppins", sans-serif;
}

/* Navigation & Header */
.navbar .navbar-inner {
    background: #FEF9F2;
    height: 150px;
}

.navbar .brand {
    color: #3C247F;
}

.navbar .nav li a {
    color: #3C247F;
    font-weight: 500;
    font-family: "Song Myung", serif;
    font-size: 18px;
}


/* Adjust logo size */
.navbar .brand img {
    max-height: 45px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    max-width: 200px; /* Optional: Set a max width */
    height: auto;
}

/* Ensure responsiveness */
@media (max-width: 768px) {
    .navbar .brand img {
        max-height: 35px; /* Smaller logo on mobile */
        max-width: 150px;
    }
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #3C247F;
    font-family: "Song Myung", serif;
}

/* Links */
a, a:hover, a:focus {
    color: #3C247F;
    text-decoration: none;
}

/* CTA Buttons */
.btn, #searchBar button {
    background: #3C247F;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.btn:hover, #searchBar button:hover {
    background: #27174F;
}

/* Home Page Search Bar */
#docsSearch {
    background: #FEF9F2;
    padding: 1.5em 0;
}

/* Categories */
.category-list .category {
    background-color: white;
    box-shadow: 0 7px 4px -5px rgba(0, 0, 0, 0.05);
}

.category-list .category:hover {
    background: #F7EEFF;
}

/* Sidebar Styles */
#sidebar .nav-list a {
    color: #3C247F;
    font-weight: 500;
}

/*Admin Button*/
#fullArticle .admin-edit {
    color: #ffffff;
    display: inline-block;
    margin-bottom: 22px;
}

/* Footer */
footer p a {
    color: #3C247F;
}
