/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  background: #0f0f0f;
  color: #e6e2d8;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.6;
}

/* HEADER */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 20px;
}

.logo {
  width: 220px;
  margin-bottom: 25px;
  filter: invert(1);
  opacity: 0.9;
}

/* NAV */
.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  text-decoration: none;
  color: #d8d3c6;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  opacity: 0.7;
}

/* HOME */
.home {
  max-width: 900px;
  margin: 80px auto 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* PAPER CARD */
.paper {
  background: #e7dfcf;
  color: #2a2a2a;
  padding: 40px 60px;
  max-width: 520px;
  transform: rotate(-0.6deg);
  box-shadow: 0 15px 40px rgba(0,0,0,0.45);
  border-radius: 2px;
}

.paper p {
  font-size: 20px;
}

/* INTRO TEXT */
.home-intro {
  max-width: 520px;
  text-align: left;
  font-size: 16px;
  opacity: 0.9;
}

.home-intro p {
  margin-bottom: 6px;
}

/* LINKS */
.home-links {
  display: flex;
  gap: 30px;
  margin-top: 10px;
}

.home-links a {
  text-decoration: none;
  color: #e6e2d8;
  font-size: 15px;
  border-bottom: 1px solid rgba(230,226,216,0.3);
  padding-bottom: 2px;
}

.home-links a:hover {
  opacity: 0.7;
}

/* FOOTER */
footer {
  margin: 120px 0 40px;
  text-align: center;
  font-size: 13px;
  opacity: 0.5;
}

/* MOBILE */
@media (max-width: 600px) {
  .paper {
    padding: 30px;
    max-width: 100%;
  }

  .paper p {
    font-size: 18px;
  }

  .home {
    margin-top: 60px;
    gap: 40px;
  }
}

/* --- CARTE POESIE STRAPPATE A MANO --- */

.paper {
  position: relative;
  background: #e7dfcf;
  padding: 40px 36px;
  max-width: 680px;
  margin: 90px auto;
  font-family: "Cormorant Garamond", serif;
  color: #1e1e1e;
  line-height: 1.7;

  /* niente bordi netti */
  border: none;

  /* ombra irregolare, sporca */
  box-shadow:
    0 6px 12px rgba(0,0,0,0.25),
    inset 0 0 25px rgba(0,0,0,0.08);

  /* bordi irregolari */
  border-radius: 3px 7px 5px 9px;
}

/* STRAPPI IRREGOLARI – LATO SINISTRO */
.paper::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -14px;
  width: 30px;
  height: 105%;
  background: #111;
  clip-path: polygon(
    0% 0%,
    80% 3%,
    65% 9%,
    90% 15%,
    70% 22%,
    85% 30%,
    60% 38%,
    88% 46%,
    62% 55%,
    90% 63%,
    68% 72%,
    92% 81%,
    66% 90%,
    85% 100%,
    0% 100%
  );
}

/* STRAPPI IRREGOLARI – LATO DESTRO */
.paper::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -16px;
  width: 34px;
  height: 108%;
  background: #111;
  clip-path: polygon(
    100% 0%,
    20% 4%,
    38% 11%,
    12% 18%,
    42% 27%,
    18% 35%,
    45% 44%,
    15% 53%,
    40% 62%,
    12% 71%,
    44% 80%,
    18% 88%,
    36% 96%,
    0% 100%,
    100% 100%
  );
}

/* TESTO NON TOCCA MAI I BORDI */
.paper p {
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .paper {
    padding: 30px 24px;
    margin: 70px 16px;
  }
}
