/* ================================================
   HERO MAIN SECTION STYLES - ÚJ STRUKTÚRA
   ================================================ */

.hero-main-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.5) 0%, rgba(44, 82, 130, 0.5) 50%, rgba(26, 54, 93, 0.5) 100%);
  position: relative;
  overflow: hidden;
}

.hero-main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Teljes szélességű főcím */
.hero-main-title-full {
  width: 100%;
  margin-bottom: 3rem;
  text-align: center;
}

.hero-main-title-full h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
  color: #ffffff;
}

.hero-main-title-full .hero-highlight {
  color: var(--accent-gold-light);
  font-weight: 800;
}

/* Alsó sor: bal szöveg + jobb kép */
.hero-main-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Bal oldali tartalom */
.hero-main-content {
  background: var(--dark-bg);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-main-content h1 {
  display: none;
}

.hero-main-content .hero-highlight {
  color: var(--accent-gold-light);
  font-weight: 800;
}

.hero-main-content p {
  font-size: 1.2rem;
  color: var(--dark-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-main-subtitle {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent-gold-light);
  font-weight: 600;
  margin-top: 1rem;
}

.hero-email-signup {
  margin-bottom: 2rem;
}

.hero-cta-button {
  background: linear-gradient(135deg, var(--secondary-color), var(--theme-color));
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-cta-button:hover {
  transform: translateY(2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0);
  color: var(--accent-gold-light);
  text-decoration: none;
}

/* Jobb oldali kép */
.hero-main-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-person-silhouette img {
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.1));
}

.hero-floating-card {
  position: absolute;
  background: var(--dark-bg);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  min-width: 120px;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-card-1 {
  top: 40%;
  left: -2%;
  max-width: calc(100vw - 2rem);
}

.hero-card-2 {
  bottom: 20%;
  right: -10%;
  max-width: calc(100vw - 2rem);
}

.hero-card-icon,
.hero-card-chart {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  margin-bottom: 0.5rem;
}

.hero-card-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.3rem;
}

.hero-card-label {
  font-size: 0.9rem;
  color: var(--dark-text-muted);
}

/* Jobb oldali CTA gomb */
.hero-right-cta {
  margin-top: 2rem;
  text-align: center;
}

.hero-cta-button-right {
  background: linear-gradient(135deg, var(--secondary-color), var(--theme-color));
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.hero-cta-button-right:hover {
  transform: translateY(2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0);
  color: var(--accent-gold-light);
  text-decoration: none;
}

/* Elhelyezés a sziluettek alatt */
.hero-main-image .hero-right-cta {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .hero-main-title-full h1 {
    font-size: 3rem;
  }

  .hero-main-content-row {
    gap: 3rem;
  }
}

@media (max-width: 991px) {
  .hero-main-title-full h1 {
    font-size: 2.8rem;
  }

  .hero-main-image .hero-right-cta {
    bottom: -60px;
  }

  .hero-main-content-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .hero-main-content {
    max-width: 90%;
  }

  .hero-main-image {
    margin-top: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-floating-card {
    position: absolute;
    width: 160px;
    padding: 1rem;
    font-size: 0.85rem;
  }

  .hero-card-1 {
    top: 160px;
    left: -40px;
  }

  .hero-card-2 {
    bottom: 0;
    right: -80px;
  }

  .hero-person-silhouette img {
    max-width: 240px;
  }
}
