*,
*:after,
*:before {
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s  ease-in-out;
    -o-transition: all 0.5s  ease-in-out;
    -ms-transition: all 0.5s  ease-in-out;
    transition: all 0.5s  ease-in-out;  
}

/* ===== VARIABLES AND BASE STYLES ===== */
:root {
    --primary-color: #131210;
    --secondary-color: #54595F;
    --texte : #676565;
    --accentué : #C5E3CA;
    --font-family: 'Cardo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --lite:#eae8e1;
    --dark:#111010;
    --grey-lite:#f5f5f5;
    --grey-med:#5f5b5b;
    --gre-dark:#212529;
    --green-med:#91928b;
    --sage-green: #A6B99B;
    --cream: #F8F7F3;
    --beige: #E9E2D0;
    --mustard: #CBB279;
    --taupe: #D3A375;
    --taupe-claire:#9a8f7b;
    --blush: #E9CEC7;
    --black:#000;
    --white:#FFF;
    --overlay-color: rgba(18,13,1,.8);
    --shadow-color: rgba(0,0,0,0.3);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --white-overlay: rgba(255, 255, 255, 0.8);
    --error-red: #dc3545;
    --facebook-blue: #1877f2;
    --twitter-blue: #1da1f2;
    --linkedin-blue: #0077b5;
    --whatsapp-green: #25d366;
    --pinterest-red: #e60023;
    --instagram-pink: #e4405f;
    --overlay-gradient: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0));
}

/* ===== GLOBAL STYLES ===== */

a{    
    text-decoration: none!important;
}
figure{
    margin: 0;
    padding: 0;
    position: relative;
}



/* ===== LAYOUT ===== */

.container{
    max-width:1250px;
}

.site-main{
    max-width: 100%!important;
    width: 100%;
}

.has-mask{
    position: relative;
}
.has-mask .e-con-inner{
    position: relative;
    z-index: 15;
}

