/*
Theme Name: Rossen Tushev Child
Theme URI: https://rossentushev.com
Author: Angel Petrov
Author URI: https://rossentushev.com
Description: Child theme for Rossen Tushev theme. Use this theme for customizations.
Version: 1.0.0
Tested up to: 6.7
Requires PHP: 8.0
Template: rossentushev
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rossentushev-child
*/

/*
 * Add your custom styles below this line.
 * These styles will override the parent theme styles.
 */

/* Example: Custom color overrides */
/*
:root {
    --color-primary: #your-color;
    --color-accent: #your-color;
}
*/

/* Custom styles go here */


.footer__column a {
    color: #fff !important;
}

a.header__phone{
	display: none !important;
}

.page-template-page-contact .contact-section {
    display: none !important;
}

/* Pagination styling */
ul.pagination__list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

ul.pagination__list li a,
ul.pagination__list li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.2s ease;
}

ul.pagination__list li a:hover {
    background: #f5f5f5;
    border-color: #0077b6;
    color: #0077b6;
}

ul.pagination__list li span.current,
ul.pagination__list li a.current {
    background: #0077b6;
    border-color: #0077b6;
    color: #fff;
    font-weight: 600;
}

ul.pagination__list li.pagination__prev a,
ul.pagination__list li.pagination__next a {
    padding: 0 18px;
    font-weight: 600;
}