/* Contact Section */
.contact {
  padding: 4rem 2rem;
  background-color: #f4f4f4;
  color: #333;
}

.contact__header {
  text-align: center;
  margin-top: 80px; /* Asigură distanță față de navbar */
}

.contact__header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact__header p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
}

.contact__item {
  width: 30%;
  text-align: center;
}

.contact__item i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff6b6b;
}

.contact__item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact__form {
  margin-top: 2rem;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__group label {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: block;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.btn {
  padding: 1rem 2rem;
  background-color: #ff6b6b;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
}

.btn:hover {
  background-color: #ff4c4c;
}
.quizuri__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.quiz__card {
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.quiz__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.quiz__card h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.quiz__card p {
  margin-bottom: 1rem;
  color: #666;
}

.btn {
  display: inline-block;
  background-color: #4070f4;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #3051c4;
}
.section__title {
  font-size: 2.5rem; /* crește dimensiunea */
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}






/*=============== PROIECTE ===============*/
.projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 2rem 4rem;
  background-color: #f9f9f9;
  text-align: center;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  margin-top: calc(var(--header-height) + 2rem);
}

.projects__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: var(--black-color);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

.project__item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.project__item:hover {
  transform: translateY(-5px);
}

.project__link {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.project__link:hover {
  color: #ff6b6b;
}

.project__desc {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.5rem;
  line-height: 1.5;
}
