/* Docs Home Hero Section */
.docs-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
    margin-bottom: 4rem;
    align-items: center;
}

.docs-hero-content {
    max-width: 600px;
}

.docs-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.docs-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.docs-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.docs-hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
    color: #ffffff;
}

.docs-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-console-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-console-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(168, 85, 247, 0.25);
}

/* Light Theme Overrides */
html.light-theme .docs-hero-title {
    color: #000000;
}

html.light-theme .hero-console-image {
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.15);
}

html.light-theme .hero-console-image:hover {
    box-shadow: 0 30px 80px rgba(168, 85, 247, 0.2);
}

html.light-theme .docs-hero-button {
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
}

html.light-theme .docs-hero-button:hover {
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.35);
}

/* Dark Theme Overrides */
html.dark-theme .docs-hero-title {
    color: #ffffff;
}

html.dark-theme .hero-console-image {
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.25);
}

html.dark-theme .hero-console-image:hover {
    box-shadow: 0 30px 80px rgba(168, 85, 247, 0.3);
}

html.dark-theme .docs-hero-button {
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

html.dark-theme .docs-hero-button:hover {
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

/* Docs Home Content */
.docs-home-content {
    max-width: 1200px;
}

/* Responsive */
@media (max-width: 991px) {
    .docs-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .docs-hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .docs-hero-title {
        font-size: 1.875rem;
    }
    
    .docs-hero-description {
        font-size: 1rem;
    }
}
