body {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  background: #fff;
  color: #222;
  text-align: center;
}

h1, h2, h3 {
  font-family: "Abril Fatface", serif;
  text-transform: uppercase;
  color: #111;
}

.nav {
  text-align: center;
  padding: 1em 0;
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #555;
  font-weight: bold;
}

.nav a:hover {
  color: #d13eff;
}
.hero {
  padding: 4em 1em;
  background: url('../images/travel/maison4.jpg') center/cover no-repeat;
  color: #fff;
}


.posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  padding: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.post {
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: #fff;
  overflow: hidden;
  text-align: left;
  transition: transform 0.2s;
}

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

.post img {
  width: 100%;
  display: block;
}

.post-content {
  padding: 1em;
}

.post h2 {
  font-size: 1.3rem;
  margin-top: 0;
}

.post p {
  font-size: 0.95rem;
  color: #555;
}

@media screen and (max-width: 768px) {
  .posts {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
