/* Sitemap Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(238, 90, 111, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-title i {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Sitemap Section */
.sitemap-section {
    background: #fafafa;
    min-height: 500px;
}

/* Sitemap Categories */
.sitemap-category {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 192, 203, 0.3);
}

.sitemap-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
}

.sitemap-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffe0e0;
    position: relative;
}

.sitemap-category h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ee5a6f 100%);
}

.sitemap-category h3 i {
    font-size: 1.125rem;
    color: #ff6b6b;
}

/* Sitemap List */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
}

.sitemap-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-size: 1.25rem;
    font-weight: bold;
    top: 8px;
}

.sitemap-list li a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.sitemap-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ee5a6f 100%);
    transition: width 0.3s ease;
}

.sitemap-list li a:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

.sitemap-list li a:hover::after {
    width: 100%;
}

/* Nested List */
.sitemap-list ul {
    list-style: none;
    padding: 10px 0 0 20px;
    margin: 0;
}

.sitemap-list ul li {
    padding: 8px 0;
    padding-left: 20px;
}

.sitemap-list ul li::before {
    content: '•';
    left: 0;
    color: #ffb3b3;
    font-size: 1rem;
}

.sitemap-list ul li a {
    font-size: 0.95rem;
    color: #666;
}

.sitemap-list ul li a:hover {
    color: #ee5a6f;
}

/* Special Category Styles */
.sitemap-category:nth-child(1) h3 i { color: #ff6b6b; }
.sitemap-category:nth-child(2) h3 i { color: #ee5a6f; }
.sitemap-category:nth-child(3) h3 i { color: #ff8787; }
.sitemap-category:nth-child(4) h3 i { color: #ff9999; }

/* Quick Navigation */
.quick-nav {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.quick-nav h3 {
    color: white;
    margin-bottom: 20px;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.quick-nav-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-nav-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.quick-nav-item a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.quick-nav-item i {
    font-size: 1.5rem;
}

/* Footer Info */
.sitemap-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ffe0e0;
    text-align: center;
}

.sitemap-footer p {
    color: #666;
    font-size: 0.95rem;
}

.sitemap-footer .contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.sitemap-footer .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.sitemap-footer .contact-item i {
    color: #ff6b6b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .sitemap-category {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .sitemap-list li {
        padding: 8px 0;
    }
    
    .sitemap-list ul {
        padding-left: 15px;
    }
    
    .quick-nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .sitemap-footer .contact-info {
        flex-direction: column;
        gap: 15px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sitemap-category {
    animation: fadeInUp 0.6s ease;
}

.sitemap-category:nth-child(2) {
    animation-delay: 0.1s;
}

.sitemap-category:nth-child(3) {
    animation-delay: 0.2s;
}

.sitemap-category:nth-child(4) {
    animation-delay: 0.3s;
}

/* Accessibility */
.sitemap-list a:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print Styles */
@media print {
    .page-header {
        background: none;
        padding: 20px 0;
    }
    
    .sitemap-category {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .sitemap-list li a {
        color: #333;
    }
}