body {
  background-color: #F9F5F1;
  font-family: Georgia, serif;
  color: #4B3832;
  margin: 0;
  padding: 40px 20px;
}

/* Header Image */
.header-cover {
  position: relative;
  width: 100%;
  max-height: 300px;
  overflow: hidden;
}

.header-cover img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.header-text {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  background-color: rgba(123, 63, 0, 0.7);
  padding: 8px 16px;
  border-radius: 10px;
}

/* Stickers */
.sticker {
  position: absolute;
  width: 60px;
  z-index: 5;
}

.top-left.sticker-1 {
  top: 10px;
  left: 10px;
}

.top-left.sticker-2 {
  top: 50px;
  left: 40px;
}

.top-right.sticker-1 {
  top: 10px;
  right: 10px;
}

.top-right.sticker-2 {
  top: 50px;
  right: 40px;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Title */
h1 {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: 3rem;
  color: #7B3F00;
  margin-bottom: 5px;
  text-align: center;
}

/* Subtitle */
.subtitle {
  font-style: italic;
  font-size: 1.25rem;
  color: #A97458;
  margin-bottom: 40px;
  text-align: center;
}

/* Flex container for links */
.link-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Individual link box styling */
.link-box {
  background-color: #fff8f0;
  border: 2px solid #7B3F00;
  border-radius: 15px;
  padding: 15px;
  max-width: 280px;
  box-shadow: 0 4px 10px rgba(123, 63, 0, 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.link-box:hover {
  box-shadow: 0 8px 20px rgba(123, 63, 0, 0.3);
  transform: translateY(-5px);
}

/* Images inside boxes */
.link-box img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
  display: block;
  box-shadow: 0 2px 6px rgba(75, 56, 50, 0.2);
  transition: transform 0.3s ease;
}

.link-box img:hover {
  transform: scale(1.05);
}

/* Captions below images */
.link-box p {
  font-size: 1rem;
  color: #5B4A3B;
  margin: 0;
}

/* Strong text styling */
.link-box strong {
  color: #7B3F00;
  font-weight: 600;
}
