/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: 'Cormorant Garamond', serif;
  background: url("paper-texture.png") repeat;
  color: #2e2a27;
}

/* ===== MAIN PAPER CARD ===== */
.wrapper {
  width: 85%;
  max-width: 1100px;
  margin: 80px auto;
  background: #f6f1e8;
  padding: 80px 60px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

/* ===== DECORATIVE TAPE (top corners) ===== */
.wrapper::before,
.wrapper::after {
  content: "";
  width: 120px;
  height: 30px;
  background: #efe7da;
  position: absolute;
  top: -15px;
  opacity: 0.7;
  transform: rotate(-5deg);
}

.wrapper::before {
  left: 40px;
}

.wrapper::after {
  right: 40px;
  transform: rotate(5deg);
}

/* ===== NAV ===== */
nav {
  text-align: center;
  margin-bottom: 60px;
}

nav a {
  margin: 0 25px;
  text-decoration: none;
  color: #7d9c8b;
  font-size: 18px;
  letter-spacing: 1px;
  position: relative;
}

nav a:hover {
  color: #c97b84;
}

/* ===== TITLE ===== */
h1 {
  text-align: center;
  font-size: 68px;
  font-weight: 400;
  margin-bottom: 50px;
}

/* ===== SUN ===== */
.sun {
  width: 230px;
  height: 115px;
  background: linear-gradient(to bottom, #f5a37c, #e48b63);
  border-radius: 230px 230px 0 0;
  margin: 0 auto 80px auto;
}

/* ===== BUTTON GRID ===== */
.button-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

.button-grid a {
  display: inline-block;
  padding: 20px 60px;
  text-decoration: none;
  color: #2e2a27;
  font-size: 20px;
  background: #efe7da;
  border: 1px solid rgba(0,0,0,0.1);
  transform: rotate(-1deg);
  transition: 0.3s ease;
}

.button-grid a:nth-child(2) {
  transform: rotate(2deg);
}

.button-grid a:nth-child(3) {
  transform: rotate(-2deg);
}

.button-grid a:nth-child(4) {
  transform: rotate(1deg);
}

.button-grid a:hover {
  background: #f6dcd9;
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===== LATEST LETTER SECTION ===== */
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #7d9c8b;
}

.divider {
  width: 60%;
  height: 2px;
  background: #c97b84;
  margin: 0 auto;
}