/* ===== NEW HERO SECTION STYLES ===== */

/* Hero Breadcrumb */
.hero-breadcrumb {
  padding: 1.5rem 0;
  color: var(--bs-primary);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Hero Card Container */
.hero-card {
  background: linear-gradient(135deg, #e8eef5 0%, #dfe7f0 50%, #d5e0ed 100%);
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="dark"] .hero-card {
  background: linear-gradient(135deg, #1e2a3a 0%, #243447 50%, #2a3d54 100%);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  padding-bottom: 0;
}

.hero-girl-image {
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* Hero Content */
.hero-content-wrapper {
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
}

/* ORLEU Logo */
.hero-orleu-logo {
  margin-bottom: 0.75rem;
  display: block;
}

.orleu-logo-img {
  height: 24px;
  width: auto;
  /* Изменяем цвет логотипа на #0955A8 на светлой теме */
  filter: brightness(0) saturate(100%) invert(22%) sepia(73%) saturate(2869%) hue-rotate(201deg) brightness(95%) contrast(101%);
}

[data-bs-theme="dark"] .orleu-logo-img {
  filter: invert(1) brightness(2);
}

/* Main Title - BELES */
.hero-main-title {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  color: #0a1628;
  letter-spacing: 12px;
  line-height: 1;
  margin-bottom: 1.5rem;
  background: none;
}

[data-bs-theme="dark"] .hero-main-title {
  color: #fff;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a2b4a;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

[data-bs-theme="dark"] .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* Description */
.hero-description-text {
  font-size: 1rem;
  color: var(--bs-primary);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
  max-width: 500px;
}

[data-bs-theme="dark"] .hero-description-text {
  color: rgba(100, 180, 255, 0.9);
}

/* CTA Button */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bs-primary);
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.25);
  width: auto;
  max-width: fit-content;
}

.hero-cta-btn:hover {
  background: var(--bs-primary-600, #0056b3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.35);
  color: white;
  text-decoration: none;
}

.hero-cta-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
  transform: translateX(3px);
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 991px) {
  .hero-card {
    border-radius: 24px;
  }
  
  .hero-image-wrapper {
    min-height: 350px;
    padding: 1.5rem;
    padding-bottom: 0;
  }
  
  .hero-girl-image {
    max-height: 380px;
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  }
  
  .hero-content-wrapper {
    padding: 2rem;
    min-height: auto;
    text-align: center;
  }
  
  .hero-orleu-logo {
    justify-content: center;
  }
  
  .hero-description-text {
    max-width: 100%;
  }
  
  .hero-cta-btn {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero-breadcrumb {
    font-size: 0.85rem;
    padding: 1rem 0;
  }
  
  .hero-card {
    border-radius: 20px;
    margin-bottom: 2rem;
  }
  
  .hero-image-wrapper {
    min-height: 280px;
    padding: 1rem;
    padding-bottom: 0;
    align-items: flex-end;
  }
  
  .hero-girl-image {
    max-height: 300px;
    object-position: bottom center;
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  }
  
  .hero-content-wrapper {
    padding: 1.5rem;
  }
  
  .hero-main-title {
    letter-spacing: 6px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description-text {
    font-size: 0.95rem;
  }
  
  .hero-cta-btn {
    width: auto;
    max-width: fit-content;
    padding: 0.875rem 1.5rem;
  }
}

/* ===== ANIMATION ===== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-orleu-logo {
  animation: slideUp 0.6s ease-out;
}

.hero-main-title {
  animation: slideUp 0.6s ease-out 0.1s both;
}

.hero-subtitle {
  animation: slideUp 0.6s ease-out 0.2s both;
}

.hero-description-text {
  animation: slideUp 0.6s ease-out 0.3s both;
}

.hero-cta-btn {
  animation: slideUp 0.6s ease-out 0.4s both;
}

.hero-girl-image {
  animation: slideUp 0.8s ease-out 0.2s both;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
.keyboard-focus .hero-cta-btn:focus {
  outline: 3px solid var(--bs-primary);
  outline-offset: 2px;
}
