.hero-full {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #620000, #4b0000);
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 40px;
  animation: fadeUp 1s ease;
}

.hero-left {
  flex: 1 1 500px;
  animation: slideInLeft 1s ease;
}

.hero-left h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
  text-align: center;
}

.hero-left .highlight {
  color: #f7c77b;
}

.hero-left ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.hero-left li {
  margin-bottom: 10px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center; /* centrare pe orizontală */
  justify-content: center;
  width: 100%;
  max-width: 480px;
  margin: 0 auto; /* centrare container */
  padding: 0 16px;
  box-sizing: border-box;
}

.hero-button,
.whatsapp-btn {
  width: 100%; /* asigură lățime completă în container */
  max-width: 400px;
  text-align: center;
  padding: 14px 22px;
  font-weight: 600;
  border-radius: 10px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  text-decoration: none;
}.hero-button {
  background-color: #fff;
  color: #620000;
}

.hero-button:hover {
  background-color: #f2f2f2;
  transform: scale(1.03);
}


.whatsapp-btn {
  background-color: #25d366;
  color: white;
}
.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.hero-right {
  flex: 1 1 500px;
  text-align: center;
  animation: slideInRight 1s ease;
}

.hero-right img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive pentru telefoane și tablete */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
    margin-top: 10vh;
    margin-bottom: 2rem;
  }

  .hero-left {
    flex: unset;
    margin-bottom: 18px;
  }

  .hero-left h1 {
    font-size: 2.3rem;
    margin-bottom: 14px;
    line-height: 1.18;
    letter-spacing: -1px;
  }

  .hero-left .highlight {
    color: #fff400;
    font-size: 1.1em;
    font-weight: 700;
  }

  .hero-left ul {
    font-size: 1.08rem;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .hero-left li {
    margin-bottom: 8px;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .hero-buttons {
    width: 100%;
    padding: 0 12px;
    max-width: 100%;
  }

  .hero-button,
  .whatsapp-btn {
    font-size: 1.1rem;
    padding: 14px 20px;
    border-radius: 10px;
    max-width: 100%;
  }

  .hero-right {
    flex: unset;
    margin-top: 18px;
    width: 100%;
  }

  .hero-right img {
    border-radius: 14px;
    max-width: 92vw;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  }

  .hero-wave svg {
    width: 100vw;
    height: 22vw;
    min-height: 60px;
    max-height: 90px;
    display: block;
  }
}
