@font-face {
  font-family: "Paperlogy";
  src: url("https://adoptable.app/wp-content/uploads/2025/08/Paperlogy-1Thin.woff2")
    format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Paperlogy";
  src: url("https://adoptable.app/wp-content/uploads/2025/08/Paperlogy-2ExtraLight.woff2")
    format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Paperlogy";
  src: url("https://adoptable.app/wp-content/uploads/2025/08/Paperlogy-3Light.woff2")
    format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Paperlogy";
  src: url("https://adoptable.app/wp-content/uploads/2025/08/Paperlogy-4Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Paperlogy";
  src: url("https://adoptable.app/wp-content/uploads/2025/08/Paperlogy-5Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Paperlogy";
  src: url("https://adoptable.app/wp-content/uploads/2025/08/Paperlogy-6SemiBold.woff2")
    format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Paperlogy";
  src: url("https://adoptable.app/wp-content/uploads/2025/08/Paperlogy-7Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Paperlogy";
  src: url("https://adoptable.app/wp-content/uploads/2025/08/Paperlogy-8ExtraBold.woff2")
    format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Paperlogy";
  src: url("https://adoptable.app/wp-content/uploads/2025/08/Paperlogy-9Black.woff2")
    format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-navy: #253d64;
  --color-sage: #aec6b7;
  --color-lavender: #baa9c8;
  --color-sandstone: #e5e0d4;
  --color-rose: #e6b7b4;
  --color-coral: #ea7a62;
  --color-gold: #f1c15f;
  --color-white: #ffffff;
  --color-text: var(--color-navy);
  --font-heading: "Paperlogy", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--color-sandstone);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.logo a {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0;
  color: var(--color-navy);
}

h1,
h2,
h3,
h4,
h5,
.heading {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 0.5em;
  text-transform: none;
  color: var(--color-navy);
}

h1 {
  font-size: 56px;
}
h2 {
  font-size: 48px;
}
h3 {
  font-size: 40px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}

h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-navy);
}

a,
.button-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-coral);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: var(--color-navy);
}

.btn,
a.btn {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  padding: 0.75rem 2rem;
}

.button--primary {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  background-color: var(--color-navy);
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.button--primary:hover {
  background-color: var(--color-coral);
  color: var(--color-white);
}

.bg-hero {
  background-color: #fcfbf8;
}

.cta-section.bg-brand-coral-clay h2,
.cta-section.bg-brand-coral-clay p {
  color: var(--color-white);
}

.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}
.wave-divider .shape-fill {
  fill: var(--color-white);
}

.playful-card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.playful-card:hover {
  transform: translateY(-10px);
}

.alert {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  font-size: 14px;
}
.alert--error {
  color: #9b2c2c;
  background-color: #fed7d7;
}
.alert--success {
  color: #2f855a;
  background-color: #c6f6d5;
}

.footer-copyright {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #4a5568;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-white);
  opacity: 0.8;
}

.login-page-container {
  padding: 3rem 1rem;
}

