/* Les Dachettes Cottagecore Theme */

body {
  margin: 0;
  font-family: Georgia, serif;
  color: #333;
  background-color: #f8fff8;
  background-image: 
    linear-gradient(90deg, #c8e5c8 50%, transparent 50%),
    linear-gradient(#c8e5c8 50%, transparent 50%);
  background-size: 40px 40px;
}

.wrap {
  width: min(1000px, 92%);
  margin: 0 auto;
  background: rgba(255,255,255,0.9);
  padding: 20px;
  border: 4px solid #d0e6d0;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Headers */
h1, h2, h3 {
  color: #d37aa3; /* cute pink */
  text-shadow: 1px 1px #f3d9e6;
}

h1 {
  font-size: 2.2em;
  margin: 0.5em 0;
}

h2 {
  color: #6b8fcf; /* soft blue */
}

/* Nav */
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}

nav a {
  background: #fff;
  border: 2px solid #a4cfa4;
  border-radius: 12px;
  padding: 6px 12px;
  color: #6b8fcf;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 2px 2px #c8e5c8;
}

nav a:hover {
  background: #fdf0f6;
  color: #d37aa3;
  transform: translateY(-2px);
}

/* Cards */
.card, .hero-card {
  background: #fffafc;
  border: 2px solid #f3d9e6;
  border-radius: 14px;
  padding: 16px;
  margin: 12px 0;
  box-shadow: 4px 4px #e0e0e0;
}

.hero-card h2 {
  color: #6b8fcf;
}

/* Footer */
footer {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 2px dashed #a4cfa4;
  font-size: 0.9em;
  color: #555;
  text-align: center;
}
