/* ==========================================
   SECȚIUNEA "CE FACEM" – Stil unitar cu restul site-ului
   ========================================== */

.what-we-do {
  background-color: #fff;
  max-width: 1100px;
  margin: 60px auto;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  color: #333;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

/* Gradient pastel subtil, similar cu pagina Acasă */
.what-we-do::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 230, 200, 0.2), rgba(255, 250, 240, 0.3));
  z-index: 0;
}

.what-we-do h2 {
  color: #ff6f61; /* accent corai din restul site-ului */
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Container activități */
.activities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Card activitate */
.activity {
  background: #fffdf6; /* alb ușor gălbui */
  border: 2px solid #ffe0b2;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  padding: 25px 20px;
  max-width: 300px;
  flex: 1 1 250px;
  transition: all 0.3s ease;
}

.activity:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  background: #fff9ee;
}

/* Titlul și textul fiecărei activități */
.activity h3 {
  color: #ff6f61;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.activity p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsivitate pentru mobil */
@media (max-width: 768px) {
  .activities {
    flex-direction: column;
    align-items: center;
  }

  .activity {
    max-width: 90%;
  }
}
/* =========================================================
   Pagina: DESPRE NOI – stil suplimentar
   Păstrează identitatea generală (din styles.css)
   Adaugă doar rafinamente vizuale
   ========================================================= */

body {
  background: linear-gradient(180deg, #fff8f3 0%, #fffdf8 100%);
}

/* --- Secțiunea principală --- */
section {
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 60px auto;
  line-height: 1.7;
}

/* --- Titlu principal --- */
section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #d35447;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}
section h2::after {
  content: "🐾";
  display: block;
  font-size: 1.5rem;
  margin-top: 0.3rem;
  color: #ffb347;
}

/* --- Citat (blockquote) --- */
blockquote {
  border-left: 6px solid #ffb347;
  background: #fff8e1;
  padding: 15px 25px;
  font-style: italic;
  color: #5a4634;
  border-radius: 8px;
  margin: 30px 0;
}

/* --- Text accent (finalul secțiunii) --- */
.accent-text {
  display: inline-block;
  background: #fff4e0;
  border: 2px solid #ffd39b;
  color: #7a3b2e;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 15px;
  text-align: center;
  margin-top: 20px;
  transition: 0.3s;
}
.accent-text:hover {
  background: #ffe9c6;
  transform: scale(1.03);
}

/* --- Animație subtilă --- */
section, .what-we-do {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Secțiunea Ce facem --- */
.what-we-do {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 60px 40px;
  max-width: 1100px;
  margin: 60px auto;
  position: relative;
  overflow: hidden;
}
.what-we-do h2 {
  color: var(--accent);
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
}
.activities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.activity {
  background: #fffaf7;
  border: 2px solid var(--accent-light);
  border-radius: 18px;
  padding: 25px 20px;
  width: 300px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.activity:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  background: #fff5f2;
}
.activity h3 {
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 12px;
}
.activity p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.5;
}

/* Responsivitate */
@media (max-width: 900px) {
  .activities {
    flex-direction: column;
    align-items: center;
  }
  .activity {
    width: 90%;
  }
}
