/* True Throw — Custom brand overrides on top of Xeone theme */

/* Hero: darken background image directly so white/teal text is always readable */
#rev_single .rev-slidebg {
    filter: brightness(0.38) saturate(1.1);
}
/* Floating parallax images — add slight warmth to cinema feel */
#rev_single .rs-parallaxlevel-15 img,
#rev_single .rs-parallaxlevel-16 img {
    filter: brightness(0.85) saturate(1.15);
}

/* Brand logo typography */
.tt-brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #212331;
    line-height: 1;
    display: inline-block;
}
.tt-brand-logo-footer {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #212331;
    line-height: 1;
    display: block;
}

/* Hero: dark cinematic gradient behind RS layers */
.tt-hero-dark-bg .rev-slidebg-color {
    background-color: #0D1526 !important;
}

/* White headline text in dark hero */
.tt-hero-headline {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.tt-hero-headline-accent {
    color: #00bcd4;
}
.tt-hero-sub {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    font-weight: 400;
}

/* Product category cards */
.tt-category-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #fff;
}
.tt-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.tt-category-card .card-img-overlay-custom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13,21,38,0.85));
    padding: 20px;
    color: #fff;
}

/* Product grid item */
.tt-product-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    background: #fff;
}
.tt-product-item:hover {
    transform: translateY(-4px);
}
.tt-product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00bcd4;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.tt-product-content {
    padding: 20px;
}
.tt-product-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #212331;
    margin-bottom: 5px;
}
.tt-product-content .tt-model-code {
    font-size: 0.75rem;
    color: #00bcd4;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.tt-product-content .tt-spec-row {
    font-size: 0.8rem;
    color: #666;
}

/* Footer links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links li a:hover {
    color: #00bcd4;
}

/* Footer divider */
.footer-divider {
    border-top: 1px solid #e8e8e8;
}

/* Highlighted process steps */
.process-number.even .pro-step {
    background: #643094;
    box-shadow: 0 10px 30px rgba(100,48,148,0.25);
}

/* Subtle tech highlight for screens */
.tt-spec-highlight {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0,188,212,0.08);
    border: 1px solid rgba(0,188,212,0.2);
    border-radius: 4px;
    color: #00bcd4;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Screen tier / pricing customisation */
.price-table.active {
    border-top: 3px solid #00bcd4;
}

/* Testimonials dark background — switch text to white */
.testimonial-bg-light .testimonial-quote,
.testimonial-bg-light .testimonial-quote h3,
.testimonial-bg-light .testimonial-quote h6,
.testimonial-bg-light .testimonial-quote small {
    color: rgba(255,255,255,0.92) !important;
}

/* Counters parallax: teal icon color on dark bg */
.bg-counter-light .icon-counters .img-icon i {
    color: #00bcd4 !important;
}
.bg-counter-light .icon-counters h4 {
    color: rgba(255,255,255,0.85) !important;
}
.bg-counter-light .counters span,
.bg-counter-light .counters i {
    color: #ffffff !important;
}

/* Gallery: give images consistent aspect ratio */
#flat-gallery .cbp-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Split section images: consistent height */
.half-section .image img.equalheight {
    min-height: 420px;
    object-fit: cover;
}

/* Feature section image: rounded with shadow */
.single-feature .image img {
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Footer: lighter text for body copy */
footer p {
    color: #888;
    font-size: 0.9rem;
}

/* Spec badges used on product listing and detail pages */
.tt-spec-badge {
    display: inline-block;
    background: rgba(0,188,212,0.1);
    border: 1px solid rgba(0,188,212,0.25);
    color: #00bcd4;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Size selector active state on product detail */
.tt-size-btn.btnprimary {
    cursor: default;
}

/* Responsive: tighten hero headline on mobile */
@media (max-width: 767px) {
    .tt-hero-headline {
        font-size: 2.2rem;
    }
}
