/* 
   Northone Traditional Enterprise Design System
   Classic, Authoritative, Secure
   Inspired by Major US Banks (Wells Fargo style)
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&family=Open+Sans:wght@400;600;700&display=swap');

:root {
    /* Brand Colors - Traditional */
    --brand-red: #d71e28;
    /* Deep Red - Primary Brand Color */
    --brand-gold: #ffcb05;
    /* Gold - Accent/Highlight */
    --brand-dark: #333333;
    /* Dark Grey for Text */
    --brand-grey: #5c5c5c;
    /* Medium Grey for subtext */
    --bg-light: #f4f0e9;
    /* Warm Beige/Grey Background (similar to reference) */
    --bg-white: #ffffff;

    /* Layout */
    --container-max: 1200px;
    --header-height: 40px;
    /* Top red bar */
    --nav-height: 50px;
    /* White link bar */

    /* Decoration */
    --border-radius-sm: 4px;
    /* Traditional = smaller radius */
    --border-radius-lg: 8px;
    --shadow-card: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-pop: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Base Reset & Typography */
body {
    font-family: 'Open Sans', Arial, sans-serif;
    /* Clean, standard sans-serif */
    color: var(--brand-dark);
    background-color: var(--bg-white);
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Serif', Georgia, serif;
    /* Serif for "Established" feel */
    color: var(--brand-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    transition: color 0.2s;
}

a:hover {
    text-decoration: underline;
}

.text-red {
    color: var(--brand-red);
}

/* --- COMPONENTS --- */

/* Buttons */
.btn-traditional {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 20px;
    /* Pill shape is common, or rounded rect */
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    border: 1px solid transparent;
}

.btn-red {
    background-color: var(--brand-red);
    color: white;
}

.btn-red:hover {
    background-color: #a6121a;
    color: white;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--brand-red);
    color: var(--brand-red);
}

.btn-outline:hover {
    background-color: #fff0f0;
    text-decoration: none;
}

/* Cards */
.card-traditional {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
}

/* --- HEADER / NAV STRUCTURE --- */
/* The top red bar */
.top-header-bar {
    background-color: var(--brand-red);
    color: white;
    height: var(--header-height);
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.top-header-bar a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
}

.top-header-bar a:hover {
    text-decoration: underline;
}

/* The white nav bar */
.main-nav-bar {
    background-color: white;
    border-bottom: 3px solid var(--brand-gold);
    /* Gold accent line */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.nav-link-traditional {
    color: var(--brand-dark) !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 10px;
    text-transform: none;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-link-traditional:hover,
.nav-link-traditional.active {
    color: var(--brand-red) !important;
    border-bottom-color: var(--brand-red);
}

/* --- HERO SECTION with LOGIN --- */
.hero-traditional {
    background-color: var(--bg-light);
    padding: 60px 0 80px;
    position: relative;
}

.login-widget {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-pop);
    max-width: 380px;
}

.hero-headline {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--brand-dark);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--brand-grey);
    margin-bottom: 2rem;
}

/* --- FOOTER --- */
.footer-traditional {
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    color: var(--brand-grey);
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-traditional h4 {
    color: var(--brand-dark);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}

.footer-link {
    display: block;
    color: var(--brand-grey);
    margin-bottom: 8px;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--brand-red);
    text-decoration: underline;
}