@charset "utf-8";

/* Section Page Layout Styles */

/* Page Container */
.section-page {
    padding-top: 90px; /* Header height */
    min-height: 100vh;
    background: #f8f9fa;
}

/* Breadcrumb - Integrated into Banner */
.breadcrumb {
    background: transparent;
    padding: 0;
    border-bottom: none;
}

.breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
    color: #fff;
    font-weight: 500;
}

/* Section Banner */
.section-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    padding: 30px 0 50px 0;
    text-align: center;
}

.section-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.section-banner p {
    font-size: 1.1rem;
    opacity: 0.7;
}

/* Main Content Layout */
.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
    display: flex;
    gap: 40px;
}

/* Sidebar */
.section-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    padding: 15px 20px;
    background: #ba0c2f;
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.sidebar-menu {
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.sidebar-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
    font-size: 15px;
}

.sidebar-menu a:last-child {
    border-bottom: none;
}

.sidebar-menu a:hover {
    background: #f5f5f5;
    color: #ba0c2f;
    padding-left: 25px;
}

.sidebar-menu a.active {
    background: #fff5f7;
    color: #ba0c2f;
    font-weight: 600;
    border-left: 4px solid #ba0c2f;
}

/* Main Area */
.section-main {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 40px;
    min-height: 500px;
}

.section-main h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.content-placeholder {
    color: #999;
    text-align: center;
    padding: 100px 0;
    font-size: 1.1rem;
}

.content-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: #ddd;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .section-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .section-sidebar {
        width: 100%;
    }

    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        border-radius: 8px;
    }

    .sidebar-menu a {
        flex: 1;
        min-width: 120px;
        text-align: center;
        border-bottom: none;
        border-right: 1px solid #eee;
    }

    .sidebar-menu a:last-child {
        border-right: none;
    }

    .sidebar-menu a:hover {
        padding-left: 20px;
    }

    .sidebar-menu a.active {
        border-left: none;
        border-bottom: 4px solid #ba0c2f;
    }

    .section-main {
        padding: 25px;
    }
}

@media screen and (max-width: 600px) {
    .section-banner {
        padding: 40px 20px;
    }

    .section-banner h1 {
        font-size: 1.8rem;
    }

    .sidebar-menu a {
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}
