/*
Theme Name: Twenty Twenty-Five Child
Description: A child theme for the Twenty Twenty-Five WordPress theme
Author: Karich.Design
Author URI: https://github.com/jerrybarry
Template: twentytwentyfive
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive-child
*/

/* Import the parent theme's styles */
@import url("../twentytwentyfive/style.css");

/* Add your custom styles below */


/* Overlay header on slider – Twenty Twenty-Five + Sliderberg */
.kd-header {  /* adjust selector if needed */
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: none !important;
}

/* Optional: make sure your slider sits right at the top */
.wp-block-sliderberg-sliderberg {
    margin-block-start: 0rem;
}

.kd-underhead {
    margin-block-start: 0rem;
}

.full-width-text {
    width: 100%;
    max-width: 100%;
}
.full-width-text p {
    width: 100%;
    max-width: 100%;
}
/* .co-hero-dots{
    display: none;
} */
/* 
.co-hero-dots{
    background: linear-gradient(to top, rgba(10, 38, 72, 0.72), rgba(30, 95, 175, 0.12), transparent);
} */
.copyright-text {
    font-size: var(--wp--preset--font-size--small) !important;
}


/* Project archive category strip — not .co-type-pill (Cleaner Offer plugin) */
.co-project-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
    /* Avoid theme/block inherited smaller typography on some templates */
    font-size: 14px;
    line-height: 1.35;
}

.co-project-cat-pill {
    text-decoration: none;
    box-sizing: border-box;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 40px;
    padding: 10px 20px;
    font-size: 14px;
    min-height: 44px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background-color: transparent;
}

.co-project-cat-pill i {
    font-size: 16px;
    color: #007cba;
}

.co-project-cat-pill:hover {
    background: #007cba;
    border-color: #007cba;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.2);
}

.co-project-cat-pill:hover i {
    color: white;
}

.co-project-cat-pill.is-active {
    background: #007cba;
    border-color: #007cba;
    color: white;
}

.co-project-cat-pill.is-active i {
    color: white;
}

.co-project-cat-pill--all {
    border-style: dashed;
}

.co-project-cat-pill--all.is-active {
    border-style: solid;
}

.co-project-cat-count {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 2px;
    line-height: 1.2;
}

.co-project-cat-pill:hover .co-project-cat-count,
.co-project-cat-pill.is-active .co-project-cat-count {
    background: rgba(255, 255, 255, 0.25);
    color: inherit;
}


.kd-bullets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}


.kd-gear {
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}





@media (max-width: 768px) {
    .kd-bullets {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px !important;
        text-align: left;
        padding-left: var(--wp--style--root--padding-left) !important;
    }

    .kd-bullets > * {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
}




/* Responsive */
@media (max-width: 768px) {
    .co-project-cat-pill {
        padding: 6px 14px;
        font-size: 12px;
    }

    .co-project-cat-pill i {
        font-size: 12px;
    }

    .co-project-cat-count {
        font-size: 11px;
        padding: 2px 6px;
    }
}