/* ------------------------------
   COLOR PAWS GLOBAL STYLES
------------------------------ */

:root {
  --bg: #fff9fc;
  --bg-alt: #ffeef8;
  --bg-soft: #fff7fd;

  --pink: #f7a8d9;
  --pink-deep: #f072c2;
  --lilac: #c6b8ff;
  --mint: #b1f5e6;
  --yellow: #ffe3a3;
  --blue-soft: #b9e4ff;

  --text-main: #32263c;
  --text-soft: #75637f;
  --border-subtle: rgba(255, 255, 255, 0.8);

  --card-bg: #ffffff;
  --shadow-soft: 0 20px 40px rgba(75, 35, 75, 0.06);
  --radius-lg: 1.75rem;
  --radius-md: 1.1rem;
  --radius-pill: 999px;

  --container-width: 1120px;
}

/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffeaf7 0, #fffdfd 40%, #fff9ff 100%);
  color: var(--text-main);
  line-height: 1.6;
}

/* Layout helpers */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ------------------------------
   HEADER & NAV
------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to right,
    rgba(255, 249, 252, 0.9),
    rgba(255, 238, 248, 0.9)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0.6rem 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.7rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: conic-gradient(
    from 180deg,
    #f7a8d9,
    #c6b8ff,
    #b1f5e6,
    #ffe3a3,
    #f7a8d9
  );
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Pacifico", cursive;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* Optional logo image style */
.logo-image {
  height: 46px;
  width: auto;
  display: block;
}

/* Nav links */
.main-nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 22px rgba(116, 54, 116, 0.12);
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.nav-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.nav-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.nav-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------
   HERO
------------------------------ */

.hero {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(247, 168, 217, 0.26), transparent 60%),
    radial-gradient(circle at center right, rgba(198, 184, 255, 0.25), transparent 60%),
    radial-gradient(circle at bottom left, rgba(177, 245, 230, 0.35), transparent 70%);
  opacity: 0.9;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top, rgba(255, 255, 255, 0.85), transparent 70%);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

/* Hero text */
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.1vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.hero h1 span {
  background: linear-gradient(120deg, #f7a8d9, #c6b8ff, #b1f5e6, #ffe3a3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 32rem;
  color: var(--text-soft);
  margin-bottom: 1.6rem;
}

/* Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(120deg, #f7a8d9, #c6b8ff);
  color: #3b2146;
  box-shadow: 0 16px 30px rgba(120, 51, 120, 0.22);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(120, 51, 120, 0.26);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(91, 46, 91, 0.12);
}

.btn.ghost:hover {
  background: #ffffff;
}

/* Hero badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(106, 53, 106, 0.09);
  color: var(--text-soft);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.9rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 220deg,
    rgba(247, 168, 217, 0.25),
    rgba(198, 184, 255, 0.2),
    rgba(177, 245, 230, 0.2),
    rgba(255, 227, 163, 0.3),
    rgba(247, 168, 217, 0.25)
  );
  opacity: 0.35;
  filter: blur(25px);
  z-index: -1;
}

/* HERO LOGO VARIANT */
.hero-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
}

.hero-logo {
  width: 100%;
  max-width: 380px;
  display: block;
  border-radius: 1.4rem;
  background: radial-gradient(circle, #fff9ff 0, #ffeef8 40%, #fff9ff 100%);
  box-shadow: 0 20px 40px rgba(75, 35, 75, 0.18);
}

/* Old hero pup cards (not used now, but kept in case) */
.hero-pup {
  border-radius: 1.4rem;
  padding: 2.4rem 1.7rem;
  margin-bottom: 0.9rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero-pup-main {
  background: linear-gradient(135deg, #f7a8d9, #ffe3a3);
}

.hero-pup-secondary {
  background: linear-gradient(135deg, #c6b8ff, #b1f5e6);
}

.hero-pup::after {
  content: "🐩";
  font-size: 3.1rem;
  position: absolute;
  right: 1.4rem;
  bottom: 1.3rem;
  opacity: 0.9;
}

.pup-text {
  font-weight: 600;
  color: #3a2145;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 0.3rem;
}

/* ------------------------------
   SECTION BASE
------------------------------ */

.section {
  padding: 4rem 0;
}

.section-inner {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2rem;
  box-shadow: var(--shadow-soft);
}

.section-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.section-header h2 span {
  background: linear-gradient(120deg, #f7a8d9, #c6b8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header p {
  color: var(--text-soft);
}

/* Quick links grid (home) */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.3rem;
}

.quick-link-card {
  text-decoration: none;
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: 0 12px 24px rgba(116, 54, 116, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.95);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  color: var(--text-main);
}

.quick-link-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.quick-link-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}

.quick-link-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-deep);
}

.quick-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(116, 54, 116, 0.16);
}

/* Home gallery preview (Option B) */
.home-gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.1rem;
  margin-bottom: 1.4rem;
}

.home-gallery-thumb {
  border-radius: 1.4rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 26px rgba(105, 53, 120, 0.08);
}

.home-gallery-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.home-gallery-cta-wrap {
  text-align: center;
}

