/* ============================================================
   Gracie Barra Corpus Christi — inEVA-inspired full shell
   Fonts   : Barlow (body / nav)  |  Bebas Neue (display)
   Palette : white navbar, off-white page, dark footer
   Overrides Salient/WP inline theme styles via specificity +
   strategic !important
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Bebas+Neue&display=swap");

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --gb-white:      #ffffff;
  --gb-offwhite:   #f5f5f5;
  --gb-light:      #eeeeee;
  --gb-border:     #e0e0e0;
  --gb-ink:        #111111;
  --gb-muted:      #555555;
  --gb-dark:       #1a1a1a;
  --gb-darker:     #111111;
  --gb-accent:     #c1121f;   /* GB red — brand accent only */
  --gb-cta:        #111111;   /* inEVA pill button */
  --gb-cta-hover:  #c1121f;
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL BASE — override WP/Salient inline body styles
   ══════════════════════════════════════════════════════════════ */
html,
body {
  background: var(--gb-offwhite) !important;
  background-color: var(--gb-offwhite) !important;
  color: var(--gb-ink) !important;
  font-family: "Barlow", sans-serif !important;
  font-size: 16px;
  line-height: 1.65;
  border: none !important;
}

/* Container / page wrapper */
.container-wrap,
body .container-wrap,
#ajax-loading-screen {
  background: var(--gb-offwhite) !important;
  background-color: var(--gb-offwhite) !important;
  background-image: none !important;
}

/* ── Typography — display headings ─────────────────────────── */
h1, h2, h3, h4, h5, h6,
body h1, body h2, body h3, body h4, body h5, body h6,
.row .col.section-title h1,
.row .col.section-title h2,
.row .col.section-title h3,
body .row .col h1,
body .row .col h2,
body .row .col h3,
#call-to-action span,
#page-header-bg h1,
#page-header-bg h2,
.nectar-button,
.swiper-slide .content h2 {
  font-family: "Bebas Neue", sans-serif !important;
  letter-spacing: 0.04em;
}

/* ── Typography — body copy ─────────────────────────────────── */
body p,
body li,
body span,
body td,
body .wpb_text_column p,
body .wpb_column > .wpb_wrapper p,
.testimonial_slider blockquote p,
.testimonial_slider blockquote span,
form label {
  font-family: "Barlow", sans-serif !important;
  color: var(--gb-ink) !important;
}

/* ── Links (global) ─────────────────────────────────────────── */
a,
body a {
  color: var(--gb-ink) !important;
  text-decoration: none;
}
a:hover,
body a:hover {
  color: var(--gb-accent) !important;
}

/* ── Section col surfaces ────────────────────────────────────── */
.row .col,
.main-content {
  background-color: transparent !important;
  box-shadow: none !important;
}
/* Remove card border-radius from generic cols */
.row .col,
.nectar-fancy-box,
.nectar-box-roll,
.pricing-table,
.tabbed > div {
  border-radius: 0;
}

/* ── Dividers ────────────────────────────────────────────────── */
body .divider-small-border,
body .divider-border,
hr {
  border-color: var(--gb-border) !important;
}

/* ── Blockquotes / code ──────────────────────────────────────── */
blockquote {
  border-left: 4px solid var(--gb-accent) !important;
}

/* ══════════════════════════════════════════════════════════════
   HIDE SECONDARY HEADER (phone / address bar)
   ══════════════════════════════════════════════════════════════ */
#header-secondary-outer {
  display: none !important;
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR — single white floating pill, one border, no shadow
   Mirrors inEVA proportions exactly
   ══════════════════════════════════════════════════════════════ */

/* Wrapper */
#header-outer,
body #header-outer,
body[data-header-color="custom"] #header-outer,
body #header-outer[data-lhe="animated_underline"] {
  position: fixed !important;
  top: 14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(1240px, calc(100% - 24px)) !important;
  border: 1.5px solid var(--gb-border) !important;
  border-radius: 999px !important;
  background: var(--gb-white) !important;
  background-color: var(--gb-white) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  z-index: 99999 !important;
}

/* Wipe red/dark backgrounds from every nested element */
#header-outer #top,
#header-outer #top .container,
#header-outer #top .row,
#header-outer #top .col,
#header-outer #top nav,
#header-outer #top nav > ul,
#header-outer #top .sf-menu,
#header-outer #top .sf-menu > li,
#header-outer #top .buttons {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Height */
#header-outer #top {
  min-height: 76px !important;
}

/* Full-width inner container */
#header-outer #top .container {
  width: 100% !important;
  max-width: none !important;
  padding: 0 28px !important;
}

/* Flex row: logo left ↔ nav right */
#header-outer #top .row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin: 0 !important;
  min-height: 76px !important;
  padding: 0 !important;
}

/* Logo column */
#header-outer #top .col.span_3 {
  width: auto !important;
  float: none !important;
  flex-shrink: 0;
  padding: 0 !important;
  margin: 0 !important;
}

/* Nav column */
#header-outer #top .col.span_9.col_last {
  width: auto !important;
  flex: 1 !important;
  float: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Logo image */
#header-outer #logo img,
#header-outer #logo .default-logo,
#header-outer #logo .retina-logo,
body #header-outer #logo img {
  height: 64px !important;
  width: auto !important;
  max-height: none !important;
  display: block;
}

/* Nav element — stretch to fill
   NOTE: responsive.css sets `#header-outer header#top nav { display:none !important }`
   at max-width:1000px with specificity (0,2,0,2). We use body-prefixed rule (0,2,0,3) to beat it. */
body #header-outer header#top nav {
  display: flex !important;
  width: 100%;
  justify-content: flex-end;
  background: transparent !important;
  background-color: transparent !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  top: auto !important;
  position: static !important;
}

/* Menu list — horizontal flex */
body #header-outer header#top nav .sf-menu,
body #header-outer header#top nav > ul.sf-menu,
#header-outer #top nav .sf-menu,
#header-outer #top nav > ul.sf-menu {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  white-space: nowrap !important;
  overflow: visible !important;
}

