/* ════════════════════════════════════════════
   Paw Prints Etc LLC — style.css
   pawprintsetc.com
   ════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Quicksand:wght@500;600;700&display=swap');

:root {
  --pink:    #D4267A;
  --pink-lt: #F0609E;
  --pink-bg: #FDF0F7;
  --teal:    #3BBFC4;
  --teal-lt: #6ED6DA;
  --teal-bg: #F0FAFB;
  --white:   #FFFFFF;
  --gray:    #F5F5F5;
  --text:    #2A2A2A;
  --muted:   #666;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ─────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 3px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 2rem;
  box-shadow: 0 2px 8px rgba(212,38,122,0.10);
}

.nav-brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }

.nav-logo { height: 52px; width: auto; }

.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }

.nav-brand-text .name {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--pink);
  letter-spacing: 0.04em;
}

.nav-brand-text .sub {
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--pink); }

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 0.42rem 1.1rem !important;
  border-radius: 50px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--pink-lt) !important; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--pink-bg) 0%, #FFF5FB 40%, var(--teal-bg) 100%);
  padding: 3.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '🐾';
  font-size: 14rem;
  position: absolute;
  top: -2rem;
  right: -1rem;
  opacity: 0.05;
  transform: rotate(15deg);
  pointer-events: none;
}

.hero-text { max-width: 500px; }

.hero-eyebrow {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
}

.hero-text h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--pink);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-text h1 span { color: var(--teal); }

.hero-text .tagline {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-brand { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; flex-shrink: 0; }

.hero-logo { width: 220px; height: auto; }

.hero-brand-name { text-align: center; }

.hero-brand-name .brand-line1 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.06em;
  display: block;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-brand-name .brand-line2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.68rem, 1.6vw, 0.88rem);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.2rem;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.72rem 1.65rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(212,38,122,0.28);
  cursor: pointer;
  border: none;
  font-family: 'Nunito', sans-serif;
}

.btn-primary:hover { background: var(--pink-lt); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.72rem 1.65rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2.5px solid var(--teal);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}

.btn-secondary:hover { background: var(--teal); color: var(--white); }

.btn-teal {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.72rem 1.65rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  font-family: 'Nunito', sans-serif;
}

.btn-teal:hover { background: var(--teal-lt); transform: translateY(-1px); }

/* ── SPECIALS BAND ───────────────────────────── */
.specials-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-lt) 100%);
  padding: 2.5rem 2rem;
  color: var(--white);
}

.specials-inner { max-width: 960px; margin: 0 auto; }

.specials-band h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.specials-grid { display: flex; flex-wrap: wrap; gap: 1rem; }

.special-card {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  flex: 1 1 240px;
}

.special-card h3 { font-weight: 800; font-size: 0.95rem; margin-bottom: 0.25rem; }
.special-card p  { font-size: 0.85rem; opacity: 0.9; font-weight: 600; }
.special-card .expires {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.specials-empty {
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 600;
  font-style: italic;
}

/* ── SECTIONS ────────────────────────────────── */
.section { padding: 4rem 2rem; }
.section-alt { background: var(--gray); }

.section-header { text-align: center; margin-bottom: 2.75rem; }

.section-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.35rem;
}

.section-header p { color: var(--muted); font-size: 0.95rem; font-weight: 600; }

.teal-bar {
  display: inline-block;
  width: 48px; height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin-top: 0.55rem;
}

/* ── SERVICES GRID ───────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.85rem 1.4rem;
  text-align: center;
  border-top: 4px solid var(--pink);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:nth-child(even) { border-top-color: var(--teal); }

.service-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.10); }

.service-card .icon { font-size: 2.4rem; margin-bottom: 0.7rem; display: block; }

.service-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--pink);
  margin-bottom: 0.45rem;
}

.service-card:nth-child(even) h3 { color: var(--teal); }
.service-card p { font-size: 0.87rem; color: var(--muted); font-weight: 600; }

/* ── FORMS BAND ──────────────────────────────── */
.forms-band {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-lt) 100%);
  padding: 3.25rem 2rem;
  text-align: center;
  color: var(--white);
}

.forms-band h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.forms-band p { font-size: 0.95rem; font-weight: 600; opacity: 0.9; margin-bottom: 1.6rem; }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--pink);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.72rem 1.65rem;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-white:hover { opacity: 0.9; }

/* ── CONTACT GRID ────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 1.4rem;
  max-width: 860px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.65rem 1.2rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border-bottom: 3px solid var(--teal);
}

.contact-card .c-icon { font-size: 1.9rem; margin-bottom: 0.45rem; display: block; }

.contact-card h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.contact-card p { font-size: 0.93rem; font-weight: 700; color: var(--text); }
.contact-card .sub-info { font-size: 0.8rem; color: var(--muted); font-weight: 600; margin-top: 0.2rem; }

.contact-card a { color: var(--text); text-decoration: none; }
.contact-card a:hover { color: var(--pink); }

/* ── SOCIAL LINKS ────────────────────────────── */
.social-band {
  background: var(--text);
  padding: 2rem;
  text-align: center;
}

