/* White Tie Style Overrides */

/* ============
BACKLIGHT MAKES THINGS UNCLICKABLE
Like the Swiper carousel
This fixes that
=============== */
.bringer-backlight {
  pointer-events: none !important;
}

/* ============
   COLOR SCHEME
=============== */

/*****************
WT Color Extension
Blue: #5ca8b8
Pink: #b54e97
Orange: #cc342b
*****************/


:root {
  /* Used as body background and overlays */
  /* --bringer-s-body-bg: #07090D; */

  /* Used as a background color for header, footer, and mobile navigation */
  /* --bringer-s-nav: #07090DCC; */

  /* Used as a background color for block containers, sub-menus, and form inputs */
  /* --bringer-s-container-bg: #1A1D24; */

  /* The same as the previous one but with transparency for frosted glass blocks */
  /* --bringer-s-container-frosted: #1A1D24EE; */

  /* Used as a color for headings, page titles, button labels, and other bright text accents */
  /* --bringer-s-heading: #F5F7FA; */

  /* It is the same as the previous one but with transparency. Used for labels, meta, and some hover effects */
  /* --bringer-s-heading-fade: #F5F7FAC0; */

  /* Used as a color for general content */
  /* --bringer-s-text: #C5C7CE; */

  /* A background color for accents, like buttons, highlighted blocks, etc. */
  --bringer-s-accent: #5ca8b8;

  /* A hovered button background color */
  --bringer-button-hover-bg: ##5ca8b8D0;

  /* Used as a color for text accents */
  --bringer-s-text-accent: #5ca8b8;

  /* Used as a text color for accented blocks */
  /* --bringer-s-accented-text: var(--bringer-s-heading); */

  /* Used as a primary border-color */
  /* --bringer-s-border: #F5F7FA27; */

  /* Used as a border color for accented blocks */
  /* --bringer-s-border-accent: #5C9DFF80; */

  /* A default semi-transparent border color for blocks with a shining effect */
  /* --bringer-s-border-mute: #F5F7FA0D; */

  /* A semi-transparent border shining effect color */
  /* --bringer-s-border-highlight: #F5F7FA40; */

  /* Used as a color for a backlight effect */
  /* --bringer-s-backlight: #F5F7FA12; */

  /* Used as a color for block shadow */
  /* --bringer-s-box-shadow: #07090D10; */

  /* The cursor-followed backlight color. It uses the primary backlight color */
  /* --bringer-s-cursor-light: var(--bringer-s-backlight); */

  /* A horizontal side-fade gradient border color */
  /* --bringer-c-border-gradient: linear-gradient(to left, transparent, var(--bringer-s-border), transparent);  */


  /* Main menu text color */
  /* --bringer-c-menu: var(--bringer-s-text); */

  /* Main menu hovered item text color */
  /* --bringer-c-menu-hover: var(--bringer-s-heading); */

  /* Main menu current item text color */
  /* --bringer-c-menu-active: var(--bringer-s-heading); */
}

/* Gradients */
.blue-pink-grad {
  background: linear-gradient(to right, #5ca8b8, #b54e97);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.pink-blue-grad-vert {
  background: linear-gradient(to bottom, #b54e97, #5ca8b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ============
   Team Hover Text
=============== */

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.team-overlay h6 {
  margin-bottom: 5px !important;
  margin-top: 10px !important;
}

.overlay-inner {
  text-align: center;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
  padding: 5%;
}

.bringer-carousel-card-image:hover .team-overlay {
  opacity: 1;
}

.bringer-carousel-card-image:hover .overlay-inner {
  transform: translateY(0);
  opacity: 1;
}

/* =====
Homepage partner carousel
===== */
#featured-partners .bringer-portfolio-card {
  width: clamp(100px, 12vw, 180px);
  aspect-ratio: 1 / 1;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#featured-partners .is-fullwidth.is-stretched .bringer-carousel .bringer-portfolio-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}

#featured-partners .is-fullwidth.is-stretched .bringer-carousel .swiper-slide {
  display: flex;
  justify-content: center;
}

#featured-partners .is-fullwidth.is-stretched .bringer-carousel .bringer-portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#featured-partners .is-fullwidth.is-stretched .bringer-carousel .st-lazy-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* =====
Complete Event Production bento
Four half-width is-medium tiles: text top-left, cover photo top-right, Providing
bottom-left, cover photo bottom-right. Photos use the template's native data-bg-src
(background-size: cover), so they add no height and the text/Providing tiles drive
each row. The template's own repeat(4,1fr) columns blow out under the tall text tile,
so pin them equal; auto rows let Providing end at its content and the photos match.
===== */
@media (min-width: 961px) {
  #complete-event-production .bringer-bento-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto auto;
  }
}

/* Mobile: the template stacks the tiles in single rows. Give the background photos an
   aspect ratio so they don't collapse (no intrinsic height like an <img> would have),
   and size rows to content so nothing is forced to equal height. */
@media (max-width: 960px) {
  #complete-event-production .bringer-bento-grid {
    grid-template-rows: auto auto auto auto;
  }

  #complete-event-production [data-bg-src] {
    aspect-ratio: 16 / 9;
  }
}

/************ 
Rotating Text
*************/

.rotating-text {
  position: relative;
  display: inline-block;

  /* available space for word */
  width: 12ch;

  height: 1.5em;

  overflow: hidden;

  vertical-align: text-top;

}

.rotating-text .word {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  text-align: left;

  white-space: nowrap;

  opacity: 1;
  transform: translateY(0);

  transition:
    transform .45s cubic-bezier(.22, .61, .36, 1),
    opacity .45s ease;

  font-size: 1.3em;
  line-height: 1;
}

.rotating-text .word.next {
  opacity: 0;
  transform: translateY(.45em);
}

.rotating-text .word.current.out {
  opacity: 0;
  transform: translateY(-.45em);
}

.rotating-text .word.next.in {
  opacity: 1;
  transform: translateY(0);
}

/**********
Footer Layout — Priority Stack
Three stacked rows instead of one flat grid: brand + CTA, then offices,
then social/trust as a closing line. Badges live in a plain wrapping flex
row (not per-item grid columns), so the "Proud member of" label never
gets forced into its own narrow column and wrapping to multiple lines.
**********/
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--stg-gap);
  padding-bottom: var(--stg-large-gap);
}

.footer-offices {
  display: flex;
  flex-wrap: wrap;
  gap: var(--stg-gap) var(--stg-large-gap);
  padding: var(--stg-gap) 0 var(--stg-large-gap);
  border-top: 1px solid var(--bringer-s-border);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--stg-gap);
  padding: var(--stg-gap) 0;
  border-top: 1px solid var(--bringer-s-border);
}

.footer-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--stg-small-gap) var(--stg-gap);
}

.footer-trust-label {
  white-space: nowrap;
}

.footer-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--stg-gap);
}

.footer-badges img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

@media only screen and (max-width: 739px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: var(--stg-gap);
  }
  .footer-offices {
    flex-direction: column;
    gap: var(--stg-large-gap);
  }
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--stg-small-gap);
  }
  .footer-badges img {
    height: 28px;
  }
}

/**********
Footer Social Icons and Footer Work with Us Button
**********/
.bringer-socials-list-f a {
  background-color: var(--bringer-s-accent);
}

.bringer-socials-list-f a i {
  background-color: var(--bringer-s-accented-text);
}

.bringer-socials-list-f a::before {
  opacity: 0.15;
}

.bringer-header-rp .bringer-button-f {
  height: calc(var(--bringer-socials-size) + 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bringer-socials-list-f {
  gap: var(--bringer-socials-gap);
}