/* Xtreme Paintball & Airsoft — Custom Overrides
   Cinematic color grading for scraped images + layout fixes */

/* Dark cinematic treatment for real scraped photos */
.xtreme-cinematic img {
    filter: saturate(0.75) contrast(1.15) brightness(0.88);
    transition: filter 0.3s ease;
}
.xtreme-cinematic img:hover {
    filter: saturate(0.9) contrast(1.1) brightness(0.95);
}

/* Hero image — transparent PNG, no background treatment needed */
.hero-section .hero-image img {
    border-radius: 0;
    filter: none;
    max-height: 520px;
    object-fit: contain;
}

/* About section image containers — enforce aspect ratio */
.gt-about-image {
    border-radius: 16px;
    overflow: hidden;
}
.gt-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonial image area */
.gt-testimonial-section .text-image {
    border-radius: 16px;
    overflow: hidden;
}
.gt-testimonial-section .text-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Newsletter/CTA section — better background coverage */
.gt-newsletter-wrapper {
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
}
.gt-newsletter-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(255,74,23,0.15) 100%);
    border-radius: 16px;
    z-index: 0;
}
.gt-newsletter-wrapper > * {
    position: relative;
    z-index: 1;
}

/* Gallery images — uniform treatment */
.gt-epic-gallery-item img,
.gt-gallery-iamge img {
    transition: filter 0.3s ease, transform 0.3s ease;
}
.gt-epic-gallery-item:hover img,
.gt-gallery-iamge:hover img {
    filter: brightness(1.1) saturate(1.1);
    transform: scale(1.02);
}

/* Field cards — uniform card sizing */
.gt-game-section .row {
    display: flex;
    flex-wrap: wrap;
}
.gt-game-section .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.gt-gaming-card-item {
    height: 100%;
    width: 100%;
}
.gt-gaming-image {
    height: 380px;
    overflow: hidden;
}
.gt-gaming-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gt-gaming-card-item .gt-game-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Party/detail section hero images — full width centered */
.gt-service-details-section .gt-details-image {
    border-radius: 16px;
    overflow: hidden;
}
.gt-service-details-section .gt-details-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

/* Breadcrumb section dark overlay */
.gt-breadcrumb-wrapper {
    background-size: cover;
    background-position: center;
    position: relative;
}
.gt-breadcrumb-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.72) 100%);
    z-index: 0;
}
.gt-breadcrumb-wrapper > * {
    position: relative;
    z-index: 1;
}

/* Do not download the broken FA Pro Light font (console glyph-bbox spam).
   .fal icons used in the footer/offcanvas map to solid instead. */
@font-face {
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local("Arial");
    size-adjust: 0%;
}
@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local("Arial");
    size-adjust: 0%;
}
.fal, .fa-light {
    font-weight: 900 !important;
}

/* —— Video hero —— */
.hero-section.hero-1.hero-video-epic {
    position: relative;
    height: 100vh;
    min-height: 640px;
    max-height: 920px;
    padding: 0 !important;
    background: #050505 !important;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5,5,5,.55) 0%, rgba(5,5,5,.28) 42%, rgba(5,5,5,.78) 100%);
}
.hero-video-epic > .container {
    position: relative;
    z-index: 2;
    padding-top: 88px;
}
.hero-copy {
    max-width: 760px;
    margin: 0 auto;
    padding: 36px 32px 40px;
    text-align: center;
    background: rgba(8, 8, 10, .62);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    backdrop-filter: blur(6px);
    transform: none !important;
    animation: none !important;
}
.hero-copy .hero-kicker {
    margin: 0 0 14px;
    color: #ff4a17;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
}
.hero-copy h1 {
    margin: 0;
    color: #fff !important;
    font-size: clamp(40px, 6.4vw, 78px);
    line-height: .95;
    letter-spacing: .02em;
    text-transform: uppercase;
    transform: none !important;
    animation: none !important;
    text-shadow: none;
}
.hero-copy .hero-sub {
    margin: 18px auto 0;
    max-width: 34em;
    color: #f2f2f2;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
}
.hero-copy .hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}
.hero-copy .gt-theme-btn {
    opacity: 1;
}
@media (max-width: 767px) {
    .hero-section.hero-1.hero-video-epic {
        height: 88vh;
        min-height: 560px;
    }
    .hero-copy {
        padding: 28px 18px 32px;
        margin: 0 8px;
    }
}

/* Terminator / event strip */
.xp-event-banner {
    background: linear-gradient(90deg, #1a0a06 0%, #3a1208 50%, #1a0a06 100%);
    border-top: 1px solid rgba(255,74,23,.35);
    border-bottom: 1px solid rgba(255,74,23,.35);
    padding: 14px 0;
}
.xp-event-banner a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #fff;
    text-decoration: none;
    flex-wrap: wrap;
    text-align: center;
}
.xp-event-banner strong {
    color: #ff4a17;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 13px;
}
.xp-event-banner span {
    font-size: 15px;
}