/* Nav list items — beat responsive.css `header#top nav > ul li { display:block; width:100% }` */
body #header-outer header#top nav > ul > li,
#header-outer header#top nav > ul > li,
body #header-outer #top nav > ul > li {
  display: inline-flex !important;
  width: auto !important;
  float: none !important;
  margin-left: 0 !important;
  align-items: center !important;
}

/* Nav ul — beat responsive.css width/padding overrides on the ul itself */
body #header-outer header#top nav > ul,
#header-outer header#top nav > ul {
  width: auto !important;
  padding: 0 !important;
  margin: 0 auto 0 0 !important;
  float: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  position: static !important;
  z-index: auto !important;
  overflow: visible !important;
}

/* Menu link base */
#header-outer #top nav > ul > li > a,
header#top nav > ul > li > a,
body #header-outer #top nav > ul > li > a,
body #header-outer header#top nav > ul > li > a,
#header-outer[data-lhe="animated_underline"] header#top nav > ul > li > a {
  font-family: "Barlow", sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: var(--gb-ink) !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  padding: 6px 12px !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  text-decoration: none !important;
  background: transparent !important;
  background-color: transparent !important;
}

/* Kill animated-underline pseudo-element */
#header-outer #top nav > ul > li > a:after,
header#top nav > ul > li > a:after,
#header-outer[data-lhe="animated_underline"] header#top nav > ul > li > a:after {
  display: none !important;
  border: none !important;
}

/* Hover state */
#header-outer #top nav > ul > li:hover > a,
body #header-outer:not([data-lhe="animated_underline"]) header#top nav > ul > li > a:hover,
body #header-outer:not([data-lhe="animated_underline"]) header#top nav .sf-menu > li.sfHover > a {
  color: var(--gb-accent) !important;
  background: transparent !important;
  background-color: transparent !important;
}

/* Active / current */
body #header-outer:not([data-lhe="animated_underline"]) header#top nav .sf-menu > li.current_page_item > a,
body #header-outer:not([data-lhe="animated_underline"]) header#top nav .sf-menu > li.current-menu-item > a {
  color: var(--gb-accent) !important;
}

/* CTA pill — last list item */
#header-outer #top nav > ul > li:last-child > a,
body #header-outer #top nav > ul > li:last-child > a,
header#top nav > ul > li:last-child > a {
  background: var(--gb-cta) !important;
  background-color: var(--gb-cta) !important;
  color: var(--gb-white) !important;
  border-radius: 999px !important;
  padding: 11px 22px !important;
  padding-top: 11px !important;
  padding-bottom: 11px !important;
  margin-left: 14px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
}

#header-outer #top nav > ul > li:last-child:hover > a,
body #header-outer #top nav > ul > li:last-child:hover > a {
  background: var(--gb-cta-hover) !important;
  background-color: var(--gb-cta-hover) !important;
  color: var(--gb-white) !important;
}

/* Suppress li::after decorators */
#header-outer #top nav > ul > li:after {
  display: none !important;
}

/* Kill theme-generated icons inside nav links */
#header-outer #top nav > ul > li > a i,
#header-outer #top .sf-sub-indicator {
  display: none !important;
}

/* Suppress duplicate slide-out toggle rendered outside nav */
#header-outer #top .col.span_9.col_last > .slide-out-widget-area-toggle {
  display: none !important;
}

/* Cart / search icons (keep transparent) */
#header-outer .cart-menu-wrap,
#header-outer #search-btn {
  background: transparent !important;
}
#header-outer #search-btn a span,
#header-outer #toggle-nav i {
  color: var(--gb-ink) !important;
}

/* Space below fixed navbar */
#header-space {
  height: 110px !important;
}

/* ── Navbar — desktop: full nav visible, mobile toggle hidden ── */
@media (min-width: 901px) {
  /* Force nav visible — beats responsive.css display:none!important at ≤1000px */
  body #header-outer header#top nav {
    display: flex !important;
    position: static !important;
    background-color: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    top: auto !important;
  }
  body #header-outer header#top nav > ul,
  #header-outer header#top nav > ul {
    display: flex !important;
    padding: 0 !important;
    margin: 0 !important;
    position: static !important;
    overflow: visible !important;
  }
  body #header-outer header#top nav > ul > li,
  #header-outer header#top nav > ul > li {
    display: inline-flex !important;
    width: auto !important;
    float: none !important;
  }

  /* Logo: beat responsive.css `position:absolute; left:6px; top:6px` */
  body #header-outer header#top #logo,
  body #header-outer #logo {
    position: static !important;
    top: auto !important;
    left: auto !important;
  }

  /* span_3 col: beat responsive.css `position:absolute; width:85%` */
  body #header-outer header#top .col.span_3 {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    z-index: auto !important;
  }

  /* header-space: beat responsive.css `display:none!important` */
  #header-space {
    display: block !important;
    height: 110px !important;
  }

  /* Hide mobile toggle */
  #header-outer #top nav .buttons,
  #header-outer #top .slide-out-widget-area-toggle,
  body #header-outer header#top nav .buttons {
    display: none !important;
  }
}

