
/* ===== SITEMAP PAGE STYLES ===== */

.sitemap-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.sitemap-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sitemap-header h1 i {
    color: #3498db;
    margin-right: 10px;
}

.sitemap-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.sitemap-container {
    padding: 40px 0 60px;
}

.sitemap-section {
    margin-bottom: 50px;
    scroll-margin-top: 80px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.section-header i {
    font-size: 1.8rem;
    color: #3498db;
}

.section-header h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin: 0;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.sitemap-card {
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e1e5eb;
    overflow: hidden;
}

.sitemap-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.sitemap-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    text-decoration: none;
    background: white;
    transition: all 0.3s ease;
}

.sitemap-link i {
    font-size: 1.5rem;
    color: #3498db;
    min-width: 40px;
    text-align: center;
}

.sitemap-info {
    flex: 1;
}

.sitemap-info h3 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: #2c3e50;
}

.sitemap-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #7f8c8d;
}

/* Future Items */
.future-item {
    opacity: 0.7;
    cursor: not-allowed;
}

.future-item .sitemap-link.disabled {
    cursor: not-allowed;
}

.future-badge {
    display: inline-block;
    background: #f39c12;
    color: white;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
}

.future-section-badge {
    display: inline-block;
    background: #f39c12;
    color: white;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 12px;
    vertical-align: middle;
}

/* Quick Navigation */
.sitemap-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e1e5eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.quick-nav h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.quick-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

.stat-label {
    font-size: 0.8rem;
    color: #7f8c8d;
}

/* Responsive */
@media (max-width: 768px) {
    .sitemap-header h1 {
        font-size: 1.8rem;
    }
    
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .sitemap-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-links {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sitemap-header {
        padding: 40px 0 30px;
    }
    
    .sitemap-header h1 {
        font-size: 1.5rem;
    }
    
    .sitemap-link {
        padding: 15px;
    }
    
    .sitemap-info h3 {
        font-size: 0.9rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}




/* sitemap.css - Additional styles for sitemap page */

/* Print Styles */
@media print {
    .sitemap-header {
        background: none;
        color: black;
        padding: 20px 0;
    }
    
    .sitemap-card {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ddd;
    }
    
    .future-item {
        opacity: 1;
    }
    
    .future-badge,
    .future-section-badge {
        background: #ddd;
        color: #333;
    }
    
    .sitemap-footer {
        display: none;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sitemap-section {
    animation: fadeInUp 0.4s ease-out;
}

.sitemap-section:nth-child(1) { animation-delay: 0.05s; }
.sitemap-section:nth-child(2) { animation-delay: 0.1s; }
.sitemap-section:nth-child(3) { animation-delay: 0.15s; }
.sitemap-section:nth-child(4) { animation-delay: 0.2s; }
.sitemap-section:nth-child(5) { animation-delay: 0.25s; }