/* Getting Started Documentation Page Styles */

/* Modern fonts and base styles */
.docs-page {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background-color: #f8fafc;
    min-height: 100vh;
}

/* Container Layout */
.docs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px 24px 24px;
    display: flex;
    gap: 32px;
    min-height: calc(100vh - 80px);
}

/* Left Sidebar Navigation */
.docs-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.docs-sidebar__title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.docs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-nav__item {
    margin-bottom: 8px;
}

.docs-nav__link {
    display: block;
    padding: 12px 16px;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.docs-nav__link:hover {
    background-color: #f1f5f9;
    color: #3b82f6;
    border-left-color: #3b82f6;
}

.docs-nav__link.active {
    background-color: #eff6ff;
    color: #3b82f6;
    border-left-color: #3b82f6;
    font-weight: 600;
}

/* Main Content Area */
.docs-main {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.docs-content {
    padding: 40px 48px;
}

/* Hero Section */
.docs-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 48px;
    margin: -40px -48px 40px -48px;
}

.docs-hero__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.docs-hero__subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0;
    font-weight: 400;
}

/* Section Styles */
.docs-section {
    margin-bottom: 48px;
}

.docs-section__header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.docs-section__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.docs-section__icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.docs-section__title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.docs-section__description {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.feature-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.feature-card__icon {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-card__icon svg {
    width: 20px;
    height: 20px;
    color: #3b82f6;
}

.feature-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.feature-card__description {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

/* Components Section */
.components-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.component-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #10b981;
    transition: all 0.2s ease;
}

.component-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.component-item__title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.component-item__description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .docs-container {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }
    
    .docs-sidebar {
        width: 100%;
        position: static;
        order: 2;
    }
    
    .docs-main {
        order: 1;
    }
    
    .docs-content {
        padding: 24px;
    }
    
    .docs-hero {
        padding: 32px 24px;
        margin: -24px -24px 32px -24px;
    }
    
    .docs-hero__title {
        font-size: 28px;
    }
    
    .docs-hero__subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .docs-container {
        padding: 16px;
    }
    
    .docs-content {
        padding: 20px;
    }
    
    .docs-hero {
        padding: 24px 20px;
        margin: -20px -20px 24px -20px;
    }
    
    .docs-hero__title {
        font-size: 24px;
    }
    
    .docs-section__title {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .components-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Mobile navigation toggle */
@media (max-width: 768px) {
    .docs-sidebar {
        display: none;
    }
      .docs-sidebar.active {
        display: block;
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        z-index: 1000;
        margin: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }
}