/* Kill leftover template 60x2 watermark panel */
.gt-contact-bg {
    background-image: none !important;
    background: linear-gradient(180deg, #161616 0%, #0c0c0c 100%) !important;
}
.gt-bg-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 16px;
}

/* RecTech embeds */
.xp-embed {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    min-height: 700px;
}
.xp-embed iframe {
    width: 100%;
    min-height: 720px;
    border: 0;
    display: block;
    background: #111;
}

/* Tighter field cards */
.gt-gaming-content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* —— Blend / flow polish —— */

/* Template clip-path buttons look cut-off; use rounded pills instead */
.gt-theme-btn,
.gt-theme-btn.gt-style-border,
.gt-theme-btn.gt-style-border:hover {
    clip-path: none !important;
    border-radius: 10px;
}
.gt-theme-btn.gt-style-border::before {
    display: none !important;
}

/* Header Book Now is a gt-theme-btn on inner pages */
.header-1 .header-right .gt-theme-btn {
    min-width: 0;
    padding: 12px 22px;
    font-size: 14px;
    clip-path: none !important;
    border-radius: 8px;
}
@media (min-width: 1200px) {
    .header-1 .header__hamburger,
    .header-1 .sidebar__toggle {
        display: none !important;
    }
}

/* Back-to-top sits on RecTech forms and banners — keep it out of the way */
.gt-back-to-top,
.gt-back-to-top.show {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    right: 16px;
    bottom: 16px;
    z-index: 40;
}
@media (max-width: 991px) {
    .gt-back-to-top {
        display: none !important;
    }
}

/* Breadcrumb banners: cover the photo, show the title, drop leftover shapes/glow */
.gt-breadcrumb-wrapper.bg-cover {
    background-size: cover !important;
    background-position: center center !important;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
}
.gt-breadcrumb-wrapper .gt-left-shape,
.gt-breadcrumb-wrapper .gt-right-shape,
.gt-breadcrumb-wrapper .gt-blur-shape {
    display: none !important;
}
.gt-breadcrumb-wrapper .gt-page-heading {
    padding: 72px 16px;
}
.gt-breadcrumb-wrapper .gt-page-heading h1,
.gt-breadcrumb-wrapper .wow {
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,.75);
}
.gt-breadcrumb-wrapper::after {
    display: none !important;
}

/* Round photos and cards so nothing feels clipped */
.gt-epic-gallery-item,
.gt-gallery-iamge,
.gt-gaming-image,
.gt-gaming-card-item,
.gt-about-box,
.gt-pricing-box-items-2,
.gt-contact-bg,
.gt-comment-form-wrap,
.xp-embed,
.gt-details-image,
.gt-newsletter-wrapper {
    border-radius: 16px;
    overflow: hidden;
    clip-path: none !important;
}
.gt-gaming-card-item .gt-gaming-image::before {
    clip-path: none !important;
}
.gt-game-section.fix {
    overflow: visible;
}
.wow.fadeInUp {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}
.gt-epic-gallery-item img,
.gt-gallery-iamge img,
.gt-gaming-image img {
    border-radius: 0;
}

/* About 2x2 tiles were a mix of sharp black boxes */
.gt-about-box {
    border-radius: 12px;
}

/* Inner pages were wasting a full viewport of empty padding after the banner */
.gt-service-title-section.section-padding {
    padding: 48px 0 16px !important;
}
.gt-service-details-section.section-padding {
    padding-top: 56px;
    padding-bottom: 50px;
}
.gt-game-section.section-padding {
    padding-top: 12px !important;
}

/* WOW.js leaves cards/titles at visibility:hidden if the animation never fires */
.wow {
    visibility: visible !important;
}

/* RecTech sits in a dark well — round it so the white widget doesn’t look pasted */
.xp-embed {
    border-radius: 16px;
    min-height: 640px;
}
.gt-comment-form-wrap {
    padding: 28px;
    background: #141414;
}

/* Custom mouse cursors are leftover template chrome */
.mouseCursor {
    display: none !important;
}

/* Giant "xtreme 2026" watermark + decorative shapes behind About */
.gt-about-section > h2.text,
.gt-about-section .left-shape {
    display: none !important;
}

/* Night-ops facility map */
.xp-map-frame {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 74, 23, 0.28);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(255, 74, 23, 0.12);
}
.xp-map-frame img {
    width: 100%;
    height: auto;
    display: block;
}
.xp-map-caption {
    color: #b0b0b0;
    margin-top: 16px;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
