/* CSS Document */

/* Base Body Styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 20px 0 0 0;
    background-color: #062124;
    color: #000000;
}

/* Site Wrapper - Centers Everything */
.site-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* Custom Container - 700px width like original */
.container-custom {
    width: 100%;
    max-width: 740px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Main Border - Magenta border around entire content */
.main-border {
    border: 1px solid #A80048;
    background-color: #ffffff;
}

/* Header Section */
.site-header {
    background-color: #ffffff;
}

.logo-area {
    background-color: #efefd3;
    padding: 20px 10px;
    text-align: left;
}

.logo-area img {
    display: block;
    margin: 0 auto;
}

/* Divider Lines */
.divider {
    background-color: #062124;
    height: 10px;
    width: 100%;
}

.spacer-bar {
    background-color: #A80048;
    height: 12px;
    width: 100%;
}

/* Navigation */
.navbar-custom {
    background-color: #A80048;
    padding: 0;
    min-height: 32px;
}

.navbar-custom .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
    margin: 5px;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-custom .navbar-nav {
    width: 100%;
}

.navbar-custom .nav-item {
    text-align: center;
}

.navbar-custom .nav-link {
    color: #ffffff;
    font-size: 16px;
    text-decoration: underline;
    padding: 8px 15px;
    display: block;
}

.navbar-custom .nav-link:hover {
    color: #CCCCCC;
    text-decoration: none;
}

/* Desktop Navigation - Horizontal Layout */
@media (min-width: 992px) {
    .navbar-custom .navbar-nav {
        flex-direction: row;
        justify-content: center;
    }
    
    .navbar-custom .nav-item:not(:last-child)::after {
        content: "|";
        color: #ffffff;
        margin: 0 5px;
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .navbar-custom .nav-item {
        position: relative;
    }
}

/* Mobile Navigation - Stacked */
@media (max-width: 991px) {
    .navbar-custom .nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Intro Section */
.intro-section {
    background-color: #efefd3;
}

.intro-text {
    background-color: #efefd3;
    padding: 12px;
}

.intro-content p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #000000;
    text-align: left;
    margin-bottom: 12px;
    line-height: 1.5;
}

.vertical-divider {
    background-color: #062124;
    width: 1px;
}

.intro-image {
    background-color: #efefd3;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 12px;
}

.intro-image img {
    max-width: 100%;
    height: auto;
}

/* Stack on mobile */
@media (max-width: 991px) {
    .intro-section .row {
        flex-direction: column;
    }
    
    .intro-image {
        padding-top: 20px;
    }
}

/* Main Content Area */
.main-content {
    background-color: #efefd3;
    padding: 20px;
    min-height: 200px;
}

.content-wrapper {
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: #efefd3;
    padding: 20px;
    text-align: center;
}

.footer-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #ffffff;
    margin: 5px 0;
}

/* Footer Links */
.footer-text a:link,
.footer-text a:visited {
    color: #ffffff;
    text-decoration: underline;
}

.footer-text a:hover,
.footer-text a:active {
    color: #FFCCCC;
    text-decoration: none;
}

/* Utility Classes from Original CSS */
.tclarktext {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #000000;
}

.text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: #000000;
}

.subhead {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #A80048;
}

.superhead {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
}

.superheadred {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #A80048;
}

.headingleft {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    text-align: left;
}

.minitextwhite {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #ffffff;
}

/* Responsive adjustments for very small screens */
@media (max-width: 576px) {
    .container-custom {
        padding: 0 10px;
    }
    
    body {
        padding-top: 10px;
    }
    
    .logo-area {
        padding: 10px 5px;
    }
    
    .navbar-custom .nav-link {
        font-size: 14px;
        padding: 10px;
    }
}