:root {
  --cream: #FFF8E7;
  --yellow: #F5D547;
  --brown: #5C4A32;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  background-color: var(--cream);
  color: var(--brown);
  font-family: 'Quicksand', sans-serif;
  text-align: center;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("images/posey-mood.png");
  background-repeat: repeat;
  background-size: 560px 112px;
  opacity: 0.32;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 480px;
}

.photo {
  width: min(80vw, 360px);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 28px;
  border: 6px solid var(--yellow);
  box-shadow: 0 12px 32px rgba(92, 74, 50, 0.25);
  animation: float 4s ease-in-out infinite;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0;
}

.subheading {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  color: var(--brown);
  opacity: 0.85;
}

footer {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.6;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo {
    animation: none;
  }
}