/* ── Navbar — mobile: transparent, logo-only ─────────────────── */
@media (max-width: 900px) {
  /*
   * No pill background — the logo floats freely over the hero.
   * Clicking the logo opens the slide-out menu (see mobile-nav.js).
   * All base-rule selector variants included to win on specificity.
   */
  #header-outer,
  body #header-outer,
  body[data-header-color="custom"] #header-outer,
  body[data-header-color="dark"] #header-outer,
  body[data-header-color="light"] #header-outer,
  body #header-outer[data-lhe="animated_underline"] {
    top: 16px !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    min-height: 64px !important;
    padding: 0 !important;
  }

  /* Strip backgrounds from all inner containers */
  #header-outer #top,
  #header-outer #top .container,
  #header-outer #top .row,
  #header-outer #top .col {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
  }

  #header-outer #top,
  #header-outer #top .row {
    min-height: 64px !important;
  }

  #header-outer #top .container {
    padding: 0 20px !important;
  }

  /* Logo: only show default-logo on mobile; retina copy hides */
  #header-outer #logo .default-logo,
  #header-outer a#logo .default-logo {
    height: 117px !important;
    width: auto !important;
    cursor: pointer !important;
    display: block !important;
  }

  #header-outer #logo .retina-logo,
  #header-outer a#logo .retina-logo {
    display: none !important;
  }

  /* Pulsing glow on the logo wrapper */
  body #header-outer #logo,
  #header-outer #logo {
    animation: gbLogoGlow 2.8s ease-in-out infinite alternate;
    display: block !important;
  }

  /* Tap feedback */
  #header-outer a#logo:active img {
    transform: scale(0.92) !important;
    transition: transform 0.08s ease !important;
  }

  /* Hide the nav column — JS intercepts logo tap to open slide-out */
  body #header-outer header#top .col.span_9.col_last,
  #header-outer #top .col.span_9.col_last {
    display: none !important;
  }

  /* Hero fills edge-to-edge — no gap below the transparent header */
  #header-space {
    height: 0 !important;
    display: none !important;
  }
}

/* ── Hide floating logo while slide-out panel is open ─────────── */
@media (max-width: 900px) {
  body.gb-slide-open #header-outer a#logo,
  body.gb-slide-open #header-outer #logo {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.2s ease !important;
  }
}

/* ── Extra-small phones (≤ 400px) ────────────────────────────── */
@media (max-width: 400px) {
  #header-outer,
  body #header-outer,
  body[data-header-color="custom"] #header-outer,
  body[data-header-color="dark"] #header-outer,
  body[data-header-color="light"] #header-outer,
  body #header-outer[data-lhe="animated_underline"] {
    top: 12px !important;
  }

  #header-outer #top .container {
    padding: 0 14px !important;
  }

  #header-outer #logo .default-logo,
  #header-outer a#logo .default-logo {
    height: 99px !important;
  }

  #header-outer #logo .retina-logo,
  #header-outer a#logo .retina-logo {
    display: none !important;
  }
}

/* ── Logo glow keyframe ───────────────────────────────────────── */
@keyframes gbLogoGlow {
  from {
    filter: drop-shadow(0 0 6px rgba(146, 15, 31, 0.45))
            drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  }
  to {
    filter: drop-shadow(0 0 18px rgba(146, 15, 31, 0.92))
            drop-shadow(0 0 8px rgba(220, 40, 60, 0.45))
            drop-shadow(0 2px 12px rgba(0, 0, 0, 0.55));
  }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  body #header-outer #logo,
  #header-outer #logo {
    animation: none !important;
    filter: drop-shadow(0 0 10px rgba(146, 15, 31, 0.65))
            drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)) !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO SLIDER / PAGE HEADER SECTIONS
   ══════════════════════════════════════════════════════════════ */

/* Reduced hero height — inEVA modern proportion */
.parallax_slider_outer.first-section,
.parallax_slider_outer.first-section .nectar-slider-wrap,
.parallax_slider_outer.first-section .swiper-container,
.parallax_slider_outer.first-section .swiper-slide {
  height: 460px !important;
  max-height: 460px !important;
}
/* Ensure background images fill the crop area cleanly */
.parallax_slider_outer.first-section .swiper-slide .image-bg {
  background-size: cover !important;
  background-position: center center !important;
}
@media (max-width: 900px) {
  .parallax_slider_outer.first-section,
  .parallax_slider_outer.first-section .nectar-slider-wrap,
  .parallax_slider_outer.first-section .swiper-container,
  .parallax_slider_outer.first-section .swiper-slide {
    height: 320px !important;
    max-height: 320px !important;
  }
}
@media (max-width: 600px) {
  .parallax_slider_outer.first-section,
  .parallax_slider_outer.first-section .nectar-slider-wrap,
  .parallax_slider_outer.first-section .swiper-container,
  .parallax_slider_outer.first-section .swiper-slide {
    height: 240px !important;
    max-height: 240px !important;
  }
}

.nectar-slider-wrap,
.nectar-slider-wrap .swiper-slide,
.nectar-slider-wrap .swiper-wrapper,
#page-header-bg[data-parallax="1"],
#page-header-bg {
  background-color: var(--gb-darker) !important;
}

.nectar-slider-wrap .swiper-slide .content h2,
.nectar-slider-wrap .swiper-slide .content p,
#page-header-bg h1,
#page-header-bg h2,
#page-header-bg .subheader,
#page-header-bg span {
  color: var(--gb-white) !important;
}

/* ══════════════════════════════════════════════════════════════
   CALL TO ACTION STRIP
   ══════════════════════════════════════════════════════════════ */
#call-to-action {
  background: var(--gb-dark) !important;
  background-color: var(--gb-dark) !important;
}
#call-to-action span,
#call-to-action p,
body #call-to-action span,
body #call-to-action a {
  color: var(--gb-white) !important;
  font-family: "Bebas Neue", sans-serif !important;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS — inEVA black pill, red hover
   ══════════════════════════════════════════════════════════════ */
.nectar-button,
body .wpb_row .nectar-button,
a.nectar-button,
button,
input[type="submit"],
input[type="button"],
.swiper-slide .button a,
.swiper-slide .button.solid_color a,
.swiper-slide .button.solid_color_2 a,
body .wpb_wrapper .nectar-button {
  font-family: "Barlow", sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background: var(--gb-cta) !important;
  background-color: var(--gb-cta) !important;
  color: var(--gb-white) !important;
  border: 2px solid var(--gb-cta) !important;
  border-radius: 999px !important;
  padding: 14px 28px !important;
  display: inline-block;
  text-decoration: none !important;
  box-shadow: none !important;
}

