/* ==========================================================================
   LET'S MOVE - Hero Section (Exact Figma Match)
   Figma Frame: Frame 18 (1440x410)
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 410px;
  padding: 40px 0 60px;
  background: var(--color-bg-dark);
  overflow: hidden;
}

/* Container */
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* ==========================================================================
   Partner Logos (Frame 6 - 470x40)
   ========================================================================== */
.hero__partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 40px;
}

.hero__partners .partner-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.hero__partners .partner-logo:hover {
  opacity: 1;
}

/* ==========================================================================
   Hero Content (Frame 7 - 1440x230)
   ========================================================================== */
.hero__content {
  text-align: center;
  max-width: 1200px;
}

/* Title: "Be Strong. Be Happy. Be Healthy Be You" 
   Font: 52px, Poppins Bold 700
   Color: gradient #FDFEFE → #F9A61A
*/
.hero__title {
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 24px 0;
  background: linear-gradient(180deg, #fdfefe 0%, #f9a61a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle: "Este în puterea noastră..."
   Font: 18px, Poppins Medium 500
   Color: #A0A1A1
*/
.hero__subtitle {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  color: #a0a1a1;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Hero Buttons (Frame 9 - 509x48)
   Gap between buttons: ~24px
   ========================================================================== */
.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 42px;
  }

  .hero__subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 0 50px;
  }

  .hero__partners {
    gap: 20px;
  }

  .hero__partners .partner-logo {
    height: 30px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 16px;
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }

  .hero__partners {
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero__partners .partner-logo {
    height: 25px;
  }
}
