* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(180deg, #fff7f0 0%, #ffe8d2 100%);
  color: #4b3a2f;
  text-align: center;
  padding: 20px;
}

header h1 {
  font-size: 2em;
  color: #ff944d;
  text-shadow: 1px 1px 2px #ffd9b3;
}

header p {
  color: #8a5c3b;
  margin-bottom: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.card {
  background: #fffaf5;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(255, 158, 71, 0.2);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(255, 158, 71, 0.4);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 3px solid #ffe1c4;
}

.card p {
  padding: 10px;
  color: #754c29;
  font-weight: 500;
  background: #fff5ed;
}

footer {
  margin-top: 30px;
  font-size: 0.9em;
  color: #8a5c3b;
}