.login-card {
  max-width: 448px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.login-card__header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-card__title {
  margin: 0;
}

.login-card__subtitle {
  margin-top: 0.5rem;
  color: #6b7280;
}

.login-card__toggle {
  display: flex;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.25rem;
  margin-bottom: 1.5rem;
}

.login-card__toggle-button {
  flex: 1;
  padding: 0.5rem;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-heading);
  border: none;
  background-color: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-card__toggle-button--active {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.login-form__field {
  margin-bottom: 1rem;
}

.login-form__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.login-form__input {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: var(--color-white);
  border: 1px solid #d1d5db;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  font-family: var(--font-body);
  font-size: 16px;
}

.login-form__input:focus {
  outline: none;
  border-color: var(--color-coral);
  box-shadow: 0 0 0 2px rgba(234, 122, 98, 0.4);
}

.login-form__hint {
  font-size: 12px;
  color: #6b7280;
  margin-top: 0.25rem;
}

.login-form__submit {
  margin-top: 1.5rem;
}

.login-card__footer {
  text-align: center;
  margin-top: 1.5rem;
}

.login-card__footer-link {
  font-size: 14px;
  font-weight: 500;
}

.page-for-shelters .cta-section .container {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

@media (max-width: 767px) {
  h1 {
    font-size: 40px !important;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }

  .hero-section .flex.justify-center {
    flex-direction: column;
    align-items: center;
  }

  .hero-section .flex.justify-center > :not([hidden]) ~ :not([hidden]) {
    margin-left: 0;
    margin-top: 1rem;
  }

  .bento-grid {
    height: auto !important;
  }

  .cta-section .container {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .page-how-it-works .cta-section .flex.justify-center {
    flex-direction: column;
    align-items: center;
  }

  .page-how-it-works
    .cta-section
    .flex.justify-center
    > :not([hidden])
    ~ :not([hidden]) {
    margin-left: 0;
    margin-top: 1rem;
  }
}
/* Blog Post Body Text Improvements */
.wp-block-post-content {
  font-family: var(--font-body, "Instrument Sans", sans-serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text, #253d64);
  max-width: 65ch;
  margin: 0 auto;
}

.wp-block-post-content p {
  margin-bottom: 1.5em;
  font-size: 18px;
  line-height: 1.7;
}

.wp-block-post-content h1,
.wp-block-post-content h2,
.wp-block-post-content h3,
.wp-block-post-content h4,
.wp-block-post-content h5,
.wp-block-post-content h6 {
  font-family: var(--font-heading, "Paperlogy", sans-serif);
  font-weight: 600;
  color: var(--color-navy, #253d64);
  margin-top: 2em;
  margin-bottom: 0.75em;
  line-height: 1.3;
}

.wp-block-post-content h2 {
  font-size: 2rem;
  border-bottom: 2px solid var(--color-coral, #ea7a62);
  padding-bottom: 0.5rem;
}

.wp-block-post-content h3 {
  font-size: 1.5rem;
  color: var(--color-coral, #ea7a62);
}

.wp-block-post-content ul,
.wp-block-post-content ol {
  margin: 1.5em 0;
  padding-left: 2em;
}

.wp-block-post-content li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.wp-block-post-content blockquote {
  border-left: 4px solid var(--color-coral, #ea7a62);
  margin: 2em 0;
  padding: 1em 1.5em;
  background-color: var(--color-sandstone, #e5e0d4);
  font-style: italic;
  font-size: 1.1em;
}

.wp-block-post-content a {
  color: var(--color-coral, #ea7a62);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.wp-block-post-content a:hover {
  color: var(--color-navy, #253d64);
}

/* Reading Time Display */
.reading-time-container {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: #fff;
  font-family: var(--font-body, "Instrument Sans", sans-serif);
}

.reading-time-container .reading-time-icon {
  color: white;
}

.reading-time-text {
  color: white;
}

/* Post Meta Improvements */
.wp-block-post-date,
.wp-block-post-author {
  font-size: 14px;
  color: #6b7280;
  font-family: var(--font-body, "Instrument Sans", sans-serif);
}

/* Images */
.wp-block-image,
.wp-block-media-text {
  margin: 2em 0;
}

.wp-block-image figcaption,
.wp-block-media-text figcaption,
.wp-block-post-content figcaption,
article figcaption {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
  text-align: center;
  margin-top: 0.5em;
}

/* Tables */
.wp-block-table table,
.wp-block-post-content table,
article table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}

.wp-block-table th,
.wp-block-table td,
.wp-block-post-content th,
.wp-block-post-content td,
article th,
article td {
  padding: 0.75em;
  border: 1px solid #e5eff7eb;
  text-align: left;
}

.wp-block-table th,
.wp-block-post-content th,
article th {
  background-color: var(--color-sandstone, #e5e0d4);
  font-weight: 600;
  color: var(--color-navy, #253d64);
}

/* Code blocks */
.wp-block-code,
.wp-block-post-content code,
article code {
  background-color: #f3f4f6;
  padding: 0.125em 0.25em;
  border-radius: 0.25rem;
  font-size: 0.875em;
  color: var(--color-navy, #253d64);
}

.wp-block-code code {
  background-color: #1f2937;
  color: #f9fafb;
  padding: 1em;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5em 0;
  display: block;
}

.wp-block-preformatted,
.wp-block-post-content pre,
article pre {
  background-color: #1f2937;
  color: #f9fafb;
  padding: 1em;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5em 0;
}

.wp-block-preformatted code,
.wp-block-post-content pre code,
article pre code {
  background-color: transparent;
  color: inherit;
  padding: 0;
}
