/* Documentation specific styles */
.docs-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.docs-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.docs-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.docs-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.docs-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.docs-sidebar {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sidebar-search {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.sidebar-search:focus {
    outline: none;
    border-color: #f4c430;
}

.docs-nav {
    list-style: none;
}

.nav-section {
    margin-bottom: 1.5rem;
}

.nav-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid #f4c430;
}

.nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
    background: #f4c430;
    color: #1a1a1a;
}

.docs-main {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.docs-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f4c430;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
}

.docs-text {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.code-block {
    background: #1a1a1a;
    color: #e5e5e5;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.code-inline {
    background: #f3f4f6;
    color: #1a1a1a;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
}

.api-endpoint {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.endpoint-method {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-right: 1rem;
}

.method-get {
    background: #10b981;
    color: white;
}

.method-post {
    background: #3b82f6;
    color: white;
}

.method-put {
    background: #f59e0b;
    color: white;
}

.method-delete {
    background: #ef4444;
    color: white;
}

.endpoint-url {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-weight: 600;
    color: #1a1a1a;
}

.parameter-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.parameter-table th,
.parameter-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.parameter-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1a1a1a;
}

.parameter-table td {
    color: #6b7280;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.alert-info {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    color: #1e40af;
}

.alert-warning {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    color: #92400e;
}

.alert-success {
    background: #dcfce7;
    border-left: 4px solid #10b981;
    color: #065f46;
}

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

.quick-start-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid #f4c430;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.card-description {
    color: #6b7280;
    line-height: 1.6;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #f4c430;
    text-decoration: none;
}

.page-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f4c430;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #e6b800;
    transform: translateY(-1px);
}
