* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif;
}

body {
  background: linear-gradient(135deg, #fcefee, #ffe7f1);
  color: #4a3f55;
  padding: 20px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #f9c6d3;
  color: #6b4c6b;
  padding: 25px 15px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(249, 198, 211, 0.6);
  margin-bottom: 35px;
}

header h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}


/* Navigație (meniu) */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

nav ul li {
  background-color: #f8a4b7;
  border-radius: 25px;
  box-shadow: 0 3px 8px rgba(248, 164, 183, 0.5);
  transition: all 0.3s ease;
}

nav ul li a {
  display: block;
  padding: 12px 22px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
}

nav ul li:hover {
  background-color: #d45d78;
  box-shadow: 0 6px 14px rgba(212, 93, 120, 0.7);
}

nav ul li a:hover {
  color: #fff9fb;
}

/* Main content */
main, section {
  background-color: #fff0f6;
  border-radius: 15px;
  padding: 30px 40px;
  box-shadow: 0 5px 18px rgba(249, 198, 211, 0.5);
  color: #6b4c6b;
  margin-bottom: 40px;
}

section h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem;
  margin-bottom: 20px;
  color: #a85d7f;
  border-bottom: 3px solid #f8a4b7;
  padding-bottom: 8px;
}

p {
  font-size: 1.1rem;
  margin-bottom: 18px;
  text-align: justify;
}

ul {
  list-style-type: disc;
  padding-left: 25px;
  color: #8e6f8e;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

ul li {
  margin-bottom: 12px;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 50px;
  font-size: 1rem;
  color: #a67596;
  font-style: italic;
}

/* Responsive */
@media (max-width: 700px) {
  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  main, section {
    padding: 20px 25px;
  }
}
/* Stil pentru meniul de navigație */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 35px;
  padding-left: 0;
}

nav ul li {
  background-color: #f8a4b7;
  border-radius: 25px;
  box-shadow: 0 3px 8px rgba(248, 164, 183, 0.5);
  transition: all 0.3s ease;
}

nav ul li a {
  display: block;
  padding: 12px 22px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
}

nav ul li:hover {
  background-color: #d45d78;
  box-shadow: 0 6px 14px rgba(212, 93, 120, 0.7);
}

nav ul li a:hover {
  color: #fff9fb;
}

/* Responsive pentru mobil */
@media (max-width: 700px) {
  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }
}