.nectar-button:hover,
body .wpb_row .nectar-button:hover,
a.nectar-button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.swiper-slide .button a:hover {
  background: var(--gb-cta-hover) !important;
  background-color: var(--gb-cta-hover) !important;
  border-color: var(--gb-cta-hover) !important;
  color: var(--gb-white) !important;
}

/* ══════════════════════════════════════════════════════════════
   FORMS
   ══════════════════════════════════════════════════════════════ */
input,
select,
textarea,
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  border: 1.5px solid var(--gb-border) !important;
  color: var(--gb-ink) !important;
  background-color: var(--gb-white) !important;
  border-radius: 8px !important;
  font-family: "Barlow", sans-serif !important;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS / QUOTE SLIDERS
   ══════════════════════════════════════════════════════════════ */
.testimonial_slider blockquote {
  background: var(--gb-white) !important;
  border-radius: 16px !important;
}
.testimonial_slider blockquote p,
.testimonial_slider blockquote span {
  color: var(--gb-ink) !important;
  font-family: "Barlow", sans-serif !important;
}

/* ══════════════════════════════════════════════════════════════
   ICON ACCENT
   ══════════════════════════════════════════════════════════════ */
body .nectar-icon-list .list-icon-holder,
body .icon-tiny i,
body .icon-default-style i,
body [class^="icon-"].icon-default-style,
body [class*=" icon-"].icon-default-style {
  color: var(--gb-accent) !important;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER — dark background, light text  (inEVA footer style)
   Must beat inline `#footer-outer{background-color:#920f1f!important}`
   ══════════════════════════════════════════════════════════════ */
#footer-outer,
body #footer-outer {
  background: var(--gb-darker) !important;
  background-color: var(--gb-darker) !important;
  color: #cccccc !important;
}

/* All text inside footer */
#footer-outer *,
body #footer-outer * {
  font-family: "Barlow", sans-serif !important;
}

#footer-outer p,
#footer-outer li,
#footer-outer span,
body #footer-outer p,
body #footer-outer li {
  color: #bbbbbb !important;
}

#footer-outer a,
body #footer-outer a {
  color: #cccccc !important;
  text-decoration: none !important;
}
#footer-outer a:hover,
body #footer-outer a:hover {
  color: var(--gb-white) !important;
}

/* Footer headings */
#footer-outer h1,
#footer-outer h2,
#footer-outer h3,
#footer-outer h4,
#footer-outer h5,
#footer-outer .widget h4,
body #footer-outer h4 {
  color: var(--gb-white) !important;
  font-family: "Bebas Neue", sans-serif !important;
  letter-spacing: 0.06em;
}

/* Footer widget strip */
#footer-outer #footer-widgets {
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  padding: 56px 0 40px !important;
}

/* Copyright bar  — beat inline `background-color:#1F1F1F!important` */
#footer-outer #copyright,
body #footer-outer #copyright {
  background: #0e0e0e !important;
  background-color: #0e0e0e !important;
  border: none !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
  padding: 20px 0 !important;
}

#footer-outer #copyright p,
#footer-outer #copyright li,
#footer-outer #copyright a,
body #footer-outer #copyright p,
body #footer-outer #copyright a {
  color: #777777 !important;
  font-size: 12px !important;
}
#footer-outer #copyright li a i,
#copyright li a i {
  color: #777777 !important;
}
#footer-outer #copyright a:hover,
body #footer-outer #copyright a:hover {
  color: var(--gb-white) !important;
}

/* ══════════════════════════════════════════════════════════════
   SLIDE-OUT MOBILE PANEL
   ══════════════════════════════════════════════════════════════ */

/* Safety net: keep slide-out panel off-screen/fixed regardless of cached CSS.
   Do NOT add transform:!important — jQuery Transit animates via inline transform. */
#slide-out-widget-area.slide-out-from-right {
  position: fixed !important;
}

#slide-out-widget-area,
#slide-out-widget-area-bg,
body #slide-out-widget-area,
body #slide-out-widget-area-bg.fullscreen {
  background: var(--gb-darker) !important;
  background-color: var(--gb-darker) !important;
}

#slide-out-widget-area,
#slide-out-widget-area a,
#slide-out-widget-area p,
#slide-out-widget-area li,
body #slide-out-widget-area a {
  color: var(--gb-white) !important;
  font-family: "Barlow", sans-serif !important;
}

#slide-out-widget-area h1,
#slide-out-widget-area h2,
#slide-out-widget-area h3,
#slide-out-widget-area h4,
#slide-out-widget-area h5 {
  color: var(--gb-white) !important;
  font-family: "Bebas Neue", sans-serif !important;
}

/* Touch-friendly nav items in slide-out panel */
#slide-out-widget-area ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#slide-out-widget-area ul li a {
  display: block !important;
  padding: 15px 0 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
  line-height: 1.2 !important;
}

#slide-out-widget-area ul li a:hover,
body #slide-out-widget-area ul li a:hover {
  color: var(--gb-cta) !important;
}

/* Last item = Schedule — style as red CTA */
#slide-out-widget-area ul li:last-child a {
  color: var(--gb-cta) !important;
  border-bottom: none !important;
  margin-top: 8px !important;
}

#slide-out-widget-area ul li:last-child a:hover {
  color: #ff3347 !important;
}

/* Close (×) button */
#slide-out-widget-area .widget-area-close,
body #slide-out-widget-area .close-area,
#slide-out-widget-area a.close-wrap {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 28px !important;
  transition: color 0.15s ease !important;
}

#slide-out-widget-area .widget-area-close:hover,
body #slide-out-widget-area .close-area:hover,
#slide-out-widget-area a.close-wrap:hover {
  color: var(--gb-white) !important;
}

/* ══════════════════════════════════════════════════════════════
   BACK-TO-TOP BUTTON
   ══════════════════════════════════════════════════════════════ */
