/* Documentation Pages Specific Styles */
.docs-wrapper {
    display: flex;
    gap: 50px;
    position: relative;
    padding: 50px 0;
}

.heroSection {
    min-height: 50vh;
    padding-top: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.heroSection h1 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 150px;
    line-height: 120px;
    font-weight: 700;
    color: var(--light);
    position: relative;
    z-index: 2;
}

.heroSection p {
    font-size: 20px;
    line-height: 44px;
    color: var(--lighter-light);
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.docs-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 30px;
    height: calc(100vh - 60px);
    overflow-y: auto;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.docs-sidebar::-webkit-scrollbar {
    width: 5px;
}

.docs-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.docs-sidebar::-webkit-scrollbar-thumb {
    background: var(--base-color);
    border-radius: 5px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    color: var(--light);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    color: var(--lighter-light);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
}

.sidebar-nav a.active {
    background: var(--base-color);
    color: var(--light);
}

.sidebar-nav i {
    font-size: 14px;
    opacity: 0.7;
}

.docs-content {
    flex: 1;
}

.docsContent {
    background-color: var(--card-background);
}

.docs-section {
    background: var(--base-background);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.docs-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.docs-icon {
    width: 50px;
    height: 50px;
    background: var(--base-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.docs-icon i {
    font-size: 24px;
    color: var(--light);
}

.docs-section-header h2 {
    color: var(--light);
    font-size: 24px;
    margin: 0;
}

.docs-content-body {
    color: var(--lighter-light);
}

.docs-content-body p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.docs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.docs-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--lighter-light);
    font-size: 15px;
    line-height: 1.6;
}

.docs-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--base-color);
    border-radius: 50%;
}

.docs-highlight {
    background: rgba(var(--base-color-rgb), 0.1);
    border-left: 4px solid var(--base-color);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
    margin-bottom: 0 !important;
}

.docs-highlight p {
    margin: 0;
    color: var(--light);
    font-size: 15px;
    word-break: break-all;
    overflow-wrap: break-word;
    hyphens: auto;
}

.docs-highlight i {
    color: var(--base-color);
    margin-right: 10px;
}

.docsAction {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    padding: 50px 0;
}

.docsAction h2 {
    font-family: var(--font-heading);
    color: var(--light);
    font-size: 80px;
    line-height: 72px;
    margin: 0;
}

.docsAction p {
    color: var(--lighter-light);
    font-size: 18px;
    line-height: 32px;
}

.contact-btn {
    display: inline-block;
    background-color: var(--base-color);
    color: var(--light);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 500px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1350px) {
    .heroSection h1 {
        font-size: 145px !important;
        line-height: 135px !important;
    }
}

@media(max-width:1205px) {
    .docsAction h2 {
        font-size: 68px !important;
        line-height: 63px !important;
    }
}

@media (max-width: 1200px) {
    .heroSection h1 {
        font-size: 130px !important;
        line-height: 120px !important;
    }
}

@media (max-width: 1100px) {
    .heroSection h1 {
        font-size: 110px !important;
        line-height: 100px !important;
    }
}

@media (max-width: 1024px) {
    .heroSection h1 {
        font-size: 80px !important;
        line-height: 70px !important;
    }

    .heroSection p {
        font-size: 16px !important;
        line-height: 32px !important;
    }

    .docs-wrapper {
        flex-direction: column;
    }

    .docs-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .docs-content {
        max-width: 100%;
    }

    .heroSection .spacer-30 {
        height: 15px !important;
    }

    .docsAction h2 {
        font-size: 63px !important;
    }

    .docsAction h2,
    .docsAction p {
        width: calc(100% - 40px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .docsAction {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .docs-sidebar {
        padding-bottom: 10px !important;
        margin-bottom: 0 !important;
    }
    .docs-section:last-child {
        margin-bottom: 10px !important;
    }
}

@media (max-width: 767px) {
    .heroSection h1 {
        width: calc(100% - 20px) !important;
    }

    .heroSection p {
        width: calc(100% - 20px) !important;
    }
}

@media (max-width: 767px) {
    .heroSection h1 {
        font-size: 70px !important;
        line-height: 60px !important;
    }

    .docsAction h2 {
        font-size: 58px !important;
        line-height: 58px !important;
    }

    .docsAction h2,
    .docsAction p {
        width: calc(100% - 20px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .contact-btn {
        font-size: 16px !important;
    }

    .docsAction .spacer-100 {
        height: 70px !important;
    }
    .docs-content-body .changelog-entry:last-child {
        margin-bottom: 5px !important;
    }
}
@media (max-width: 680px) {
    .heroSection {
        padding-top: 80px !important;
    }
}
@media(max-width:510px) {
    .docsAction h2 {
        font-size: 53px !important;
        line-height: 53px !important;
    }
}

@media (max-width: 500px) {
    .heroSection h1 {
        font-size: 60px !important;
        line-height: 60px !important;
        width: calc(100% - 20px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .docs-section
    {
        padding: 20px !important;
    }
}

@media(max-width:400px){
    .docs-section-header
    {
        display: block !important;
    }
    .page-id-status .docs-section-header h2
    {
        margin-bottom: 20px !important;
    }
    .docs-icon
    {
        margin-bottom: 15px !important;
    }
    .docs-section-header
    {
        margin-bottom: 10px !important;
    }
}