/* Farewell Page Styles */

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

body {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 3em 1em;
  box-sizing: border-box;
  background-color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  color: #333;
}

.farewell {
  max-width: 700px;
  padding: 2em;
  text-align: center;
}

/* Letterhead */
.farewell .letterhead {
  margin-bottom: 2.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #eee;
}

.farewell .logo {
  max-width: 600px;
  height: auto;
  margin-bottom: -6.5em;
}

.farewell .practice-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.farewell .content {
  margin-bottom: 2em;
}

.farewell .content p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.2em;
}

/* Greeting / Salutation */
.farewell .greeting {
  font-size: 1.5em;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5em;
}

/* Drop cap on first paragraph */
.farewell .first-paragraph {
  text-align: left;
}

.farewell .first-paragraph::first-letter {
  float: left;
  font-size: 3.5em;
  line-height: 0.8;
  margin-right: 0.05em;
  padding-top: 0.05em;
  color: #eecb4f;
  font-weight: 700;
}

/* Closing and handwritten signature */
.farewell .closing {
  margin-top: 1.5em;
}

.farewell .handwritten {
  font-family: "Dancing Script", cursive;
  font-size: 5em;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  margin-top: 0.3em;
}

.farewell .paw-inline {
  width: 100px;
  height: 100px;
  fill: #eecb4f;
}

.farewell .referral {
  font-size: 1em;
  font-style: italic;
  color: #666;
  margin-top: 2em;
  padding: 1em;
  border-left: 3px solid #eecb4f;
  background-color: #fafafa;
  text-align: left;
}

.farewell .divider {
  width: 60%;
  height: 1px;
  background-color: #ddd;
  margin: 2em auto;
}

.farewell .signature {
  margin-top: 2em;
}

.farewell .practice-name {
  font-size: 1.4em;
  font-weight: 600;
  color: #333;
  margin-bottom: 1em;
}

.farewell .paw {
  width: 50px;
  height: 50px;
  fill: #eecb4f;
}

/* Responsive adjustments */
@media screen and (max-width: 736px) {
  .farewell {
    padding: 1.5em;
  }

  .farewell .logo {
    max-width: 400px;
  }

  .farewell .practice-title {
    font-size: 1.4em;
  }

  .farewell .content p {
    font-size: 1.1em;
  }

  .farewell .greeting {
    font-size: 1.3em;
  }

  .farewell .first-paragraph::first-letter {
    font-size: 3em;
  }

  .farewell .handwritten {
    font-size: 3.8em;
  }

  .farewell .paw-inline {
    width: 75px;
    height: 75px;
  }

  .farewell .practice-name {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 480px) {
  .farewell {
    padding: 1em;
  }

  .farewell .logo {
    max-width: 350px;
  }

  .farewell .practice-title {
    font-size: 1.2em;
  }

  .farewell .content p {
    font-size: 1em;
  }

  .farewell .greeting {
    font-size: 1.2em;
  }

  .farewell .first-paragraph::first-letter {
    font-size: 2.5em;
  }

  .farewell .handwritten {
    font-size: 3.6em;
  }

  .farewell .paw-inline {
    width: 50px;
    height: 50px;
  }
}
