/* apps/myfuture/static/myfuture/scss/sections/about-hero.scss */
.about-hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 5% 100px;
  overflow: hidden;
  /* Background gradient vibrante */
  background: linear-gradient(135deg, rgba(5, 60, 118, 0.95) 0%, rgba(26, 26, 46, 0.97) 100%);
}
[data-theme=light] .about-hero {
  background: linear-gradient(135deg, rgba(103, 126, 234, 0.92) 0%, rgba(118, 75, 162, 0.9) 50%, rgba(240, 147, 251, 0.88) 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-decorations {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0.1;
}
[data-theme=light] .hero-decorations {
  opacity: 0.08;
}

.deco-line {
  height: 14px;
  background: var(--color-type);
  animation: slideIn 1s cubic-bezier(0.42, 0, 0.58, 1) forwards;
}
[data-theme=light] .deco-line {
  background: #fff;
}
.deco-line:nth-child(1) {
  width: 60%;
  animation-delay: 0.2s;
}
.deco-line:nth-child(2) {
  width: 40%;
  margin-left: 10%;
  animation-delay: 0.4s;
}
.deco-line:nth-child(3) {
  width: 50%;
  margin-left: 5%;
  animation-delay: 0.6s;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 0.1;
  }
}
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.hero-content {
  color: var(--color-night-font);
}
[data-theme=light] .hero-content {
  color: #fff;
}

.hero-title {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--color-night-font);
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
[data-theme=light] .hero-title {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-description {
  font-size: var(--fz-md);
  color: var(--color-night-font);
  line-height: 1.8;
  opacity: 0.95;
}
[data-theme=light] .hero-description {
  color: #fff;
  opacity: 0.98;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.hero-description p {
  margin-bottom: 20px;
}
.hero-description p:last-child {
  margin-bottom: 0;
}

.hero-portrait {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 968px) {
  .hero-portrait {
    order: -1;
  }
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 3/4;
  border: 8px solid var(--color-type);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(194, 255, 5, 0.3);
  transition: all 0.4s ease;
}
[data-theme=light] .portrait-frame {
  border-color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg, var(--color-type) 0%, transparent 50%, var(--color-focus) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
[data-theme=light] .portrait-frame::before {
  background: linear-gradient(135deg, #fff 0%, transparent 50%, rgba(255, 255, 255, 0.8) 100%);
}
.portrait-frame:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(194, 255, 5, 0.4);
}
[data-theme=light] .portrait-frame:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.6);
}
.portrait-frame:hover::before {
  opacity: 0.1;
}
.portrait-frame:hover img {
  transform: scale(1.05);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  .about-hero {
    min-height: auto;
    padding: 120px 5% 80px;
  }
  .portrait-frame {
    max-width: 350px;
  }
}/*# sourceMappingURL=about-hero.css.map */