.elementor-29771 .elementor-element.elementor-element-bf2651d{--display:flex;--margin-top:90px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-29771 .elementor-element.elementor-element-da5d016{--display:flex;}.elementor-29771 .elementor-element.elementor-element-d6cdf67{--display:flex;}.elementor-29771 .elementor-element.elementor-element-4ce99d8{--display:flex;}@media(max-width:768px){.elementor-29771 .elementor-element.elementor-element-bf2651d{--margin-top:60px;--margin-bottom:0px;--margin-left:0px;--margin-right: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 */
/* Start custom CSS for html, class: .elementor-element-7fd9168 *//* =========================================
   TAIGA TIMELINE SECTION
   ========================================= */
.taiga-timeline-section {
  --taiga-dark: #1A1A1A;
  --taiga-gold: #D4AF37;
  --taiga-light: #FFFFFF;
  --taiga-bg: #F9F8F4; /* Soft off-white to contrast the white cards */
  --taiga-text: #5B6259;
  
  --serif: 'Fraunces', serif;
  --sans: 'Montserrat', sans-serif;

  background-color: var(--taiga-bg);
  padding: 100px 24px;
  overflow: hidden;
}

.taiga-timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Header */
.taiga-timeline-header {
  text-align: center;
  margin-bottom: 80px;
}

.taiga-timeline-header .taiga-subtitle {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taiga-gold);
  margin-bottom: 12px;
}

.taiga-timeline-header .taiga-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--taiga-dark);
  margin: 0;
}

.taiga-timeline-header .taiga-title span {
  color: var(--taiga-gold);
  font-style: italic;
}

/* Timeline Core Structure */
.taiga-timeline {
  position: relative;
}

/* The Central Gold Line */
.taiga-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(212, 175, 55, 0.3); /* Faded gold */
  transform: translateX(-50%);
}

/* Timeline Items */
.taiga-timeline-item {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.taiga-timeline-item:last-child {
  margin-bottom: 0;
}

/* Alternating Layout */
.taiga-timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

/* The Content Box */
.taiga-timeline-content {
  width: calc(50% - 40px); /* Leaves room for the center dot */
  background: var(--taiga-light);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.taiga-timeline-item:hover .taiga-timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06), 0 0 0 1px var(--taiga-gold);
}

/* The Gold Dot */
.taiga-timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--taiga-gold);
  border-radius: 50%;
  border: 4px solid var(--taiga-bg);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
  z-index: 2;
}

.taiga-timeline-item:hover .taiga-timeline-dot {
  transform: translate(-50%, -50%) scale(1.3);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.3);
}

/* Typography inside the box */
.taiga-year {
  display: block;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--taiga-gold);
  margin-bottom: 10px;
}

.taiga-milestone {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--taiga-dark);
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.taiga-timeline-content p {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--taiga-text);
  margin: 0;
}

/* Highlight 'Today' Item */
.taiga-timeline-today .taiga-timeline-content {
  background: var(--taiga-dark);
  border-color: var(--taiga-dark);
}

.taiga-timeline-today .taiga-milestone {
  color: var(--taiga-light);
}

.taiga-timeline-today p {
  color: #A0A5A1;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
  /* Shift the central line to the left */
  .taiga-timeline::before {
    left: 20px;
    transform: none;
  }

  .taiga-timeline-item {
    flex-direction: column !important; /* Stack vertically */
    align-items: flex-end;
  }

  .taiga-timeline-content {
    width: calc(100% - 60px); /* Leave room for the left line */
    padding: 30px 24px;
  }

  /* Move dot to the left line */
  .taiga-timeline-dot {
    left: 20px;
    top: 40px; /* Align with top of the card */
    transform: translateX(-50%);
  }

  .taiga-timeline-item:hover .taiga-timeline-dot {
    transform: translateX(-50%) scale(1.3);
  }
}

/* =========================================
   DECORATIVE SIDE IMAGES (VERTICALLY CENTERED)
   ========================================= */
.taiga-timeline-section {
  position: relative; 
  /* Keep your other section styles here */
}

.taiga-timeline-container {
  position: relative;
  z-index: 1; 
  /* Keep your other container styles here */
}

.taiga-side-image {
  position: absolute;
  top: 50%; /* Pushes the image down to the middle */
  width: auto; 
  max-width: 15%; /* Controls how far into the section it reaches */
  height: auto;
  max-height: 80%; /* Ensures it doesn't overflow top/bottom padding */
  z-index: 0;
  pointer-events: none; 
  opacity: 0.3; 
}

.taiga-side-image.left {
  left: 0;
  transform: translateY(-50%); /* Perfectly centers it vertically */
}

.taiga-side-image.right {
  right: 0;
  /* Mirrors the image AND centers it vertically */
  transform: translateY(-50%) scaleX(-1); 
}

/* Hide the side images on mobile so they don't cover the text */
@media (max-width: 1024px) {
  .taiga-side-image {
    display: none;
  }
}/* End custom CSS */