/* Sitemap Page Styles */



.sitemap-hero {
    width: 100%;
    background-image: url('../image/ribena-texture-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 200px 20px;
}

.sitemap-hero__title {
    color: #FFFFFF;
    font-family: "Gazpacho", serif;
    font-size: 100px;
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
    line-height: 1.1;
    max-width: 900px;
}

.sitemap-content {
    background-color: #FFF0EE;
    padding: 100px 0;
}

.sitemap-container {
    max-width: 550px;
    margin: 0 auto;
    padding: 0 20px;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-item {
    margin-bottom: 20px;
}

.sitemap-link {
    font-family: "ES Rebond Grotesque", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap-link:hover {
    color: #9B26B6;
}

.sitemap-sub-list {
    list-style: none;
    padding-left: 30px;
    margin-top: 10px;
}

.sitemap-sub-item {
    margin-bottom: 10px;
}

.sitemap-sub-link {
    font-family: "ES Rebond Grotesque", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap-sub-link:hover {
    color: #9B26B6;
}

.sitemap-section-title {
    font-family: "ES Rebond Grotesque", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #000000;
    margin: 40px 0 20px 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .sitemap-hero__title {
        font-size: 70px;
    }
}

@media (max-width: 576px) {
    .sitemap-hero__title {
        font-size: 50px;
    }

    .sitemap-link {
        font-size: 18px;
    }

    .sitemap-sub-link {
        font-size: 16px;
    }
}
