/* typography.css - Typography Styles */

/* General text styles */
h1 {
    margin-top: 0; /* Remove default margin */
    color: #333; /* Default heading color */
    padding: 15px 20px 10px; /* Add padding */
    border-bottom: 1px solid #ddd; /* Border below headings */
    text-align: center; /* Center heading text */
}

h2 {
    margin-top: 0;
    color: #333;
    font-size: 20px;
    padding: 15px 20px 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

h3 {
    margin-top: 0;
    color: #333;
    font-size: 20px;
    padding: 15px 20px 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

p {
    color: #666; /* Default paragraph color */
    font-size: 16px; /* Default font size */
    padding: 0 20px 15px; /* Add padding */
    text-align: center; /* Align paragraph text to center */
}

/* Text styling for content area */
.content {
    margin-left: 200px; /* Adjusted margin to match navigation width */
    padding: 20px;
    text-align: justify; /* Justify text alignment for a cleaner look */
    font-size: 18px;
    color: #444; /* Darker shade for better readability */
    line-height: 1.6; /* Increased line height for easier reading */
    box-sizing: border-box; /* Ensure padding is included in height */
}

.content p {
    margin-bottom: 20px; /* Add space between paragraphs */
}

.content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    background-color: #fff; /* White background for headings */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.content strong {
    color: #007bff; /* Use a bold color for strong text */
}

.content a {
    color: #007bff; /* Change link color */
    text-decoration: none; /* Remove underline from links */
}

.content a:hover {
    text-decoration: underline; /* Add underline on hover */
}

.content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: #f8f9fa; /* Light gray background for headings */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.content .honorable-mentions {
    margin-bottom: 30px;
}

.content .honorable-mentions ul {
    list-style-type: none;
    padding: 0;
}

.content .honorable-mentions ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.content .honorable-mentions ul li:before {
    content: '\2022';
    color: #007bff;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 6px;
}

.content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.content h2.author {
    font-size: 18px;
    font-style: italic;
    color: #777;
}
/* Mobile-friendly adjustments */
@media screen and (max-width: 767px) {
    .content {
        margin-left: 0; /* Remove left margin on mobile */
    }
}