.elementor-29666 .elementor-element.elementor-element-bf2651d{--display:flex;--margin-top:92px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-29666 .elementor-element.elementor-element-739a5a3{--display:flex;}@media(max-width:768px){.elementor-29666 .elementor-element.elementor-element-bf2651d{--margin-top:60px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-29666 .elementor-element.elementor-element-20782a7{padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-05c388e *//* =========================================
   TAIGA UNIVERSAL PAGE HERO
   ========================================= */
.taiga-universal-hero {
  --taiga-dark: #1A1A1A;
  --taiga-gold: #D4AF37;
  --taiga-light: #FFFFFF;
  
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Montserrat', sans-serif;

  position: relative;
  width: 100%;
  min-height: 55vh; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Change to 'fixed' for a parallax effect */
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
  padding: 80px 24px 40px 24px;
}

/* The Cinematic Dark Overlay */
.taiga-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.6) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
  z-index: 1;
}

/* Content Container */
.taiga-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  width: 100%;
}

/* =========================================
   BREADCRUMBS STYLING
   ========================================= */
.taiga-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.taiga-crumb-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.taiga-crumb-link:hover {
  color: var(--taiga-gold);
}

.taiga-crumb-sep {
  color: var(--taiga-gold);
  opacity: 0.6;
}

.taiga-crumb-current {
  color: var(--taiga-gold);
}

/* =========================================
   PAGE TITLE STYLING
   ========================================= */
.taiga-page-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--taiga-light);
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: taigaHeroFadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.taiga-page-title span {
  color: var(--taiga-gold);
  font-style: italic;
}

/* Subtle Gold Accent Below Title */
.taiga-hero-accent {
  width: 60px;
  height: 3px;
  background-color: var(--taiga-gold);
  margin-top: 30px;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
  animation: taigaHeroFadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes taigaHeroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
  .taiga-universal-hero {
    min-height: 40vh;
    padding: 100px 20px 50px 20px;
  }
  
  .taiga-breadcrumbs {
    font-size: 0.7rem;
    gap: 8px;
  }
}/* End custom CSS */