/*!
Theme Name: Pule Child
Description: Child theme for Pule - Furniture price comparison and shopping platform
Author: Pule Team
Author URI: https://pule.se/
Template: pule
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: pule-child
*/

/* Custom styles for Pule child theme go here */

/* Hide navbar navigation on mobile - users will use search bar hamburger instead */
@media (max-width: 768px) {
    .main-navigation .nav-menu-wrapper {
        display: none !important;
    }
}

/*
 * Prevent visited links from changing color throughout the entire website
 * This ensures all links maintain their original appearance after being clicked
 */

/* Universal visited link override - maintains original link colors */
a:visited {
    color: inherit !important;
}

/* Specific overrides for theme elements to maintain their intended colors */
.site-title a:visited,
.main-navigation a:visited,
.primary-menu li a:visited,
.secondary-menu li a:visited,
.footer-menu li a:visited,
.category-card-link:visited,
.job-board-item-link:visited,
.related-job-link:visited,
.category-link:visited,
.price-link:visited,
.read-more:visited,
.job-tag-item:visited,
.job-category-tag:visited,
.firstButton:visited,
.secondButton:visited,
.job-course-cta:visited,
.category-course-cta:visited {
    color: inherit !important;
}

/* Comprehensive footer link styling to prevent color inconsistencies */
.footer-menu a,
.footer-menu li a,
.footer-section ul li a,
.footer-social a,
.site-footer a {
    color: #e8e8e8 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-menu a:hover,
.footer-menu li a:hover,
.footer-section ul li a:hover,
.footer-social a:hover,
.site-footer a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

.footer-menu a:visited,
.footer-menu li a:visited,
.footer-section ul li a:visited,
.footer-social a:visited,
.site-footer a:visited {
    color: #e8e8e8 !important;
    text-decoration: none !important;
}

.footer-menu a:active,
.footer-menu li a:active,
.footer-section ul li a:active,
.footer-social a:active,
.site-footer a:active {
    color: #e8e8e8 !important;
    text-decoration: none !important;
}

/* Ensure hover states still work on visited links */
a:visited:hover,
a:visited:focus {
    color: inherit !important;
}


