/*
    custom.css
    Any site-specific CSS customization should be added to this file.
    This file overrides the defaults in illiad.css, which should not be altered.
*/

/* Navbar Background and Text Color */

.main-navbar {
    background-color: #4B2D83;
    color: #FFF;
    border-top: 2px solid #FFF;
}

/* Primary Button Styling */
.btn-primary {
    background-color: #4B2D83;
    color: #FFF;
    border-color: #4B2D83;
}

/* Secondary Button Styling */
.btn-secondary {
    background-color: #FFF;
    color: #4B2D83;
}

/* Banner Background Color */
#header, .head, .banner {
    background-color: #4B2D83;
}

/* Header Color */
h1, h2, h3, h4, h5, h6, .header {
    color: #4B2D83;
}

/* Logo Styling */
.logo {
    text-align: left;
}

.logo img {
    max-width: 300px;
    height: auto;
}

/* Hyperlink Colors */
a {
    color: #1a62c7;
}

a:hover {
    color: #85754d;
}

a:active {
    color: #1a62c7;
}

/* List and Paragraph Text Color */
ul, li, p, ol { color: #000; }


