/* =========================================
   Looking for Pooch – Global Styles
   ========================================= */

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* Brand tokens */
:root {
  --color-primary: #1e4d8f;   /* navy */
  --color-accent: #ff7a2f;    /* orange */
  --color-bg-soft: #f2f3f5;
  --color-bg-page: #f8fafc;
  --color-white: #ffffff;
  --color-text: #111827;
  --color-muted: #6b7280;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.08);
}

/* Base */

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--color-bg-page);
  color: var(--color-text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-main {
  padding: 28px 0 52px;
}

/* Typography */

h1,
h2,
h3,
h4 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  margin: 0 0 10px;
  color: var(--color-text);
}

h1 {
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 22px;
  font-weight: 600;
}

h3 {
  font-size: 17px;
  font-weight: 600;
}

h4 {
  font-size: 15px;
  font-weight: 600;
}

p {
  margin: 0 0 10px;
  font-size: 14px;
}

.small {
  font-size: 12px;
  color: var(--color-muted);
}

/* Sections & layout */

.section {
  padding: 32px 0;
}

.section-soft {
  background: var(--color-bg-soft);
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: flex-start;
}

/* Pill label */

.pill-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: #e5edff;
  border: 1px solid #c7d2fe;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

/* =========================================
   Header, Brand & Navigation
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
}

/* Brand */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-logo-wrap {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 30% 10%, #ffd29f, #fb923c 45%, #b91c1c 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;

  /* gentle animation */
  animation: logoPulse 4.5s ease-in-out infinite;
}

.brand-logo-img {
  width: 110%;
  height: auto;
}

/* Logo animation (subtle) */
@keyframes logoPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
  }
  50% {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.4);
  }
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text .brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-text .brand-tagline {
  font-size: 13px;
  color: var(--color-muted);
}

/* Nav */

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 13px;
  text-decoration: none;
  color: var(--color-muted);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.nav-link:hover {
  background: rgba(148, 163, 184, 0.16);
  color: var(--color-text);
  transform: translateY(-1px);
}

.nav-link-active {
  background: var(--color-primary);
  color: var(--color-white);
}

.nav-link-primary {
  background: var(--color-primary);
  color: #f9fafb;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(30, 77, 143, 0.35);
}

.nav-link-primary:hover {
  background: #173d70;
}

/* Hamburger toggle (mobile) */

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  margin: 4px 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

/* Toggle animation when nav is open */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================================
   Hero (home)
   ========================================= */

.hero-shell {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 30px 0 32px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.hero-lead {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 10px;
}

.hero-note {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 4px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.1s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease;
}

.btn-emoji {
  font-size: 16px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 14px 32px rgba(248, 113, 36, 0.42);
}

.btn-primary:hover {
  background: #e86a22;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 12px 26px rgba(30, 77, 143, 0.34);
}

.btn-secondary:hover {
  background: #173d70;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-ghost:hover {
  background: #e5edff;
}

/* Cards & lists */

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid #e5e7f2;
}

.card-soft {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: #e5edff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 8px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  margin-bottom: 6px;
  font-size: 14px;
}

.list-paw {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-paw li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 14px;
}

.list-paw li::before {
  content: "🐾";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
}

/* Map preview on home */

.map-preview {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 10px;
  background: #0f172a;
}

#home-map {
  width: 100%;
  height: 220px;
}

/* Full map page */

.map-full {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-note {
  margin-top: 10px;
}

/* QR sample image */

.qr-sample-img {
  border-radius: 14px;
  margin-bottom: 6px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
}

/* Forms */

label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 9px 11px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px 18px;
}

.form-group {
  margin-bottom: 10px;
}

.helper-text {
  font-size: 12px;
  color: var(--color-muted);
}

/* FAQ */

.faq-item {
  margin-bottom: 14px;
}

.faq-question {
  font-weight: 600;
  font-size: 14px;
}

/* Footer */

.site-footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 22px 16px 26px;
  margin-top: 26px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-note {
  color: #dbeafe;
  font-size: 12px;
}

/* =========================================
   Responsive
   ========================================= */

/* Medium screens: stack hero/map, grids */
@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-two {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Mobile & hamburger */
@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 10px;
  }

  .brand {
    flex-direction: column;
  }

  .brand-logo-wrap {
    width: 80px;
    height: 80px;
  }

  .brand-text .brand-name {
    font-size: 17px;
  }

  .brand-text .brand-tagline {
    font-size: 13px;
  }

  /* Hamburger visible */
  .nav-toggle {
    display: block;
  }

  /* Hide nav by default on mobile */
  .main-nav {
    display: none;
    width: 100%;
    margin-left: 0;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 8px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link,
  .nav-link-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Hero & sections */
  .hero-shell {
    padding: 24px 0 26px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 19px;
  }

  p {
    font-size: 14px;
  }

  .section {
    padding: 26px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 11px 16px;
  }

  #home-map,
  .map-full {
    height: 260px;
  }

  .card {
    padding: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
/* Stay in touch hero */
.stay-hero {
  text-align: center;
}

.stay-hero-img {
  max-width: 260px;
  width: 70%;
  margin: 0 auto 18px;
}

/* smaller on phones */
@media (max-width: 720px) {
  .stay-hero-img {
    max-width: 210px;
  }
}
/* mobile nav toggle (hamburger) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  margin-left: auto;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: #0f172a;
  border-radius: 999px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

/* transform into X when open */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* responsive nav behaviour */
@media (max-width: 840px) {
  .main-nav {
    position: absolute;
    top: 64px;          /* just under header */
    right: 0;
    left: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    display: none;
    flex-direction: column;
    padding: 10px 16px 14px;
    gap: 6px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }
}
/* Ensure favicon is visible for all browsers */
link[rel="icon"] {
  display: block;
}

/* Optional: Set a background-image for favicons in some browsers */
html {
  background-image: url('images/favicon-32.png');
  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-position: top left;
}



