/* HTML Sitemap Styles */

/* Sitemap Header */
.sitemap-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    margin: -20px -20px 40px -20px;
    border-radius: 0 0 16px 16px;
}

.sitemap-header-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sitemap-header-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Sitemap Sections */
.sitemap-section {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sitemap-section-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #212121;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sitemap-section-title i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.sitemap-section-description {
    font-size: 0.95rem;
    color: #757575;
    margin: 0 0 24px 0;
    padding-left: 42px;
}

/* Sitemap Links */
.sitemap-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
    padding-left: 42px;
}

.sitemap-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #424242;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sitemap-link:hover {
    background: #e3f2fd;
    border-left-color: var(--primary-color);
    transform: translateX(4px);
}

.sitemap-link i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sitemap-link span {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sitemap-header {
        padding: 40px 20px 30px;
    }
    
    .sitemap-header-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .sitemap-header-subtitle {
        font-size: 1rem;
    }
    
    .sitemap-section {
        padding: 24px 20px;
    }
    
    .sitemap-section-title {
        font-size: 1.3rem;
    }
    
    .sitemap-section-description,
    .sitemap-links {
        padding-left: 0;
    }
    
    .sitemap-links {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

