/* WildRobin Media Architecture & Infrastructure Hub - Global Styles */
:root {
    --charcoal: #1F2937;
    --robin-blue: #0EA5E9;
    --bg-white: #FFFFFF;
    --sidebar-bg: #F9FAFB;
    --border-color: #E5E7EB;
    --text-main: #374151;
    --text-muted: #6B7280;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    width: 280px;
    background-color: var(--sidebar-bg);
    border-right: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    background-color: #F3F4F6;
    color: var(--robin-blue);
}

.sidebar-nav a.active {
    font-weight: 600;
}

/* Main Content Area */
.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 3rem 4rem;
    max-width: 1000px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.verification-btn {
    background-color: var(--robin-blue);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.verification-btn:hover {
    opacity: 0.9;
}

h1 {
    font-size: 2.25rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

h2 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: #E0F2FE;
    color: var(--robin-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: border-color 0.2s;
}

.card:hover {
    border-color: var(--robin-blue);
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.code-block {
    background-color: #F9FAFB;
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 0.5rem;
    font-family: monospace;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

footer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 1.5rem;
    }
    .main-content {
        margin-left: 0;
        padding: 2rem;
    }
}
