/* Sitemap Page Styles */

/* Hero Banner */
.sitemap-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/assets/images/production/sitemap.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.sitemap-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}
.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-top: 0.5rem;
}

/* Sitemap Grid - Professional Redesign */
.sitemap-grid-section {
    background: #f5f5f7; /* Soft, premium background */
    padding: 100px 0;
}

.sitemap-group {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.sitemap-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.group-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 1rem;
}

.sitemap-list a {
    color: #6e6e73;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    position: relative;
    display: inline-block;
}

.sitemap-list a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.sitemap-list a::before {
    content: '→';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.sitemap-list a:hover::before {
    opacity: 1;
    left: -20px;
}
