/*
Theme Name: HI Pets Vet Clinic
Theme URI: https://www.hipetsvetclinic.com
Author: HI Pets Vet Clinic
Description: Custom theme for Hawaii Pets Veterinary Clinic
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --blue: #4A90B8;
  --blue-dark: #2d6a8a;
  --blue-light: #e8f3f9;
  --blue-mid: #c5dfee;
  --text: #1a2830;
  --text-muted: #5a7080;
  --border: #d0e3ee;
  --bg: #ffffff;
  --bg-soft: #f5f9fc;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-circle {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 500;
  font-family: 'Fraunces', serif;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-logo-text span { color: var(--blue); }

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

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue); }

.nav-book {
  background: var(--blue);
  color: white !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 100px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-book:hover { background: var(--blue-dark); }

/* PAGE CONTENT */
.page-header {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 3rem 4rem 2.5rem;
}

.page-header .eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.page-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

/* NINJA FORMS OVERRIDES */
.nf-form-cont {
  font-family: 'DM Sans', sans-serif !important;
}

.nf-form-title h3 {
  font-family: 'Fraunces', serif !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  color: var(--text) !important;
}

.nf-field-label label {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--text) !important;
}

.ninja-forms-field {
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  font-family: 'DM Sans', sans-serif !important;
  color: var(--text) !important;
  width: 100% !important;
  transition: border-color 0.2s !important;
}

.ninja-forms-field:focus {
  outline: none !important;
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(74,144,184,0.12) !important;
}

.nf-field-container { margin-bottom: 1.25rem !important; }

input[type=submit].ninja-forms-field,
.nf-form-cont .submit-wrap input {
  background: var(--blue) !important;
  color: white !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 28px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  width: auto !important;
}

input[type=submit].ninja-forms-field:hover,
.nf-form-cont .submit-wrap input:hover {
  background: var(--blue-dark) !important;
}

.nf-mp-btn {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  border-radius: 100px !important;
  font-family: 'DM Sans', sans-serif !important;
}

.nf-mp-btn:hover { background: var(--blue-dark) !important; }

.nf-progress-bar-bg { background: var(--blue-mid) !important; }
.nf-progress-bar { background: var(--blue) !important; }

.nf-error .ninja-forms-field { border-color: #e24b4a !important; }
.nf-error-msg { color: #a32d2d !important; font-size: 12px !important; }

/* FOOTER */
.site-footer {
  background: #111c22;
  padding: 3rem 4rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-bottom: 0.75rem;
}

.footer-brand-name span { color: var(--blue); }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  text-decoration: none;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 1rem;
}

/* HIDE WORDPRESS JUNK */
.admin-bar { display: none !important; }
#wpadminbar { display: none !important; }
html.wp-toolbar { padding-top: 0 !important; }

@media (max-width: 900px) {
  .site-nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .page-header { padding: 2rem 1.5rem; }
  .page-content { padding: 2rem 1.5rem 4rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 2rem 1.5rem 1.5rem; }
}
