/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header & Typography */
.site-title {
    color: #006600; /* Forest Green */
    font-weight: bold;
    font-size: 2.4rem;
    margin-bottom: 0;
}

.site-subtitle {
    color: #182d6b;
    font-size: 1.4rem;
    margin-top: -5px;
}
h1, h2, h3, h4, .site-title {
	font-family: 'Mako', sans-serif;}

h2 {
    color: #666;
    font-weight: bold;
    margin-top: 20px;
}

h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #444;
    margin-top: 1.5rem;
}

.highlight-text {
    color: #996633; 
}

.top-bar {
    width: 100%;
    height: 10px;
    background-color: #0056b3; 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1030; 
}


/* Navigation Tabs */
.nav-tabs {
    border-bottom: 1px solid #ddd;
    background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
    border-radius: 8px 8px 0 0;
    padding-left: 10px;
}

.nav-tabs .nav-link {
    color: #006600;
    font-weight: bold;
    border: 1px solid transparent;
    border-radius: 8px 8px 0 0;
    margin-right: 5px;
    padding: 10px 15px;
}

.nav-tabs .nav-link.active {
    background-color: #fff;
    border-color: #ddd #ddd #fff;
    color: #333 !important;
}

.nav-tabs .nav-link:hover:not(.active) {
    background-color: #e9ecef;
    border-color: #ddd;
}

/* Content Area */
.profile-img {
    width: 100%;
    max-width: 250px;
    border: 1px solid #ddd;
    padding: 5px;
}

.quote-section {
    font-style: italic;
    font-weight: bold;
    margin-top: 40px;
}

.footer-info {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 30px;
}