
/* Pawz Pet Grooming – Bootstrap 5 refresh
   Simple, clean styling layered on top of Bootstrap 5
*/

:root {
  --pawz-primary: #3b4a7a;
  --pawz-accent: #f6b44d;
  --pawz-dark: #1d2433;
  --pawz-light: #f8f9fb;
}
html {
	overflow-y: scroll;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--pawz-light);
  color: #222;
}

a {
  color: var(--pawz-primary);
}
a:hover {
  color: #222;
}

.navbar-brand span.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 1.5rem;
  background: var(--pawz-accent);
  margin-right: 0.6rem;
  font-size: 1.4rem;
}

.navbar {
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
}

.hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at top left, #ffe9c8 0, #fdf7ef 35%, #f8fafc 75%);
}

.hero h1 {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 32rem;
}

.badge-soft {
  background: rgba(59, 74, 122, 0.08);
  color: var(--pawz-primary);
  font-weight: 500;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

.pawz-card {
  border-radius: 1.25rem;
  border: none;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
}

.pawz-card h2,
.pawz-card h3 {
  font-weight: 600;
}

.section-heading {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  color: #6b7280;
}

.section-title {
  font-weight: 700;
}

.icon-pill {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 180, 77, 0.18);
  margin-right: 0.5rem;
}

.gallery-img {
  border-radius: 1rem;
  object-fit: cover;
  width: 100%;
  height: 230px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

.gallery-row {
  row-gap: 1.5rem;
}

footer {
  background: #111827;
  color: #e5e7eb;
}

footer a {
  color: #e5e7eb;
  text-decoration: none;
}

footer a:hover {
  color: var(--pawz-accent);
}

.contact-card {
  border-radius: 1.25rem;
  border: none;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
}

.map-wrapper iframe {
  border-radius: 1rem;
  width: 100%;
  min-height: 280px;
}
.map-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio – tweak if you like */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* we’ll handle border in CSS instead of inline */
}
