/*
Theme Name: 22Start Business Suite
Description: A modern, responsive WordPress theme for business digital suites with AI-powered tools showcase
Author: Tshibanda Muteba
Version: 1.0.0
Text Domain: twentytwentythree-start
*/

/* Import Custom Styles */
@import url('assets/css/custom.css');

/* Basic WordPress Requirements */
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 20px;
}

.wp-caption-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 5px;
}

.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* WordPress Core Alignment Classes */
.alignnone {
    margin: 5px 20px 20px 0;
}

.alignwide {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
}

/* Sticky Post */
.sticky {
    background: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #8B5CF6;
}

/* Comments */
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    background: #f5f5f5;
}

/* Navigation */
.site-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-navigation li {
    display: inline-block;
    position: relative;
}

.site-navigation a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.site-navigation a:hover {
    color: #8B5CF6;
}

/* Current menu item */
.current-menu-item a,
.current_page_item a {
    color: #8B5CF6;
    font-weight: 600;
}

/* Dropdown menus */
.site-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.site-navigation li:hover > ul {
    opacity: 1;
    visibility: visible;
}

.site-navigation ul ul li {
    display: block;
    width: 100%;
}

/* WordPress Block Editor Support */
.wp-block-group {
    margin-bottom: 30px;
}

.wp-block-group__inner-container {
    padding: 0 20px;
}

.wp-block-button__link {
    background: #8B5CF6;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wp-block-button__link:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Widget Areas */
.widget-area {
    margin-bottom: 40px;
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.widget a {
    color: #666;
    text-decoration: none;
}

.widget a:hover {
    color: #8B5CF6;
}

/* Search Form */
.search-form {
    position: relative;
    display: flex;
}

.search-field {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px 0 0 25px;
    font-size: 14px;
}

.search-submit {
    background: #8B5CF6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-submit:hover {
    background: #7C3AED;
}

/* Archive & Category Pages */
.archive-title,
.page-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.archive-description {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

/* Post Meta */
.entry-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.entry-meta a {
    color: #8B5CF6;
    text-decoration: none;
}

.entry-meta a:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 40px 0;
}

.page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: #8B5CF6;
    color: white;
}

/* Footer */
.site-footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
    text-align: center;
    margin-top: 60px;
}

.site-footer a {
    color: #8B5CF6;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .site-navigation ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        margin-left: 20px;
    }
    
    .alignleft,
    .alignright {
        float: none;
        display: block;
        margin: 0 auto 20px;
    }
    
    .wp-block-group__inner-container {
        padding: 0 15px;
    }
}