/*
 * Site Extras CSS
 * -----------------------------------------------------------------
 * Extracted from the inline <style> block that sat inside the hero
 * slider markup on the original index.html. Moved here verbatim so
 * it survives no matter how many times the hero-slider section is
 * placed/duplicated on a page (class-based, not ID-based).
 */
.hero-text-slider {
    position: relative;
    padding: 0 0 6px;
}

    .hero-text-slider .hero-slider-btn {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        border: 1.5px solid rgba(255, 255, 255, 0.35);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        cursor: pointer;
        z-index: 20;
        transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

        .hero-text-slider .hero-slider-btn:hover {
            background: #f97316;
            border-color: #f97316;
            transform: translateY(-50%) translateY(-2px);
        }

    .hero-text-slider .hero-slider-prev {
        left: -54px;
    }

    .hero-text-slider .hero-slider-next {
        right: -54px;
    }

@media (max-width: 1199px) {
    .hero-text-slider .hero-slider-prev {
        left: 0;
    }

    .hero-text-slider .hero-slider-next {
        right: 0;
    }
}

@media (max-width: 576px) {
    .hero-text-slider .hero-slider-btn {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}

/*
 * Logo sizing — matches the inline style="width:140px" that was on
 * the original static <img class="navbar-brand"> logo. the_custom_logo()
 * doesn't support inline styles, so this replicates it via CSS instead.
 */
.navbar-brand img,
.navbar-brand .custom-logo {
    width: 140px;
    height: auto;
}

.footer-logo img,
.footer-logo .custom-logo {
    width: 140px;
    height: auto;
}
