/**
 * Sitemap Page Styles
 */

/* Page Container */
.sitemap-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

/* Header */
.sitemap-header {
    text-align: center;
    margin-bottom: 50px;
}

.sitemap-header h1 {
    font-family: 'Canela Text', Georgia, serif;
    font-size: 36px;
    font-weight: 300;
    margin: 0;
}

/* Main Container - Two Column Grid */
.sitemap-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Section (Qatar Today / Explore More) */
.sitemap-section {
    padding-bottom: 40px;
}

.sitemap-section-title {
    font-family: 'Canela Text', Georgia, serif;
    font-size: 24px;
    font-weight: 300;
    color: #2d1f1f;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.sitemap-section-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #888;
    margin: 0 0 30px 0;
}

/* Sub-columns (Women / Men) */
.sitemap-section-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.sitemap-column {
    min-width: 0;
}

/* Gender Title */
.sitemap-gender-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2d1f1f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

/* Category Headers */
.sitemap-category {
    margin-top: 20px;
}

.sitemap-category-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2d1f1f;
    margin: 0 0 8px 0;
}

.sitemap-category-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.sitemap-category-title a:hover {
    color: #666;
}

/* Links */
.sitemap-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sitemap-links li {
    margin: 0;
    padding: 0;
    line-height: 1.8;
}

.sitemap-links a {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2d1f1f;
    text-decoration: none;
    transition: color 0.2s;
}

.sitemap-links a:hover {
    color: #666;
    text-decoration: underline;
}

/* Category sub-links - indented */


.sitemap-category .sitemap-links a {
    color: #555;
}

.sitemap-category .sitemap-links a:hover {
    color: #2d1f1f;
}

/* Tablet - Main columns stack */
@media (max-width: 1023px) {
    .sitemap-page {
        padding: 40px 24px 0px;
    }

    .sitemap-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sitemap-section {
        border-bottom: 1px solid #e5e5e5;
    }

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

/* Mobile - All columns stack and center */
@media (max-width: 767px) {
    .sitemap-page {
        padding: 30px 20px 0px;
    }

    .sitemap-header h1 {
        font-size: 28px;
    }

    .sitemap-section {
        text-align: center;
    }

    .sitemap-section-title {
        font-size: 20px;
    }

    .sitemap-section-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sitemap-column {
        text-align: center;
    }

    .sitemap-gender-title {
        font-size: 15px;
    }

    .sitemap-category .sitemap-links {
        padding-left: 0;
    }
}
