/* === Pretty Sitemap Styles === */

body {
    background-color: #f8f9fa;
    color: #333;
}

.sitemap-container-pretty {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.sitemap-header {
    text-align: center;
    margin-bottom: 40px;
}

.sitemap-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.sitemap-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1em;
    color: #7f8c8d;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sitemap-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sitemap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.sitemap-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #34495e;
    margin-bottom: 20px;
    border-bottom: 2px solid #5D87E8;
    padding-bottom: 10px;
}

.sitemap-card h2 i {
    margin-right: 15px;
    color: #5D87E8;
}

.sitemap-links a {
    display: block;
    font-family: 'Inter', sans-serif;
    color: #34495e;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
}

.sitemap-links a:last-child {
    border-bottom: none;
}

.sitemap-links a:hover {
    background-color: #f1f5ff;
    color: #5D87E8;
    padding-left: 10px;
}

@media (max-width: 768px) {
    .sitemap-header h1 {
        font-size: 2.5em;
    }

    .sitemap-card h2 {
        font-size: 1.5em;
    }
}
