/* 
   Glorion Copyright & Policy Library
   Official CSS Styles
*/

:root {
    --bg-color: #fcfcfd;
    --text-color: #1a1a1a;
    --text-muted: #4a5568;
    --accent-indigo: #4f46e5;
    --accent-slate: #64748b;
    --border-color: #e2e8f0;
    --panel-bg: #ffffff;
    --header-height: 80px;
    --container-width: 1100px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent-indigo);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top Info Strip */
.top-strip {
    background-color: var(--accent-slate);
    color: white;
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.025em;
}

/* Header & Navigation */
header {
    background: var(--panel-bg);
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent-indigo);
    margin-right: 4px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--accent-indigo);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-group {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--accent-indigo);
    color: white;
}

.btn-secondary {
    background-color: white;
    color: var(--accent-indigo);
    border: 1px solid var(--accent-indigo);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    opacity: 1;
}

/* Summary Cards (Hero Right) */
.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.summary-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.summary-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--accent-indigo);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
}

/* Library Cards */
.library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.library-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: border-color 0.3s;
}

.library-card:hover {
    border-color: var(--accent-indigo);
}

.library-card h3 {
    margin-bottom: 1rem;
}

.library-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Reference Section */
.reference-box {
    background: #f8fafc;
    border-left: 4px solid var(--accent-indigo);
    padding: 3rem;
    border-radius: 0 8px 8px 0;
    text-align: center;
}

.reference-box p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-muted);
}

/* Process Steps */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    flex: 1;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-indigo);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step h4 {
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Content Pages */
.page-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 5rem;
}

.content-wrapper h2 {
    margin: 2.5rem 0 1.25rem;
    font-size: 1.5rem;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.content-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.last-updated {
    font-size: 0.85rem;
    color: var(--accent-slate);
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-style: italic;
}

/* Footer */
footer {
    background: #1e293b;
    color: #f8fafc;
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .btn-group {
        justify-content: center;
    }
    .steps-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    .content-wrapper {
        padding: 2rem;
    }
}
