
/* HERO SECTION PERSONALIZAT */

/* Fundal transparent și text alb în carusel */
.hero .container {
  background: transparent;
  color: #fff0e0;
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: none;
  z-index: 3;
}

.hero .container h2 {
  color: #fff0e0;
  font-family: 'Charmonman', sans-serif !important;
  font-size: 40px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero .container p {
  color: #fff0e0;
  font-family: 'Great Vibes', sans-serif !important;
  font-size: 30px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Buton stilizat */
.hero .btn-get-started {
  color: #fff0e0;
  background: var(--accent-color);
  border: none;
  font-weight: 500;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: #fff0e0;
}

/* Efect fade-in */
.hero .carousel-item .container {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-in-out;
}

.hero .carousel-item.active .container {
  opacity: 1;
  transform: translateY(0);
}

/* Centrare verticală */
.hero .carousel-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* RESPONSIVE: adaptări pentru ecrane mici */
@media (max-width: 768px) {
  .hero .container {
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 20px;
  }

  .hero .container h2 {
    font-size: 26px;
  }

  .hero .container p {
    font-size: 28px;
  }

  .hero .btn-get-started {
    font-size: 13px;
    padding: 6px 24px;
  }
}

/* Linie decorativă între titlu și paragraf */
.hero .container h2 {
  margin-bottom: 10px;
}

.hero .line-spacer {
  width: 100px;
  height: 3px;
  margin: 10px auto 10px;
  background-color: var(--accent-color);
}