.has-mask::before,.has-mask::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.has-mask::before,.mask-top::before{
    -webkit-mask: url(/media/images/mask-top.png);
    mask: url(/media/images/mask-top.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-position: center top;
    
}
.has-mask::after,.mask-bottom::before{
    -webkit-mask: url(/media/images/mask-bottom.png);
    mask: url(/media/images/mask-bottom.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-position: center bottom;
    
}

.mask-lite::before,.mask-lite::after{
    background: var(--grey-lite);
}
 
.figure-decore a{
    position: relative;
}

.figure-decore a::before,.figure-decore a::after{
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
}

.figure-decore a::before{
    border: 2px solid var(--blush);
    border-radius: 200px;    
}

.figure-decore a::after{
    background: url(/media/images/shape-decore-top.svg) top right no-repeat, url(/media/images/shape-decore-bottom.svg) bottom left no-repeat;
}

.has-decore{
    position: relative;
}
.has-decore::before,.has-decore::after{
    border: none;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    
}
.has-decore::before{
    background: url(/media/images/shape-decore-top.svg) top right no-repeat;
    background-size: 73%;
    top: -25px;
    right: -20px;

    
}
.has-decore::after{
    background:url(/media/images/shape-decore-bottom.svg) bottom left no-repeat;
    background-size: 73%;
    bottom: -25px;
    left: 0;
    
}

.has-decore>div{
    position: relative;
    z-index: 10;
}
 

/* ===== HEADER ===== */
.header-info{
    background: var(--mustard);
    color: var(--white);
}

.mask-logo{
    position: relative;
}

.mask-logo::after{
    background: var(--grey-lite);
    content: '';
    -webkit-mask: url(/media/images/mask-logo.svg);
    mask: url(/media/images/mask-logo.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-position: right bottom;
    position: absolute;
    top: 0;
    right: 0;
    bottom: -10px;
    left: -100%;
}


.header-info i,.coords i{
    background: var(--white);
    border-radius: 100%;
    color: var(--mustard);
    display:flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 22px;
    min-width: 40px;
    width: 40px;
}
.header-info i:hover,.coords i:hover,.coords a:hover i{
    background: var(--taupe-claire);
    color: var(--white);
}

.coords{
    font-size: 14px;
    line-height: 16px;
}

.coords .phone a{
    color: var(--white);
    font-size: 22px;
    font-weight: 500;
}
.coords .phone a:hover i,.coords .address:hover i{
    background: var(--taupe-claire);
    color: var(--white);
}



.logo img{
    max-width: 200px;
}

ul.main-nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    column-gap: 30px;
    margin: 0;
    padding: 0;
}
ul.main-nav a{
    color: var(--taupe-claire);
    font-size: 18px;
}


ul.main-nav li{
    position: relative;
}

ul.main-nav>li>a{
    position: relative;
}

ul.main-nav>li>a:hover,ul.main-nav>li.current_page_item>a{
    color: var(--mustard);
}

ul.main-nav>li>a::before,ul.main-nav>li>a::after{
    background: var(--mustard);
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    right: 50%;
    bottom: -2px;
    left: 50%;
    opacity: 0;
}
ul.main-nav>li:hover>a::before, ul.main-nav>li.current_page_item>a::before{
    left: 0;
    opacity: 1;
}
ul.main-nav>li:hover>a::after, ul.main-nav>li.current_page_item>a::after{
    right: 0;
    opacity: 1;
}

ul.main-nav ul{
    background: var(--white);
    box-shadow: 0 0 5px var(--secondary-color);
    display: none;
    list-style: none;
    margin: 0;
    min-width: 320px;
    padding: 15px;
    position: absolute;
    top: 100%;
    z-index: 999;
}
ul.main-nav li:hover ul{
    display: block;
}

ul.main-nav li ul li{
    border-bottom: 1px solid var(--beige);
    padding: 5px 0;
}
ul.main-nav li ul li:last-of-type{
    border: none;
}
ul.main-nav li ul li a{
    color: var(--secondary-color);
    font-size: 14px;
}
ul.main-nav li ul li a:hover,ul.main-nav li ul li.current_page_item a{
    color: var(--taupe-claire);
}

ul.main-nav li.cta.cta-devis{
    margin-left: auto;
}

ul.main-nav li.cta.cta-devis a{
    background: var(--mustard);
    border-radius: 30px;
    color: var(--white);
    font-size: 16px;
    padding: 10px 30px;
}
ul.main-nav li.cta.cta-devis a:hover{
    background: var(--taupe-claire);
    color: var(--white);
}
ul.main-nav li.cta.cta-devis a::before,ul.main-nav li.cta.cta-devis a::after{
    display: none;
}



/* Offcanvas Styles */
.offcanvas-toggle {
    background: none;
    border: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
}
.offcanvas-toggle:hover,.offcanvas-toggle:focus{
    background: none;
}

.offcanvas-toggle i{
    color: var(--primary-color);
    font-size: 22px;
}

.offcanvas {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    min-height: 100vh;
    background-color: var(--cream);
    box-shadow: -2px 0 5px var(--shadow-color);
    padding: 40px 0;
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.offcanvas.open {
    left: 0;
    visibility: visible;
}

.offcanvas-content {
    padding: 20px;
    position: relative;
}

.offcanvas-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 30px;
    margin: 0;
    padding: 0;    
    position: absolute;
    top: 10px;
    right: 10px;    
}
.offcanvas-close:hover{
    background: none;
    color: var(--taupe);
}

.offcanvas-nav {
    margin-bottom: 20px;
}

.offcanvas-nav ul {
    list-style: none;
    padding: 0;
}

.offcanvas-nav li {
    margin-bottom: 10px;
}

.offcanvas-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.offcanvas-nav a:hover {
    color: var(--sage-green);
}

.offcanvas-contact,
.offcanvas-social {
    margin-bottom: 20px;
}

.offcanvas-contact p,
.offcanvas-social a {
    margin: 5px 0;
    color: var(--secondary-color);
}

.offcanvas-contact .coords i{
    background: var(--blush);
}

.offcanvas-contact .coords a{
    color: var(--taupe-claire);
}

.offcanvas-social a {
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.offcanvas-social a:hover {
    color: var(--sage-green);
}

/* Contact Info Icons */
.contact-info i,
.footer-contact-info i,
.offcanvas-contact i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Instagram Slider Styles */
.instagram-slider {
    margin-top: 30px;
}

.instagram-slider .carousel {
    max-width: 400px;
    margin: 0 auto;
}

.instagram-slider .carousel-item img {
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px var(--shadow-light);
}

.instagram-slider .carousel-control-prev,
.instagram-slider .carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.instagram-slider .carousel-control-prev-icon,
.instagram-slider .carousel-control-next-icon {
    background-color: var(--mustard);
    border-radius: 50%;
    padding: 10px;
}

.instagram-slider .carousel-indicators {
    bottom: -40px;
}

.instagram-slider .carousel-indicators button {
    background-color: var(--taupe-claire);
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.instagram-slider .carousel-indicators .active {
    background-color: var(--mustard);
}

/* CATEGORY CONFIG  */

span[class*="cat-"]{
    padding: 3px 10px;
    text-transform: uppercase;
}

.cat-communication-globale{
    background: var(--blush);
    color: var(--white);
}
.cat-seo-referencement{
    background: var(--sage-green);
    color: var(--primary-color);
}
.cat-reseaux-sociaux{
    background: var(--beige);
    color: var(--primary-color);
}

.cat-creation-de-site-internet{
    background: var(--taupe-claire);
    color: var(--white);
}

.cat-realisations-etudes-de-cas{
    background: var(--mustard);
    color: var(--white);
}

/* POST GALERIE */

.section-featured figure>a{
    display: block;
    position: relative;
    overflow: hidden;
}

.section-featured figure>a::before{
    background: var(--overlay-gradient);
    content: '';    
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.section-featured figure figcaption{
    font-style: normal;
    padding: 5px 15px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
}
.section-featured figure h3{
    font-size: 14px;
}

.section-featured figure figcaption a{
    color: var(--white);
    display: block;
}

.section-featured figure figcaption a.feature-cat{
    font-size: 12px;
}

.section-cat-list h2{
    border-bottom: 2px solid var(--primary-color);
    font-size: 18px;
    margin-bottom: 40px;
}

.section-cat-list h2.communication-globale{
    border-bottom-color:var(--blush);
}
.section-cat-list h2.reseaux-sociaux{
    border-bottom-color:var(--beige);
}
.section-cat-list h2.seo-referencement{
    border-bottom-color:var(--sage-green);
}
.section-cat-list h2.creation-de-site-internet{
    border-bottom-color:var(--taupe-claire);
}
.section-cat-list h2.has-realisations-etudes-de-cas{
    border-bottom-color:var(--mustard);
}

.section-cat-list h3{
    font-size: 22px;
    font-weight: 400;
}

.section-cat-list a{
    color: var(--dark);
}

/* TEMPLATE */
.td-image-container{
    position: relative;
}
.td-image-container span[class*="cat-"]{
    position: absolute;
    bottom: 0; 
    left: 0;
    z-index: 4;
}

.category-header{
    background-color: var(--gre-dark);
    background-size: cover;
    background-position: center;
    margin-top: -120px;
    padding-top: 120px;
    position: relative;
}

.category-header::before{
    background: var(--overlay-color);
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.category-header .container{
    position: relative;
    z-index: 10;
}

.wrap-banner{
    position: relative;
}



.category-title{
    font-size: 60px;
    font-weight: 800;
}
.category-title span{
    color: var(--sage-green);
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.post-item h3{
    font-size: 22px;
}
.post-item a{
    color: var(--primary-color);
}


/* Pagination - Events blocks */
.td-pagination-wrap {
	display: flex;
	gap: 12px;
}
.td-pagination-wrap .btn {
	border: 1px solid var(--dtia-secondary-color, #54595F);
	color: var(--dtia-secondary-color, #54595F);
	padding: 6px 14px;
	line-height: 1.2;
	border-radius: 2px;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: .02em;
}
.td-pagination-wrap .btn:hover {
	background: var(--dtia-secondary-color, #54595F);
	color: #fff;
}
.td-pagination-wrap .btn.disabled,
.td-pagination-wrap .btn[aria-disabled="true"] {
	opacity: .5;
	pointer-events: none;
}
.td-prev-icon, .td-next-icon {
	margin: 0 6px;
}

/* FOOTER */

.footer-wrap{
    background: var(--gre-dark);    
    position: relative;
}
.footer{
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
.footer::before{
    background: var(--grey-lite);
    content: '';
    -webkit-mask: url(/media/images/mask-top.png);
    mask: url(/media/images/mask-top.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-position: center top;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.footer::after{
    background: var(--dark);
    content: '';
    -webkit-mask: url(/media/images/mask-bottom.png);
    mask: url(/media/images/mask-bottom.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-position: center bottom;
    position: absolute;
    top: 0;
    right: 0;
    bottom: -20px;
    left: 0;
}

.footer .container{
    position: relative;
    z-index: 10;
}

.title-foot{
    color: var(--blush);
    font-size: 20px;
}

.footer-coords i{
    background: var(--white);
    border-radius: 100%;
    color: var(--mustard);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 22px;
    min-width: 40px;
    width: 40px;
}

.footer-coords a{
    color: var(--white);
}

.menu-foot ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-foot ul li a{
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 10px;
    
}
.menu-foot ul li a:hover,.menu-foot ul li.current_page_item a{
    color: var(--sage-green);
}


.footer-copyright{
    background:var(--dark);
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
}

.copyright-text ul{
    display: inline-flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}
.copyright-text ul li a{
    color: var(--sage-green);
}

.copyright-figure img{
    height: auto;
    max-width: 120px;
    width: 100%;
}

/* AJAX LOAD MORE STYLES */
.td-load-more-wrap {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.td_ajax_load_more {
    display: inline-block;
    padding: 12px 30px;
    background: var(--mustard);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--mustard);
    position: relative;
    overflow: hidden;
}

.td_ajax_load_more:hover {
    background: var(--taupe-claire);
    border-color: var(--taupe-claire);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.td_ajax_load_more.loading {
    pointer-events: none;
    opacity: 0.7;
}

.td-load-more-txt {
    display: inline-block;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.td-load-more-icon {
    display: inline-block;
    transition: all 0.3s ease;
}

.td-load-more-icon.spinning i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.td_ajax_load_more i {
    font-size: 12px;
    transition: all 0.3s ease;
}

/* No posts found */
.td_block_no_posts {
    text-align: center;
    padding: 40px 20px;
}

.no_posts_found {
    color: var(--secondary-color);
    font-size: 16px;
}

/* PAGINATION */
.pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid var(--beige);
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--mustard);
    color: var(--white);
    border-color: var(--mustard);
}

/* NO POSTS */
.no-posts {
    text-align: center;
    padding: 50px 20px;
}

.no-posts h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-posts p {
    color: var(--texte);
    font-size: 18px;
}

/* ITEM POST CAT POSITION */
.item-post-cat {
    position: relative;
}

/* LOADING OVERLAY FOR PAGINATION */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--beige);
    border-top: 4px solid var(--mustard);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}


/* RECENT ITEMS THUMBNAILS */

.post-sidebar-column  h3,.similar-articles-carousel h3{
    border-bottom: 1px solid var(--taupe);
    color: var(--primary-color);
    font-size: 18px;    
    margin: 40px 0;
    text-transform: uppercase;
}

.recent-item {
    margin-bottom: 15px;
}

.recent-thumbnail {
    margin-bottom: 8px;
}

.recent-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.recent-thumbnail:hover img {
    transform: scale(1.05);
}

.recent-text h4 a{
    color: var(--gre-dark);
    font-size: 16px;
    line-height: 18px;
}


/* SIMILAR ARTICLES SLIDER */
.similar-slider {
    width: 100%;
    margin: 20px auto;
}

.similar-item {
    text-align: center;
    padding: 0 10px;
}

.similar-item h4 {
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.3;
}

.similar-item h4 a {
    color: var(--primary-color);
    text-decoration: none;
}

.similar-item h4 a:hover {
    color: var(--accentué);
}

.galerie-carousel-container{
    max-height: 700px;
    overflow: hidden;
}

.galerie-carousel-container .similar-item{
    text-align: left;
}



/* Slick overrides */
.similar-slider .slick-dots {
    bottom: -30px;
}

.similar-slider .slick-dots li button{
    background: var(--gre-dark);
    height: 2px;
    margin: 0;
    padding: 0;
    width: 20px;
}
.similar-slider .slick-dots li button:hover{
    background: var(--mustard);
}
.similar-slider .slick-dots li.slick-active button{
    background: var(--mustard);
    border-radius: 100%;
    height: 15px;
    width: 15px;
}

.similar-slider .slick-dots li button:before {
    display: none;
}

.similar-slider .slick-dots li.slick-active button:before {
    display: none;
    color: var(--mustard);
}

/* RESPONSIVE SLIDER */
@media only screen and (min-width: 1100px) {
    .similar-item {
        width: calc(2.5% - 20px);
    }
}

@media only screen and (max-width: 1100px) {
    .similar-item {
        width: calc(3.3333333% - 20px);
    }
}

@media only screen and (max-width: 900px) {
    .similar-item {
        width: calc(5% - 20px);
    }
}

@media only screen and (max-width: 550px) {
    .similar-item {
        width: calc(10% - 20px);
    }
}

/* SOCIAL SHARING STYLES */
.social-sharing {
    border-top: 1px solid var(--taupe);
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--beige);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
    border-color: var(--mustard);
}

.social-link.facebook:hover {
    background: var(--facebook-blue);
    color: var(--white);
    border-color: var(--facebook-blue);
}

.social-link.twitter:hover {
    background: var(--twitter-blue);
    color: var(--white);
    border-color: var(--twitter-blue);
}

.social-link.linkedin:hover {
    background: var(--linkedin-blue);
    color: var(--white);
    border-color: var(--linkedin-blue);
}

.social-link.whatsapp:hover {
    background: var(--whatsapp-green);
    color: var(--white);
    border-color: var(--whatsapp-green);
}

.social-link.pinterest:hover {
    background: var(--pinterest-red);
    color: var(--white);
    border-color: var(--pinterest-red);
}

.social-link.instagram:hover {
    background: var(--instagram-pink);
    color: var(--white);
    border-color: var(--instagram-pink);
}

.social-link.email:hover {
    background: var(--mustard);
    color: var(--white);
    border-color: var(--mustard);
}

.social-link.copy-link:hover {
    background: var(--sage-green);
    color: var(--white);
    border-color: var(--sage-green);
}

.social-link.copied.success {
    background: var(--sage-green);
    color: var(--white);
    border-color: var(--sage-green);
    animation: pulse 0.3s ease;
}

.social-link.copied.error {
    background: var(--error-red);
    color: var(--white);
    border-color: var(--error-red);
    animation: shake 0.3s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.social-link i {
    font-size: 16px;
    transition: all 0.3s ease;
}

/* RESPONSIVE SOCIAL SHARING */
@media screen and (max-width:1199px){
    html{
        overflow-x: hidden;
    }
    ul.main-nav{
        column-gap: 15px;
    }
    .footer .coords .phone a{
        font-size: 18px;
    }
}

@media screen and (max-width:991px){
    .header-info{
        position: relative;
    }
    
    .mask-logo{
        display: none;
    }
    .top-menu{
        display: none;
    }
    .section-featured figure figcaption a.feature-cat{
        font-size: 10px;
    }
    .section-featured figure h3{
        font-size: 16px;
    }
    .section-featured .td-excerpt{
        font-size: 12px;
    }
    .section-cat-list h3{
        font-size: 18px;
    }
}



@media (max-width: 768px) {
    .social-sharing {
        gap: 10px;
        justify-content: center;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link i {
        font-size: 14px;
    }
    .logo-foot img{
        max-width: 200px;
    }
}

@media screen and (max-width:575px){
    .category-title{
        font-size: 45px;
    }
}

@media (max-width: 480px) {
    .social-sharing {
        gap: 8px;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-link i {
        font-size: 12px;
    }
    .section-cat-list h2{
        font-size: 16px;
    }
}

/* LIKE BUTTON STYLES */
.post-stats .like-button {
    margin-left: auto;
}

.hbcta-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #007bff;
    background: transparent;
    color: #007bff;
    cursor: pointer;
}

.hbcta-like-btn:hover {
    background: #007bff;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

/* Not liked state - empty heart */
.hbcta-like-btn.not-liked {
    border-color: #6c757d;
    color: #6c757d;
}

.hbcta-like-btn.not-liked:hover {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
}

.hbcta-like-btn.not-liked i {
    color: #6c757d;
}

/* Liked state - filled heart */
.hbcta-like-btn.liked {
    border-color: #dc3545;
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.hbcta-like-btn.liked:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

.hbcta-like-btn.liked i {
    color: #dc3545;
}

.hbcta-like-btn.liked:hover i {
    color: white;
}

/* Heart icon animation */
.hbcta-like-btn i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.hbcta-like-btn.not-liked:hover i {
    transform: scale(1.1);
}

.hbcta-like-btn.liked i {
    animation: heartbeat 0.6s ease-in-out;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

/* Like count styling */
.like-count {
    font-weight: 600;
    opacity: 0.8;
}

.hbcta-like-btn:hover .like-count {
    opacity: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hbcta-like-btn {
        padding: 6px 12px;
        font-size: 13px;
        gap: 6px;
    }
    
    .hbcta-like-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .post-stats {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .like-button {
        margin-left: 0;
    }
    
    .hbcta-like-btn {
        width: 100%;
        justify-content: center;
        max-width: 120px;
    }
}

/* RESPONSIVE STYLES */




