/*
Theme Name: ExperPrints
Theme URI:
Author: ExperPrint, LLC
Author URI:
Description: ExperPrints Media theme — Bold & Energetic brand identity.
             CMYK color system: Cyan #00B4D8 / Magenta #E91E8C / Yellow #FFD600 / Black #1a1a1a
             Full-service printing, graphic design & web development.
             Campbellsville, KY — Serving the USA.
Requires at least: 6.9
Tested up to: 6.9
Requires PHP: 5.7
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: experprints
Tags: full-site-editing, block-patterns, blog, portfolio
*/

/* ============================================================
   Everything below is CSS that theme.json CANNOT express:
   transitions, transforms, sticky positioning, vendor prefixes,
   and selectors targeting raw HTML inside wp:html blocks.
   All typography, colors, spacing, and block defaults live in
   theme.json and functions.php inline_style.
   ============================================================ */

/* ---- Global resets ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ---- Font smoothing (vendor-prefixed, not in theme.json) ---- */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- Navigation: hover + active ---- */
.wp-block-navigation .wp-block-navigation-item__content:hover {
    color: var(--wp--preset--color--cyan, #00b4d8) !important;
}

.wp-block-navigation .current-menu-item .wp-block-navigation-item__content {
    color: var(--wp--preset--color--cyan, #00b4d8) !important;
}

/* ---- Sticky header ---- */
.wp-block-template-part[tagName="header"],
header {
    position: sticky;
    top: 0;
    z-index: 100;
}

body.admin-bar .wp-block-template-part[tagName="header"],
body.admin-bar header {
    top: 32px;
}

/* ---- Button hover: lift + transition ---- */
.wp-element-button:hover,
.wp-block-button__link:hover {
    transform: translateY(-2px);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

/* ---- Outline button: brand cyan ---- */
.wp-block-button.is-style-outline .wp-block-button__link {
    border-color: var(--wp--preset--color--cyan, #00b4d8) !important;
    color: var(--wp--preset--color--cyan, #00b4d8) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background-color: var(--wp--preset--color--cyan, #00b4d8) !important;
    color: var(--wp--preset--color--black, #1a1a1a) !important;
}

/* ---- Service card: absolute number + image fill ---- */
.ep-service-card-body {
    position: relative;
}

.ep-service-number {
    position: absolute !important;
    top: 24px;
    right: 32px;
    pointer-events: none;
    transition: color 0.3s ease;
    margin: 0 !important;
}

.ep-service-image-col {
    position: relative;
    overflow: hidden;
}

.ep-service-image-col .wp-block-image,
.ep-service-image-col .wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Marquee / ticker animation ---- */
.ep-marquee-wrap {
    overflow: hidden;
}

.ep-marquee-track {
    display: flex;
    gap: 60px;
    animation: ep-marquee 30s linear infinite;
    width: max-content;
}

.ep-marquee-track:hover {
    animation-play-state: paused;
}

.ep-marquee-item {
    font-family: var(
        --wp--preset--font-family--heading,
        "Barlow Condensed",
        sans-serif
    );
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555555;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ep-marquee-item::before {
    content: "\25C6";
    font-size: 8px;
    color: var(--wp--preset--color--cyan, #00b4d8);
}

@keyframes ep-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ---- Footer CMYK dots ---- */
.footer-cmyk-dots {
    display: flex;
    gap: 0;
}

.footer-cmyk-dots span {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.footer-cmyk-dots span:nth-child(1) {
    background: var(--wp--preset--color--cyan, #00b4d8);
}
.footer-cmyk-dots span:nth-child(2) {
    background: var(--wp--preset--color--magenta, #e91e8c);
}
.footer-cmyk-dots span:nth-child(3) {
    background: var(--wp--preset--color--yellow, #ffd600);
}
.footer-cmyk-dots span:nth-child(4) {
    background: #555555;
}

/* ---- Utility: dividers between siblings ---- */
.divide-y-1-black > * + * {
    border-top: 1px solid var(--wp--preset--color--black, #1a1a1a);
}

.divide-x-1-black > * + * {
    border-left: 1px solid var(--wp--preset--color--black, #1a1a1a);
}

.unstyledLink a {
    text-decoration: none;
}

footer {
    margin-block-start: 0;
}
.ep-service-link a {
    text-decoration: none;
}

.ep-testimonials-grid {
    gap: 1px;
}
