body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #fbeec1, #f9d29d);
  color: #4e2600;
  animation: fadeInBody 2s ease;
}

@keyframes fadeInBody {
  from { opacity: 0; }
  to { opacity: 1; }
}

header {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  animation: dropIn 1.2s ease;
}

@keyframes dropIn {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

h1 {
  font-size: 2.5rem;
  color: #a52a2a;
  font-family: 'Georgia', serif;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.photo-card {
  background: #fff9e6;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  animation: fadeInCard 1s ease;
}

@keyframes fadeInCard {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

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

.photo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.photo-card p {
  padding: 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  color: #5a381f;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #fff3d6;
  font-size: 0.85rem;
  margin-top: 2rem;
  border-top: 2px dashed #d8a94f;
}
