@import url('https://fonts.googleapis.com/css2?family=Gowun+Batang&family=Handlee&display=swap');

body {
  font-family: 'EB Garamond', serif;
  color: #403c33;
  background-color: #e8f3e1;
  background-image: url('https://julia-mijares.neocities.org/fonsflors.jpeg'); /* el teu fons de flors */
  background-repeat: repeat;
  background-size: 400px auto;
  background-attachment: fixed;
  margin: 0;
  line-height: 1.6;
  font-size: 17px;

  /* 💫 Aquí afegeixes el text-shadow */
  text-shadow: 0.5px 0.5px 0 #f4f1ec;
}

.page-wrapper {
  max-width: 750px;
  margin: 4rem auto;
  background: #fffaf3cc;
  border: 2px solid #d3c7b8;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 2rem 3rem;
}

/* 🌿 Capçalera */
header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-family: 'Yeseva One', cursive;
  font-size: 2.4rem;
  color: #5a6b4f;
  margin-bottom: 0.5rem;
}

nav {
  font-size: 0.95rem;
  color: #7b7b6d;
}

nav a {
  color: #4f5e49;
  text-decoration: none;
  padding: 0 6px;
  transition: color 0.3s;
}

nav a:hover {
  color: #a67d55;
}

/* 📖 Caixetes del contingut */
.card {
  background-color: #fffdf8;
  border: 1px solid #e0d9cf;
  border-radius: 10px;
  padding: 1.8rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.card h2 {
  font-family: 'Yeseva One', cursive;
  font-size: 1.6rem;
  color: #6b7a5b;
  margin-bottom: 1rem;
}

/* 🌼 Llista */
ul {
  list-style-type: "🌿 ";
  padding-left: 1.5rem;
}

/* 🪶 Peu */
footer {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 2rem;
  color: #7a6c5b;
  border-top: 1px dashed #d6c9b9;
  padding-top: 1rem;
}

