.elementor-6 .elementor-element.elementor-element-505906c{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--gap:15% 15%;--row-gap:15%;--column-gap:15%;}/* Start custom CSS for html, class: .elementor-element-63c2a86 */.hover-container {
  position: relative;
  background: white;
  display: flex;
  flex-direction: row;
  gap: 20%;
  width: 100vw;
  height: 100dvh;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.bg-media {
  position: absolute;
  inset: 0; /* fill container */
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.bg-media.show {
  opacity: 1;
}

.hover-title {
  position: relative;
  z-index: 2;
  color: black;
  font-size: 13px;
  font-family: "Favorit";
  cursor: pointer;
  text-transform: uppercase;
  opacity: 0; /* start hidden for animation */
}

/* Underline effect */
.hover-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s ease;
}

.hover-title[data-type]:hover::after {
  width: 100%;
}

/* Animation keyframes */
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Animation sequence */
.logo {
  cursor: default;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.3s;
}

.hover-title[data-type="video"] {
  animation: slideInLeft 0.8s ease forwards;
  animation-delay: 1.3s;
}

.hover-title[data-type="image"] {
  animation: slideInRight 0.8s ease forwards;
  animation-delay: 1.8s;
}

.hover-container {
  position: relative;
}

/* Make sure media is behind */
.bg-media {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Titles stay above */
.hover-title {
  position: relative; /* stays in same structure for JS hover */
  z-index: 2;
  mix-blend-mode: difference; /* only titles invert */
  color: white; /* base for blending */
}

.logo span {
    font-family: 'Jacquard' !important;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-505906c */.hero {
    height: 100dvh;
}/* End custom CSS */