/* Secțiunea "Povestea mea" */
.about {
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 40px;
  background-color: #1a1a1a;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  box-sizing: border-box;
}

/* Stilizare pentru imagine */
.about-images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 100%;
  flex: 1;
}

.about-images img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efect de hover pe imagini */
.about-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Stilizare pentru textul din secțiune */
.about-text {
  max-width: 800px; /* Ajustăm lățimea pentru a fi centrat și să ocupe mai mult spațiu */
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 auto;
}

/* Titlul secțiunii */
.about h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid #ff6600;
  padding-bottom: 10px;
}
/* Titlul secțiunii */
.about  p{
 font-size: 20px;
}

/* Butonul "Citeste mai mult" */
.btn-read-more {
  display: inline-block;
  margin-top: 15px;
  background-color: #ff6600;
  padding: 10px 20px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
}

/* Efect hover pe buton */
.btn-read-more:hover {
  background-color: #e65c00;
  transform: translateY(-3px);
}

/* Responsivitate pentru mobil */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    justify-content: center;
  }

  .about-text {
    max-width: 100%;
    margin: 20px;
  }

  .about h2 {
    font-size: 1.5rem;
  }

  .btn-read-more {
    width: 100%;
    padding: 12px 0;
  }
}
