/* General Styling for Header Section */
.bh-header {
width: 100%;
margin-bottom: 1em;
padding: 1.5em;
border: 2px solid #a2a9b1; /* Add border for the header */
background-color: #ffffff; /* White background for contrast */
border-radius: 8px; /* Optional: rounded corners for elegance */
text-align: center; /* Center-align the text */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
/* Header Title Styling */
.bh-header h1 {
font-family: 'Georgia', 'Times New Roman', serif; /* Elegant serif font */
font-size: 2.8em;
color: #4a4a8c; /* Deep blue for title text */
margin-bottom: 0.5em; /* Spacing below the title */
}
/* Header Subtitle Styling */
.bh-header p {
font-family: 'Arial', sans-serif; /* Clean sans-serif font for subtitles */
font-size: 1.2em;
color: #333; /* Neutral dark gray for subtitles */
margin: 0.5em 0; /* Spacing around the paragraph */
}
/* Links inside Header */
.bh-header a {
color: #0066cc; /* Bright blue links */
text-decoration: none;
font-weight: bold;
}
.bh-header a:hover {
text-decoration: underline;
}