/* AUTHORITY OFFICIAL WEBSITE - CORPORATE DESIGN SYSTEM */

:root {
    /* Authority Brand Colors */
    --authority-blue: #1a4d7a;
    --authority-dark: #0d2840;
    --authority-gray: #4a5568;
    --authority-light-gray: #e2e8f0;
    --authority-white: #ffffff;
    --authority-accent: #2b6cb0;
    --authority-red: #c53030;
    --classified-yellow: #d69e2e;

    /* Typography */
    --font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Courier New', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--authority-light-gray);
    color: var(--authority-dark);
    line-height: 1.6;
}

/* Header / Navigation */
.header {
    background: var(--authority-blue);
    color: var(--authority-white);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-top {
    background: var(--authority-dark);
    padding: 8px 0;
    font-size: 0.85rem;
    text-align: center;
    border-bottom: 2px solid var(--classified-yellow);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--authority-white);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: var(--authority-blue);
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-text p {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-main {
    background: var(--authority-accent);
}

.nav-main ul {
    list-style: none;
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-main li {
    border-right: 1px solid rgba(255,255,255,0.2);
}

.nav-main li:last-child {
    border-right: none;
}

.nav-main a {
    display: block;
    padding: 15px 30px;
    color: var(--authority-white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.nav-main a:hover {
    background: rgba(255,255,255,0.1);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
}

.content-main {
    background: var(--authority-white);
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.content-main h2 {
    color: var(--authority-blue);
    border-bottom: 3px solid var(--authority-blue);
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 2rem;
}

.content-main h3 {
    color: var(--authority-accent);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.content-main p {
    margin-bottom: 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--authority-blue), var(--authority-accent));
    color: var(--authority-white);
    padding: 60px 40px;
    text-align: center;
    margin: -40px -40px 40px -40px;
}

.hero h2 {
    font-size: 2.5rem;
    border: none;
    color: var(--authority-white);
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Callout Boxes */
.callout {
    background: var(--authority-light-gray);
    border-left: 5px solid var(--authority-blue);
    padding: 20px;
    margin: 25px 0;
}

.callout-warning {
    background: #fef5e7;
    border-left-color: var(--classified-yellow);
}

.callout-important {
    background: #fce8e8;
    border-left-color: var(--authority-red);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.stat-card {
    background: var(--authority-light-gray);
    padding: 30px;
    text-align: center;
    border-top: 4px solid var(--authority-blue);
}

.stat-card .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--authority-blue);
    display: block;
}

.stat-card .label {
    font-size: 1rem;
    color: var(--authority-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News Articles */
.news-list {
    margin: 30px 0;
}

.news-item {
    background: var(--authority-white);
    border-left: 4px solid var(--authority-accent);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.news-date {
    font-size: 0.85rem;
    color: var(--authority-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-item h3 {
    color: var(--authority-blue);
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

/* Classification Banners */
.classified-banner {
    background: var(--classified-yellow);
    color: var(--authority-dark);
    padding: 15px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid var(--authority-dark);
    margin: -40px -40px 30px -40px;
}

.classified-serial {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--authority-dark);
    color: var(--authority-white);
    padding: 40px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer h4 {
    color: var(--authority-white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 10px;
}

.footer a {
    color: var(--authority-light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--authority-white);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

th {
    background: var(--authority-blue);
    color: var(--authority-white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--authority-light-gray);
}

tr:hover {
    background: #f7fafc;
}

/* Links */
a {
    color: var(--authority-accent);
}

a:hover {
    color: var(--authority-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        text-align: center;
    }

    .nav-main ul {
        flex-direction: column;
    }

    .nav-main li {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .container {
        padding: 0 20px;
    }

    .content-main {
        padding: 25px;
    }
}
