/* Sitemap Page Styles */

/* Page Header Styles */
.page-header {
    background-color: #e9f7fe;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    margin-top: 120px; /* Added space to push content below the fixed navigation */
}

.page-header h1 {
    color: #2e86de;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 1rem;
    color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
}

.breadcrumb-item a {
    color: #2e86de;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Content Section Styles */
.content-section {
    padding: 3rem 0;
}

.text-content {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-content > p {
    margin-bottom: 2rem;
    text-align: center;
    color: #444;
    font-size: 1.1rem;
}

.sitemap-section {
    margin-bottom: 2.5rem;
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sitemap-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sitemap-section h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
}

.sitemap-section h2 i {
    color: #2e86de;
    margin-right: 0.75rem;
    font-size: 1.2em;
}

.sitemap-list {
    list-style: none;
    padding-left: 2.5rem;
    column-count: 2;
    column-gap: 2rem;
}

.sitemap-list li {
    margin-bottom: 0.75rem;
    break-inside: avoid-column;
    page-break-inside: avoid;
    position: relative;
}

.sitemap-list li::before {
    content: '•';
    color: #2e86de;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
}

.sitemap-list a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.sitemap-list a:hover {
    color: #2e86de;
    text-decoration: underline;
}

/* Specific Section Color Variations */
.sitemap-section:nth-child(odd) {
    background-color: #f8fdff;
}

.sitemap-section:nth-child(3n+1) h2 i {
    color: #2e86de; /* Blue */
}

.sitemap-section:nth-child(3n+2) h2 i {
    color: #10ac84; /* Green */
}

.sitemap-section:nth-child(3n+3) h2 i {
    color: #ff9f43; /* Orange */
}

/* Responsive Styles */
@media (max-width: 992px) {
    .sitemap-list {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .text-content {
        padding: 0 1rem;
    }
    
    .sitemap-section {
        margin-bottom: 2rem;
        padding: 1.25rem;
    }
    
    .sitemap-list {
        column-count: 1;
        padding-left: 1.5rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 1.5rem 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .sitemap-section h2 {
        font-size: 1.3rem;
    }
    
    .sitemap-list li {
        margin-bottom: 0.5rem;
    }
} 