.social-band p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.social-links { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.social-link:hover { opacity: 0.88; transform: translateY(-1px); }

.social-link.facebook { background: #1877F2; color: var(--white); }
.social-link.google   { background: var(--white); color: var(--text); border: 2px solid #ddd; }

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 1.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

footer strong { color: var(--pink-lt); }
footer .footer-paws { font-size: 0.95rem; letter-spacing: 0.2em; display: block; margin-bottom: 0.35rem; }
footer a { color: var(--teal-lt); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .attribution { margin-top: 0.4rem; font-size: 0.74rem; }

/* ── ABOUT PAGE ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--pink-bg) 0%, var(--teal-bg) 100%);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.4rem;
}

.page-hero p { color: var(--muted); font-size: 1rem; font-weight: 600; }

.staff-section { max-width: 860px; margin: 0 auto; }

.staff-block {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 3rem 0;
  border-bottom: 2px solid #EEE;
  flex-wrap: wrap;
}

.staff-block:last-child { border-bottom: none; }

.staff-block.reverse { flex-direction: row-reverse; }

.staff-photo-wrap { flex-shrink: 0; }

.staff-photo {
  width: 280px;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border: 4px solid var(--pink);
  display: block;
}

.staff-block.reverse .staff-photo { border-color: var(--teal); }

.staff-bio { flex: 1; min-width: 260px; }

.staff-bio .role-badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.65rem;
}

.staff-block.reverse .staff-bio .role-badge { background: var(--teal); }

.staff-bio h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 1rem;
}

.staff-block.reverse .staff-bio h2 { color: var(--teal); }

.staff-bio p {
  font-size: 0.93rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.85rem;
  line-height: 1.75;
}

/* ── FORMS PAGE ──────────────────────────────── */
.forms-page-inner { max-width: 720px; margin: 0 auto; }

.form-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }

.form-item {
  background: var(--white);
  border: 2px solid #EEE;
  border-left: 5px solid var(--pink);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  flex-wrap: wrap;
}

.form-item:nth-child(even) { border-left-color: var(--teal); }

.form-item-info h3 { font-weight: 800; font-size: 0.97rem; color: var(--text); margin-bottom: 0.2rem; }
.form-item-info p  { font-size: 0.82rem; color: var(--muted); font-weight: 600; }

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--pink);
  color: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-download:hover { background: var(--pink-lt); }
.form-item:nth-child(even) .btn-download { background: var(--teal); }
.form-item:nth-child(even) .btn-download:hover { background: var(--teal-lt); }

/* ── PRICE LIST MODAL ────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: 18px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  animation: modalIn 0.22s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-header {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-lt) 100%);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 18px 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.modal-header p { font-size: 0.82rem; opacity: 0.88; font-weight: 600; margin-top: 0.2rem; }

.modal-close {
  background: rgba(255,255,255,0.22);
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.modal-close:hover { background: rgba(255,255,255,0.38); }

.modal-body { padding: 1.75rem 2rem; }

.price-section { margin-bottom: 1.75rem; }

.price-section h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink);
  border-bottom: 2px solid var(--pink-bg);
  padding-bottom: 0.4rem;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }

.price-table td {
  padding: 0.38rem 0.5rem;
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid #F0F0F0;
}

.price-table td:last-child { text-align: right; font-weight: 800; color: var(--pink); white-space: nowrap; }

.price-table tr:last-child td { border-bottom: none; }

.price-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.modal-specials { margin-top: 0.5rem; }

.modal-specials h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  border-bottom: 2px solid var(--teal-bg);
  padding-bottom: 0.4rem;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-special-item {
  background: var(--teal-bg);
  border: 1.5px solid var(--teal);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.65rem;
}

.modal-special-item h4 { font-size: 0.9rem; font-weight: 800; color: var(--teal); margin-bottom: 0.2rem; }
.modal-special-item p  { font-size: 0.83rem; color: var(--muted); font-weight: 600; }

.modal-no-specials { font-size: 0.88rem; color: var(--muted); font-style: italic; font-weight: 600; }

.modal-footer {
  border-top: 2px solid #F0F0F0;
  padding: 1.1rem 2rem;
  text-align: center;
}

/* ── SCHEMA / SEO invisible ───────────────────── */

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 680px) {
  nav { padding: 0.6rem 1rem; }
  .nav-links { gap: 0.85rem; }
  .nav-links a { font-size: 0.8rem; }
  .nav-logo { height: 42px; }
  .hero { padding: 2.75rem 1.25rem; gap: 2rem; }
  .section { padding: 2.75rem 1.25rem; }
  .forms-band { padding: 2.5rem 1.25rem; }
  .staff-photo { width: 100%; height: 280px; }
  .price-two-col { grid-template-columns: 1fr; gap: 0; }
  .modal-body { padding: 1.25rem 1.1rem; }
}

@media (max-width: 480px) {
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
}