#to-top,
#to-top.dark {
  background: var(--gb-cta) !important;
  background-color: var(--gb-cta) !important;
  border-radius: 999px !important;
}
#to-top:hover,
#to-top.dark:hover {
  background: var(--gb-accent) !important;
  background-color: var(--gb-accent) !important;
}

/* ══════════════════════════════════════════════════════════════
   SOCIAL MEDIA ICONS (inline SVG — replaces broken icomoon font)
   ══════════════════════════════════════════════════════════════ */
.gb-social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
  transition: opacity 0.2s ease, fill 0.2s ease;
  pointer-events: none;
}

#footer-outer #copyright #social li,
#header-secondary-outer #social li {
  display: inline-flex;
  align-items: center;
}

#footer-outer #copyright #social a,
#header-secondary-outer #social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s ease;
}

#footer-outer #copyright #social a:hover,
#header-secondary-outer #social a:hover {
  background: var(--gb-accent) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════════════════════════════
   SCHEDULE PAGE — GB Dynamic Schedule Grid
   ══════════════════════════════════════════════════════════════ */

.gb-schedule-wrap {
  width: 100%;
  padding: 40px 0 60px;
}

/* — Head / title — */
.gb-schedule-head {
  text-align: center;
  margin-bottom: 32px;
}
.gb-sched-title {
  font-size: 2rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #111 !important;
  margin-bottom: 10px !important;
  font-family: 'Barlow', sans-serif !important;
}
.gb-sched-title span {
  color: var(--gb-accent) !important;
}
.gb-schedule-divider {
  width: 48px;
  height: 3px;
  background: var(--gb-accent);
  margin: 0 auto 18px;
  border-radius: 2px;
}
.gb-schedule-legend {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.gs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gs-adult-badge { background: var(--gb-accent); color: #fff; }
.gs-kids-badge  { background: #1c5f8a; color: #fff; }

/* — Desktop grid table — */
.gb-schedule-table {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.12);
  background: #1a1a1a;
  margin-bottom: 32px;
}
.gs-row {
  display: grid;
  grid-template-columns: 120px repeat(6, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.gs-row:last-child { border-bottom: none; }
.gs-header-row {
  background: #111 !important;
}
.gs-cell {
  padding: 12px 6px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.gs-cell:last-child { border-right: none; }

/* Day header cells */
.gs-header-row .gs-day-hd {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  padding: 14px 6px;
}
.gs-header-row .gs-day-hd.gs-today {
  background: var(--gb-accent) !important;
  color: #fff !important;
}

/* Time label cell */
.gs-time-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #ccc;
  text-align: right;
  justify-content: flex-end;
  padding-right: 14px;
  white-space: nowrap;
  background: #111;
}

/* Data rows alternating */
.gs-row:not(.gs-header-row) { background: #1e1e1e; }
.gs-row:not(.gs-header-row):nth-child(even) { background: #1a1a1a; }
.gs-row:not(.gs-header-row) .gs-cell.gs-today {
  background: rgba(193,18,31,0.14) !important;
}

/* Class badges inside cells */
.gs-class {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.gs-adult { background: var(--gb-accent); color: #fff; }
.gs-kids  { background: #1c5f8a; color: #fff; }
.gs-empty { color: rgba(255,255,255,0.2) !important; font-size: 0.9rem; }

/* — Mobile day cards — */
.gb-schedule-mobile { display: none; }
.gsm-day-card {
  background: #1e1e1e;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.gsm-day-card.gsm-today { border-color: var(--gb-accent); }
.gsm-day-hdr {
  background: #111;
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
}
.gsm-day-card.gsm-today .gsm-day-hdr {
  background: var(--gb-accent);
  color: #fff;
}
.gsm-class {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.gsm-class:last-child { border-bottom: none; }
.gsm-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ccc;
  min-width: 72px;
}
.gsm-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.gsm-class.gs-adult .gsm-label { background: var(--gb-accent); color: #fff; }
.gsm-class.gs-kids  .gsm-label { background: #1c5f8a; color: #fff; }

/* — CTA line — */
.gb-schedule-cta {
  text-align: center;
  font-size: 0.95rem;
  color: #555 !important;
  margin-top: 24px;
}
.gb-schedule-cta a {
  color: var(--gb-accent) !important;
  font-weight: 600;
  text-decoration: underline;
}

/* — Responsive — */
@media (max-width: 768px) {
  .gb-schedule-table  { display: none; }
  .gb-schedule-mobile { display: block; }
  .gb-sched-title { font-size: 1.4rem !important; }
}

/* ═══════════════════════════════════════════════════════
   PRISM LEAD MODAL + FLOATING CTA BUTTON
   ═══════════════════════════════════════════════════════ */

/* ── Floating CTA button ─────────────────────────────── */
#gb-float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  pointer-events: none;
}
#gb-float-btn {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gb-accent, #c1121f);
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(193,18,31,.55), 0 0 0 0 rgba(193,18,31,.4);
  animation: gb-float-pulse 3s ease infinite;
  transition: transform .15s, box-shadow .15s;
  text-transform: uppercase;
}
#gb-float-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(193,18,31,.6), 0 0 0 0 rgba(193,18,31,0);
  animation: none;
}
#gb-float-btn::before {
  content: '⚔';
  font-size: 1rem;
}
@keyframes gb-float-pulse {
  0%   { box-shadow: 0 4px 20px rgba(193,18,31,.55), 0 0 0 0 rgba(193,18,31,.35); }
  60%  { box-shadow: 0 4px 20px rgba(193,18,31,.55), 0 0 0 14px rgba(193,18,31,0); }
  100% { box-shadow: 0 4px 20px rgba(193,18,31,.55), 0 0 0 0 rgba(193,18,31,0); }
}

/* Hide float btn on very small screens if it overlaps content */
@media (max-width: 360px) { #gb-float-cta { bottom: 16px; right: 12px; } }

/* ── Modal overlay ───────────────────────────────────── */
.prism-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.prism-modal-overlay.prism-open {
  opacity: 1;
  pointer-events: all;
}
.prism-modal-overlay.prism-open .prism-modal-box {
  transform: translateY(0) scale(1);
}

/* ── Modal box ───────────────────────────────────────── */
.prism-modal-box {
  background: #141414;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(.97);
  transition: transform .25s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  position: relative;
}

/* ── Modal header ────────────────────────────────────── */
.prism-modal-header {
  padding: 28px 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.prism-modal-header h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
  line-height: 1.25;
}
.prism-modal-header p {
  font-size: .82rem;
  color: #888;
  margin-top: 5px;
  line-height: 1.5;
}
#prism-modal-close {
  background: rgba(255,255,255,.08);
  border: none;
  color: #ccc;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 12px;
  transition: background .15s;
}
#prism-modal-close:hover { background: rgba(255,255,255,.15); }

/* ── Modal form ──────────────────────────────────────── */
.prism-modal-form-area {
  padding: 20px 28px 28px;
}
.prism-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.prism-field {
  margin-bottom: 14px;
}
.prism-field label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 6px;
}
.prism-field input,
.prism-field select,
.prism-field textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: #fff;
  padding: 11px 14px;
  font-size: .88rem;
  outline: none;
  transition: border-color .15s;
  font-family: inherit;
}
.prism-field input::placeholder,
.prism-field textarea::placeholder { color: #555; }
.prism-field input:focus,
.prism-field select:focus,
.prism-field textarea:focus {
  border-color: var(--gb-accent, #c1121f);
  background: rgba(193,18,31,.06);
}
.prism-field select option { background: #1a1a1a; }
.prism-field textarea { resize: vertical; min-height: 72px; }

/* ── Form error message ──────────────────────────────── */
#prism-form-error {
  display: none;
  background: rgba(193,18,31,.12);
  border: 1px solid rgba(193,18,31,.35);
  border-radius: 7px;
  color: #f87171;
  font-size: .8rem;
  padding: 10px 14px;
  margin-bottom: 14px;
}

/* ── Submit button ───────────────────────────────────── */
.prism-submit {
  width: 100%;
  background: var(--gb-accent, #c1121f);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  margin-top: 6px;
}
.prism-submit:hover:not(:disabled) {
  opacity: .88;
  transform: translateY(-1px);
}
.prism-submit:disabled {
  opacity: .55;
  cursor: not-allowed;
}

/* ── Success state ───────────────────────────────────── */
#prism-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 28px;
  gap: 14px;
}
.prism-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(34,197,94,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 2px solid rgba(34,197,94,.3);
}
#prism-success h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
#prism-success p {
  font-size: .88rem;
  color: #888;
  max-width: 300px;
  line-height: 1.6;
}
.prism-success-close {
  margin-top: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #ccc;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 600;
  transition: background .15s;
}
.prism-success-close:hover { background: rgba(255,255,255,.14); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 480px) {
  .prism-modal-header,
  .prism-modal-form-area { padding-left: 20px; padding-right: 20px; }
  .prism-row-2 { grid-template-columns: 1fr; }
  #gb-float-btn { padding: 12px 18px; font-size: .8rem; }
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.gb-contact-map { line-height:0; }
.gb-contact-map iframe { display:block; width:100%; }

.gb-contact-info { padding:40px 20px 40px 0; }
.gb-contact-form-wrap { padding:40px 0 40px 30px; }

.gb-contact-info h2,
.gb-contact-form-wrap h2 {
  color:#fff;
  font-size:28px;
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.gb-contact-info > p,
.gb-contact-form-wrap > p { color:#aaa; margin:0 0 28px; line-height:1.6; }

/* Contact info items */
.gb-ci-items { display:flex; flex-direction:column; gap:22px; }
.gb-ci-item { display:flex; gap:14px; align-items:flex-start; }
.gb-ci-icon { font-size:22px; line-height:1; flex-shrink:0; margin-top:2px; }
.gb-ci-item strong {
  display:block; color:#fff; font-size:13px;
  text-transform:uppercase; letter-spacing:.06em; margin-bottom:5px;
}
.gb-ci-item p { color:#ccc; margin:0 0 4px; line-height:1.7; }
.gb-ci-item a { color:var(--gb-accent,#c1121f); text-decoration:none; font-size:14px; }
.gb-ci-item a:hover { text-decoration:underline; }

/* Inline contact form */
#gb-contact-form .gb-cf-row {
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
}
.gb-cf-field { margin-bottom:14px; }
.gb-cf-field label {
  display:block; color:#ccc; font-size:12px;
  text-transform:uppercase; letter-spacing:.05em; margin-bottom:6px;
}
.gb-cf-field input,
.gb-cf-field select,
.gb-cf-field textarea {
  width:100%; box-sizing:border-box;
  background:#1a1a1a; border:1px solid #333; color:#fff;
  padding:10px 14px; border-radius:4px; font-size:15px;
  transition:border-color .2s; font-family:inherit;
}
.gb-cf-field input:focus,
.gb-cf-field select:focus,
.gb-cf-field textarea:focus { outline:none; border-color:var(--gb-accent,#c1121f); }
.gb-cf-field select {
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center; cursor:pointer;
}
.gb-cf-field select option { background:#1a1a1a; }
.gb-cf-field textarea { resize:vertical; min-height:110px; }
#gb-cf-error {
  background:rgba(193,18,31,.15); border:1px solid rgba(193,18,31,.4);
  color:#ff6b6b; padding:10px 14px; border-radius:4px;
  font-size:14px; margin-bottom:12px; display:none;
}
.gb-cf-submit {
  background:var(--gb-accent,#c1121f); color:#fff;
  border:none; padding:13px 32px; font-size:15px; font-weight:700;
  border-radius:4px; cursor:pointer; letter-spacing:.05em;
  transition:background .2s,transform .1s; text-transform:uppercase;
}
.gb-cf-submit:hover { background:#a50f1a; }
.gb-cf-submit:active { transform:scale(.98); }
.gb-cf-submit:disabled { opacity:.6; cursor:not-allowed; }
#gb-cf-success {
  background:rgba(39,174,96,.15); border:1px solid rgba(39,174,96,.4);
  color:#5de099; padding:16px 20px; border-radius:4px;
  font-size:15px; text-align:center; margin-top:12px; display:none;
}

@media (max-width:767px) {
  #gb-contact-form .gb-cf-row { grid-template-columns:1fr; }
  .gb-contact-form-wrap { padding:30px 0; }
  .gb-contact-info { padding:30px 0; }
}

/* Contact page dark-section override */
.page-template-template-contact .container-wrap,
.page-template-template-contact .main-content { background: #111 !important; }
.page-template-template-contact .gb-cf-field input,
.page-template-template-contact .gb-cf-field select,
.page-template-template-contact .gb-cf-field textarea {
  background: #1e1e1e !important;
  border-color: #333 !important;
  color: #fff !important;
}
.page-template-template-contact .gb-cf-field input::placeholder,
.page-template-template-contact .gb-cf-field textarea::placeholder { color: #666 !important; }
.page-template-template-contact .gb-cf-field select option { background: #1e1e1e; }

/* Contact info text visibility fix */
.page-template-template-contact .gb-contact-info,
.page-template-template-contact .gb-contact-form-wrap { color: #ccc !important; }
.page-template-template-contact .gb-ci-item p,
.page-template-template-contact .gb-ci-item a { color: #ccc !important; }
.page-template-template-contact .gb-ci-item a { color: var(--gb-accent, #c1121f) !important; }
.page-template-template-contact .gb-ci-item strong { color: #fff !important; }
.page-template-template-contact .gb-contact-info h2,
.page-template-template-contact .gb-contact-form-wrap h2 { color: #fff !important; }
.page-template-template-contact .gb-contact-info > p,
.page-template-template-contact .gb-contact-form-wrap > p { color: #aaa !important; }
.page-template-template-contact .gb-cf-field label { color: #ccc !important; }

/* ============================================================
   2026 UI Refresh - Outbox-inspired (original implementation)
   Desktop + Mobile
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Oswald:wght@500;600;700&display=swap");

:root {
  --gb2-bg: #f2f4f5;
  --gb2-surface: #ffffff;
  --gb2-ink: #121417;
  --gb2-muted: #59626d;
  --gb2-accent: #c3182f;
  --gb2-accent-strong: #a90f23;
  --gb2-border: #d8dde2;
  --gb2-shadow: 0 18px 44px rgba(12, 22, 32, 0.08);
}

html,
body {
  font-family: "Manrope", sans-serif !important;
  color: var(--gb2-ink) !important;
  background:
    radial-gradient(circle at 6% -10%, rgba(195, 24, 47, 0.15), transparent 38%),
    radial-gradient(circle at 92% 4%, rgba(18, 20, 23, 0.1), transparent 35%),
    var(--gb2-bg) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.swiper-slide .content h2,
#page-header-bg h1,
#page-header-bg h2 {
  font-family: "Oswald", sans-serif !important;
  letter-spacing: 0.02em !important;
}

#header-outer,
body #header-outer {
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: var(--gb2-shadow) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(10px) saturate(1.1) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.1) !important;
}

#header-outer #top nav > ul > li > a,
body #header-outer #top nav > ul > li > a {
  font-family: "Manrope", sans-serif !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
}

#header-outer #top nav > ul > li:last-child > a,
body #header-outer #top nav > ul > li:last-child > a {
  background: linear-gradient(135deg, var(--gb2-accent), #de2740) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(195, 24, 47, 0.35) !important;
}

#header-outer #top nav > ul > li:last-child:hover > a,
body #header-outer #top nav > ul > li:last-child:hover > a {
  background: linear-gradient(135deg, var(--gb2-accent-strong), var(--gb2-accent)) !important;
}

.parallax_slider_outer.first-section,
.parallax_slider_outer.first-section .nectar-slider-wrap,
.parallax_slider_outer.first-section .swiper-container,
.parallax_slider_outer.first-section .swiper-slide {
  min-height: 72vh !important;
  height: 72vh !important;
  max-height: 760px !important;
}

.parallax_slider_outer.first-section .swiper-slide .image-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(14, 20, 26, 0.72) 4%, rgba(14, 20, 26, 0.42) 46%, rgba(14, 20, 26, 0.16) 100%),
    radial-gradient(circle at 84% 22%, rgba(195, 24, 47, 0.22), transparent 48%);
  pointer-events: none;
}

.nectar-slider-wrap .swiper-slide .content,
#page-header-bg .inner-wrap {
  max-width: 760px !important;
}

.nectar-slider-wrap .swiper-slide .content h2,
#page-header-bg h1 {
  font-size: clamp(2.2rem, 4.9vw, 4.3rem) !important;
  line-height: 1.06 !important;
  text-transform: uppercase !important;
}

.nectar-slider-wrap .swiper-slide .content p,
#page-header-bg .subheader {
  font-family: "Manrope", sans-serif !important;
  font-size: clamp(1rem, 1.8vw, 1.15rem) !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

.container-wrap,
.main-content {
  background: transparent !important;
}

.wpb_row .wpb_column .vc_column-inner,
.nectar-fancy-box,
.testimonial_slider blockquote,
.pricing-table,
.tabbed > div,
.wpb_text_column {
  background: var(--gb2-surface) !important;
  border: 1px solid var(--gb2-border) !important;
  border-radius: 20px !important;
  box-shadow: 0 14px 32px rgba(12, 22, 32, 0.05) !important;
}

.wpb_row .wpb_column .vc_column-inner {
  padding: 26px !important;
}

body p,
body li,
body .wpb_text_column p {
  color: var(--gb2-muted) !important;
}

.nectar-button,
a.nectar-button,
button,
input[type="submit"],
input[type="button"] {
  font-family: "Manrope", sans-serif !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--gb2-accent), #e12842) !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(195, 24, 47, 0.35) !important;
}

.nectar-button:hover,
a.nectar-button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--gb2-accent-strong), var(--gb2-accent)) !important;
}

#call-to-action {
  background:
    linear-gradient(100deg, rgba(18, 20, 23, 0.96), rgba(18, 20, 23, 0.86)),
    radial-gradient(circle at 12% 40%, rgba(195, 24, 47, 0.24), transparent 42%) !important;
}

#call-to-action span,
#call-to-action a {
  font-family: "Oswald", sans-serif !important;
  letter-spacing: 0.03em !important;
}

#footer-outer,
body #footer-outer {
  background:
    linear-gradient(180deg, #171b20 0%, #0f1216 100%) !important;
}

#footer-outer .widget h4,
#footer-outer h4 {
  font-family: "Oswald", sans-serif !important;
}

@media (max-width: 1100px) {
  #header-outer #top .container {
    padding: 0 18px !important;
  }

  #header-outer #logo img,
  #header-outer #logo .default-logo,
  #header-outer #logo .retina-logo {
    height: 56px !important;
  }

  .parallax_slider_outer.first-section,
  .parallax_slider_outer.first-section .nectar-slider-wrap,
  .parallax_slider_outer.first-section .swiper-container,
  .parallax_slider_outer.first-section .swiper-slide {
    min-height: 62vh !important;
    height: 62vh !important;
  }
}

@media (max-width: 900px) {
  #header-outer,
  body #header-outer {
    top: 8px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 14px) !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.86) !important;
    background: rgba(255, 255, 255, 0.95) !important;
  }

  #header-space {
    display: block !important;
    height: 86px !important;
  }

  #header-outer #top,
  #header-outer #top .row {
    min-height: 62px !important;
  }

  #header-outer #logo .default-logo,
  #header-outer #logo img {
    height: 44px !important;
  }

  .parallax_slider_outer.first-section,
  .parallax_slider_outer.first-section .nectar-slider-wrap,
  .parallax_slider_outer.first-section .swiper-container,
  .parallax_slider_outer.first-section .swiper-slide {
    min-height: 56vh !important;
    height: 56vh !important;
    max-height: 520px !important;
  }

  .nectar-slider-wrap .swiper-slide .content h2,
  #page-header-bg h1 {
    font-size: clamp(1.7rem, 8.2vw, 2.6rem) !important;
    line-height: 1.07 !important;
  }

  .wpb_row .wpb_column .vc_column-inner,
  .nectar-fancy-box,
  .testimonial_slider blockquote,
  .pricing-table,
  .tabbed > div,
  .wpb_text_column {
    border-radius: 16px !important;
  }
}

@media (max-width: 600px) {
  .parallax_slider_outer.first-section,
  .parallax_slider_outer.first-section .nectar-slider-wrap,
  .parallax_slider_outer.first-section .swiper-container,
  .parallax_slider_outer.first-section .swiper-slide {
    min-height: 50vh !important;
    height: 50vh !important;
    max-height: 430px !important;
  }

  .wpb_row .wpb_column .vc_column-inner {
    padding: 20px !important;
  }
}

/* ============================================================
   Mobile Nav Enhancements - Pulse + Prompt + CTA
   ============================================================ */
@media (max-width: 900px) {
  #header-outer a#logo,
  #header-outer a#logo.gb-mobile-logo-trigger {
    position: relative !important;
    display: inline-block !important;
    isolation: isolate;
  }

  #header-outer a#logo .default-logo,
  #header-outer a#logo img.default-logo {
    animation: gbLogoPulseScale 2.1s ease-in-out infinite !important;
    transform-origin: center center;
    position: relative;
    z-index: 2;
  }

  #header-outer a#logo.gb-mobile-logo-trigger::after {
    content: "Tap for Menu";
    position: absolute;
    left: 50%;
    top: 104%;
    transform: translate(-50%, 0);
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    padding: 6px 12px;
    backdrop-filter: blur(10px) saturate(1.25);
    -webkit-backdrop-filter: blur(10px) saturate(1.25);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08) inset,
      0 0 22px rgba(214, 37, 61, 0.34),
      0 0 42px rgba(214, 37, 61, 0.22);
    text-shadow: 0 0 10px rgba(222, 44, 68, 0.42);
    animation: gbMenuPromptPulse 1.9s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
  }

  @media (max-width: 430px) {
    #header-outer a#logo.gb-mobile-logo-trigger::after {
      top: 108%;
      font-size: 10px;
      letter-spacing: 0.1em;
      padding: 5px 10px;
    }
  }

  body.gb-slide-open #header-outer a#logo.gb-mobile-logo-trigger::after {
    opacity: 0 !important;
  }

  #slide-out-widget-area ul li.gb-mobile-cta-item {
    margin-top: 14px !important;
    border-bottom: none !important;
  }

  #slide-out-widget-area ul li.gb-mobile-cta-item a {
    display: block !important;
    text-align: center !important;
    color: #fff !important;
    background: linear-gradient(135deg, #b10f24, #d92039) !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 14px 16px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 12px 24px rgba(177, 15, 36, 0.38) !important;
  }

  #slide-out-widget-area ul li.gb-mobile-cta-item a:hover {
    background: linear-gradient(135deg, #990c1f, #bf1730) !important;
    color: #fff !important;
  }
}

@keyframes gbLogoPulseScale {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(177, 15, 36, 0.42));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 16px rgba(221, 35, 58, 0.82));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(177, 15, 36, 0.42));
  }
}

@keyframes gbMenuPromptPulse {
  0% {
    opacity: 0.82;
    transform: translate(-50%, 0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1.04);
  }
  100% {
    opacity: 0.82;
    transform: translate(-50%, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  #header-outer a#logo .default-logo,
  #header-outer a#logo img.default-logo,
  #header-outer a#logo.gb-mobile-logo-trigger::after {
    animation: none !important;
  }
}