.about-preview {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.about-preview p {
  color: var(--text-soft);
  margin-bottom: 0.8rem;
}

/* ------------------------------
   ABOUT
------------------------------ */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.6fr);
  gap: 2.4rem;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  display: block;
  border-radius: 1.8rem;
  box-shadow: 0 18px 32px rgba(75, 35, 75, 0.18);
  object-fit: cover;
}

.photo-placeholder {
  border-radius: 1.8rem;
  border: 1px dashed rgba(190, 159, 199, 0.9);
  padding: 5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(145deg, #ffeef8, #fff9ff);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.about-text p {
  margin-bottom: 0.9rem;
  color: var(--text-soft);
}

/* About highlights */
.about-highlights {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.7rem;
  margin: 1.3rem 0;
}

.highlight {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.6rem 0.9rem;
  align-items: flex-start;
  padding: 0.65rem 0.9rem;
  border-radius: 1rem;
  background: rgba(252, 243, 255, 0.8);
}

.highlight-icon {
  font-size: 1.2rem;
}

.highlight-text h3 {
  font-size: 0.96rem;
  margin-bottom: 0.15rem;
}

.highlight-text p {
  font-size: 0.86rem;
  color: var(--text-soft);
}

.about-note {
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: rgba(247, 168, 217, 0.08);
  border: 1px dashed rgba(247, 168, 217, 0.4);
}

/* ------------------------------
   GALLERY
------------------------------ */

.gallery {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.3rem;
}

.gallery-item {
  border-radius: 1.4rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 26px rgba(105, 53, 120, 0.08);
  display: flex;
  flex-direction: column;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* Placeholder pastel blocks (if you ever add them back) */
.gallery-item.placeholder {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
}

.gallery-block {
  border-radius: 1.2rem;
  aspect-ratio: 4 / 3;
}

/* Pastel block variations */
.pastel-1 {
  background: linear-gradient(135deg, #f7a8d9, #ffe3a3);
}

.pastel-2 {
  background: linear-gradient(135deg, #c6b8ff, #f7a8d9);
}

.pastel-3 {
  background: linear-gradient(135deg, #b1f5e6, #c6b8ff);
}

.pastel-4 {
  background: linear-gradient(135deg, #ffe3a3, #b1f5e6);
}

.pastel-5 {
  background: linear-gradient(135deg, #f7a8d9, #b1f5e6);
}

.pastel-6 {
  background: linear-gradient(135deg, #c6b8ff, #ffe3a3);
}

.gallery-item figcaption {
  padding: 0.55rem 0.4rem 0.2rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.gallery-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-soft);
}

/* ------------------------------
   SERVICES
------------------------------ */

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
}

.service-column h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.service-intro {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

.service-card {
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.1rem 1.1rem 1rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 12px 24px rgba(116, 54, 116, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.service-card.creative {
  background: radial-gradient(circle at top left, #ffeaf7, #ffffff 50%);
}

.service-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.service-card ul {
  list-style: none;
  margin-bottom: 0.5rem;
}

.service-card ul li {
  font-size: 0.9rem;
  color: var(--text-soft);
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.2rem;
}

.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1rem;
  color: var(--pink-deep);
}

.service-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}

.service-price span {
  font-weight: 700;
  color: var(--pink-deep);
}

.service-note {
  font-size: 0.85rem;
  padding: 0.8rem 0.9rem;
  border-radius: 1.1rem;
  background: rgba(198, 184, 255, 0.07);
  border: 1px dashed rgba(198, 184, 255, 0.7);
  margin-top: 0.6rem;
  color: var(--text-soft);
}

.policies-blurb {
  margin-top: 1.9rem;
  padding-top: 1.4rem;
  border-top: 1px dashed rgba(228, 196, 238, 0.7);
}

.policies-blurb h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.policies-blurb p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ------------------------------
   FAQ
------------------------------ */

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.2rem;
}

.faq-item {
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: 0 12px 24px rgba(104, 54, 116, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.faq-item h3 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ------------------------------
   LIGHTBOX (Gallery)
------------------------------ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(32, 16, 48, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 100;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  background: #fff;
  border-radius: 1.6rem;
  padding: 1rem 1.2rem 1rem;
  max-width: min(90vw, 650px);
  max-height: 85vh;
  box-shadow: 0 20px 40px rgba(40, 20, 60, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 1.2rem;
}

#lightbox-caption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  text-align: center;
}

.lightbox-close {
  align-self: flex-end;
  border: none;
  background: transparent;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-soft);
  margin-bottom: 0.2rem;
}

/* ------------------------------
   FOOTER
------------------------------ */

.site-footer {
  padding: 2.4rem 0 3rem;
  background: linear-gradient(
    to top,
    rgba(247, 168, 217, 0.18),
    rgba(255, 255, 255, 0.95)
  );
}

.footer-inner {
  text-align: center;
}

.footer-name {
  font-family: "Pacifico", cursive;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.footer-meta {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.footer-meta .dot {
  margin: 0 0.4rem;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
    margin-bottom: 1.7rem;
  }

  .section-inner {
    padding: 2rem 1.5rem;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 110%;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 1.25rem;
    box-shadow: 0 18px 40px rgba(70, 30, 80, 0.18);
    padding: 0.7rem 0.9rem;
    min-width: 190px;
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-links.nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 3rem 0;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.6rem;
  }
}
