/* css/news-styles.css */

/* --- Typography & Base --- */
body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.8;
    background-color: #f4f4f4;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: #003e63; /* Navy */
    margin-bottom: 1rem;
}

a { color: #003e63; text-decoration: none; transition: all 0.2s; }
a:hover { color: #c39428; text-decoration: underline; }

/* Brand Colors */
.bg-navy {
    background-color: #001f3f !important;
    color: #ffffff;
}

.text-navy {
    color: #001f3f !important;
}

.bg-gold {
    background-color: #c5a059 !important; /* Adjust this hex to match your exact gold */
    color: #ffffff;
}

.text-gold {
    color: #c5a059 !important;
}

.border-gold {
    border-color: #c5a059 !important;
}

/* --- Layout --- */
.news-container {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 40px;
}

/* --- Header & Masthead --- */
.navbar-news {
    background-color: #003e63;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.masthead-wrapper {
    background-color: #003e63; /* Matches logo background */
    color: white;
    padding: 20px 0;
    border-bottom: 5px solid #c39428; /* Gold Border */
}

.news-tagline {
    color: #f0dab5; /* Cream */
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-top: 10px;
}

.header-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #fff;
    border-left: 3px solid #c39428; /* Gold Line */
    padding-left: 15px;
    font-size: 0.95rem;
}

.header-quote-author {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-size: 0.75rem;
    color: #f0dab5; /* Cream */
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

/* --- Sidebar Widgets --- */
.sidebar-widget {
    background: #f9f9f9;
    padding: 25px;
    margin-bottom: 30px;
    border-top: 3px solid #003e63;
}
.widget-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

/* --- CTA Box --- */
.cta-box { background-color: #003e63; color: #fff; text-align: center; }
.cta-box h4 { color: #fff; }
.btn-gold {
    background-color: #c39428; color: #fff; font-weight: bold; border: none; text-transform: uppercase;
}
.btn-gold:hover { background-color: #a0781e; color: #fff; }

/* --- Forms (Cream Theme) --- */
input.form-control, textarea.form-control {
    background-color: #f2eec4;
    border: 1px solid #c39428;
    color: #555;
    border-radius: 4px;
}
input.form-control:focus {
    border-color: #a0781e;
    box-shadow: 0 0 5px rgba(195, 148, 40, 0.5);
}

/* --- Footer --- */
.news-footer { background-color: #003e63; color: #fff; padding: 40px 0; text-align: center; font-size: 0.9rem; }
.news-footer a { color: #f0dab5; }

/* --- Utility --- */
.text-navy { color: #003e63 !important; }
.text-gold { color: #c39428 !important; }
.bg-gold { background-color: #c39428 !important; }