@charset "utf-8";
<meta charset="UTF-8" />

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=PT Serif:wght@300;400;500;700&display=swap');

:root {
  --color-blue: #204060;
  --color-orange: #f28b32;
  --color-orange-dark: #d66f1f;
  --color-gold: #f4c76a;
  --color-light: #f7f7f9;
  --color-gray: #e0e3ea;
  --color-text: #1f2933;
}

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

body {
  margin: 0;
  font-family: 'PT Serif', serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Serif', serif;
}

/* Top Bar */
.top-bar {
  background-color: #ffffff;
  font-size: 0.9rem;
  padding: 0.4rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d4d4d4;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.top-bar a {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f28b32;
  text-decoration: none;
}

.top-bar a:hover {
  color: #d66f1f;
}

/* HEADER */
header {
  background-color: #fcf8f9; /* pale sunrise tint */
  padding: 0.75rem 0;
  width: 100%;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 24px;
  padding-right: 24px;
  max-width: 100%;
}
.hero-divider {
  width: 60px;
  height: 3px;
  background-color: #f28b32; /* adjust to taste */
  margin: 0.5rem 0 1rem;
  border-radius: 2px;
}

.masthead-logo {
  display: flex;
  flex-shrink: 1;
  min-width: 0;
}

.masthead-logo img {
  width: clamp(180px, 24vw, 360px);
  height: auto;
  display: block;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  list-style: none;
  margin: 0;          /* ← removes default UL margin */
  padding: 0;         /* ← removes default UL padding */
}

.nav-links a {
  color: #204060;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f28b32;
}

/* Appointment Button (Header) */
.footer-cta {
  display: flex;
}

.footer-appointment-btn {
  background-color: #d96a1b;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.footer-appointment-btn:hover {
  background-color: #c45f18;
}

/* HERO */
.hero {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  width: 100%;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-left: 24px;
  padding-right: 24px;
  max-width: 100%;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: clamp(200px, 40vw, 500px);
  object-fit: cover;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: -1;
}

.hero-tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f4c76a;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.hero-headline {
  font-size: 2.8rem;
  line-height: 1.15;
  color: #204060;
  font-weight: 700;
  max-width: 40%;
  margin-top: -0.2rem;
}

.hero-inner p {
  max-width: 40%;
}

.hero-ctas {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
}

.walkin-urgent-link {
  color: #d96a1b;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.walkin-urgent-link {
  color: #d96a1b;                 /* base orange */
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

/* Arrow */
.walkin-urgent-link::after {
  content: "\2192";               /* → */
  font-size: 1.1rem;
  color: #d96a1b;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Hover color */
.walkin-urgent-link:hover {
  color: #c45f18 !important;      /* darker orange */
}

/* Arrow hover color */
.walkin-urgent-link:hover::after {
  color: #c45f18 !important;
}

/* Wiggle animation */
.walkin-urgent-link:hover::after {
  transform: translateX(3px);     /* subtle wiggle */
}


/* THREE-STEP EXPECT BOXES */
.what-to-expect {
  display: flex;
  flex-direction: row;     /* side-by-side */
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;         /* keeps mobile layout clean */
  margin-top: -40px;       /* tucks boxes up under hero */
  padding: 0 1rem;
}

.expect-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex: 1;                 /* makes all boxes equal width */
  min-width: 260px;        /* prevents squishing on smaller screens */
}

.expect-title-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.expect-icon {
  width: 40px;
  height:40px;
}

.expect-box h3 {
  color: #2a4d6a;
  font-weight: 700;
  font-size: 1.35rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  margin: 0;
}



.step-text h3 {
  margin: 0 0 0.5rem 0;
}

.step-text p {
  margin: 0;
}


/*.step-number {
  margin-right: 16px;
  font-size: 3rem;
  font-weight: 700;
  color: #ff7a00;
  transform: rotate(-9deg);
}*/

.step-text h3 {
  margin: 0 0 0.5rem 0;
  color: #204060;
}

/* KNOW SECTIONS */
.section-know-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.section-know {
  flex: 1 1 50%;
  background-color: var(--color-light);
  padding-bottom: 0;
  margin-bottom: 1rem;
}

.section-know-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-know-text {
  flex: 1 1 60%;
}

.section-know-image {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
}

.section-know-image img {
  width: 150px !important;
  height: auto;
  border-radius: 8px;
}
.section-know-expect h3,
.section-know-costs h3 {
  color: #B8860B;   /* dark gold */
}


/* BOTTOM INFO */
.bottom-info {
  background-color: #ffffff;
  padding: 2.5rem 1.5rem;
  margin-top: 3rem;
}

.bottom-info-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.bottom-item {
  flex: 1 1 20%;
}
.bottom-item-featured {
  color: #2a4d6a;
  font-weight: 700;
  }


/* ============================================================
   MOBILE BREAKPOINTS — ALL RESPONSIVE RULES GROUPED TOGETHER
   ============================================================ */

/* --------------------------------------------
   1. MOBILE HEADER (≤ 768px)
   -------------------------------------------- */
@media (max-width: 768px) {

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .masthead-logo {
    flex-shrink: 0;
    max-width: 220px;
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .masthead-logo img {
    height: 48px !important;
    width: auto !important;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .footer-appointment-btn {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }
}


/* --------------------------------------------
   2. MOBILE — “Know What to Expect” + “Know What It Costs”
   -------------------------------------------- */
@media (max-width: 768px) {

  /* Wrapper stacks vertically */
  .section-know-wrapper {
    max-width: none;
    margin: 0;
    padding: 0 1rem;
    flex-direction: column;
    gap: 2rem;
  }

  /* Inner content stacks text → image */
  .section-know-inner {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
  }

  .section-know-text {
    order: 1;
    width: 100%;
  }

  .section-know-image {
    order: 2;
    align-self: flex-end;
  }

  /* Full-width buttons for mobile UX */
  .section-know-text .btn-outline {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.4rem;
    border-radius: 8px;
  }
}


/* --------------------------------------------
   3. TABLET — “Know Your Pet” bubble reposition (≤ 1024px)
   -------------------------------------------- */
@media (max-width: 1024px) {
  .section-know-pet {
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    right: auto;
  }
}

