/* Purring Place - domain holding page */

@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-VariableFont_opsz,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-deep-teal: #315C5B;
  --color-deep-teal-hover: #244645;
  --color-muted-gold: #C6A15B;
  --color-warm-cream: #F7F2E8;
  --color-charcoal: #303536;
  --color-border: #E2D9C8;
  --color-white: #FFFFFF;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --focus-outline: 3px solid var(--color-deep-teal-hover);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body,
h1,
p {
  margin: 0;
}

body {
  min-height: 100vh;
  background-color: var(--color-warm-cream);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 15px;
  z-index: 100;
  padding: 10px 18px;
  border-radius: 4px;
  background-color: var(--color-deep-teal);
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 15px;
}

a:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 3px;
}

.landing-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1rem 0;
}

.landing-container {
  width: 100%;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.brand-header {
  margin-bottom: 2rem;
}

.main-logo {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
}

.card {
  padding: 3.5rem 2.25rem;
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: 16px;
  background-color: var(--color-white);
  box-shadow: 0 10px 30px rgba(48, 53, 54, 0.04);
}

.badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--color-muted-gold);
  border-radius: 50px;
  background-color: var(--color-warm-cream);
  color: var(--color-deep-teal-hover);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-title {
  margin-bottom: 0.5rem;
  color: var(--color-deep-teal);
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.divider {
  max-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.25rem auto 1.5rem;
}

.gold-line {
  height: 1px;
  flex-grow: 1;
  background-color: var(--color-muted-gold);
}

.paw-icon {
  color: var(--color-deep-teal);
  font-size: 0.85rem;
}

.hero-body {
  max-width: 470px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.primary-action {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.btn {
  display: inline-block;
  min-height: 44px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  border-color: var(--color-deep-teal);
  background-color: var(--color-deep-teal);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(49, 92, 91, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--color-deep-teal-hover);
  background-color: var(--color-deep-teal-hover);
  color: var(--color-white);
}

.site-footer {
  margin-top: 2.5rem;
  padding: 1.8rem 1rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-container {
  max-width: 650px;
  margin: 0 auto;
}

.footer-tagline {
  margin-bottom: 0.5rem;
  color: var(--color-deep-teal);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.copyright {
  color: #555D5E;
  font-size: 0.78rem;
}

@media (max-width: 600px) {
  .landing-wrapper {
    padding-top: 1.25rem;
  }

  .card {
    padding: 2rem 1.25rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .main-logo {
    max-width: 220px;
  }

  .footer-tagline {
    letter-spacing: 0.07em;
  }
}

@media (max-width: 360px) {
  .btn {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
