/*
Theme Name: Happy Paws Pet Salon
Theme URI: https://example.com/
Author: Sample Themes Co.
Author URI: https://example.com/
Description: A boutique, cage-free pet grooming salon theme — sample/demo content only. Warm hand-tag-styled service menu, storytelling sections, and a booking button wired to a generic /booking/ path so it works out of the box on any installation.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: happy-paws-salon
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root{
  /* --- color: pink-toned sample palette --- */
  --blush-paper: #FBF0EC;   /* page background */
  --paw-cream:   #FFFBF9;   /* card / surface background */
  --petal:       #F5D9E1;   /* soft section wash */
  --rose-quartz: #C85C7C;   /* primary pink — links, tags, borders */
  --berry:       #7D2E4A;   /* deep accent — headings, buttons */
  --berry-dark:  #5E2138;   /* button hover */
  --ink:         #3D2430;   /* body text, near-black plum */
  --tag-ring:    #C9A05B;   /* small brass "tag ring" detail — used sparingly */
  --line:        rgba(61,36,48,0.12);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-tag: 22px;
  --container: 1120px;
}

/* ============================================
   RESET / BASE
   ============================================ */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--blush-paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: var(--berry); text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--berry);
  margin: 0 0 .5em;
  line-height: 1.1;
  font-weight: 600;
}
p{ margin: 0 0 1em; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
:focus-visible{
  outline: 3px solid var(--berry);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--berry);
  color: var(--paw-cream);
  box-shadow: 0 8px 20px rgba(125,46,74,0.28);
}
.btn-primary:hover{ background: var(--berry-dark); }
.btn-ghost{
  background: transparent;
  border-color: var(--berry);
  color: var(--berry);
}
.btn-ghost:hover{ background: var(--berry); color: var(--paw-cream); }
.btn-small{ padding: 9px 18px; font-size: 13px; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,240,236,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 24px;
}
.site-brand{ display:flex; align-items:center; gap:10px; }
.site-brand .brand-mark{ width:38px; height:38px; flex-shrink:0; }
.site-brand .brand-name{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--berry);
  line-height: 1;
}
.site-brand .brand-sub{
  display:block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-quartz);
  font-weight: 700;
  margin-top: 2px;
}
.primary-nav ul{ display:flex; gap: 30px; align-items:center; }
.primary-nav a{
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  position:relative;
  padding: 4px 0;
}
.primary-nav a:hover{ color: var(--berry); }
.primary-nav a::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-2px;
  height:2px; background: var(--rose-quartz);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.primary-nav a:hover::after{ transform: scaleX(1); }
.header-cta{ display:flex; align-items:center; gap:18px; }
.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width:38px; height:38px;
  color: var(--berry);
}
@media (max-width: 860px){
  .primary-nav{
    position:absolute; top:100%; left:0; right:0;
    background: var(--paw-cream);
    border-bottom: 1px solid var(--line);
    max-height:0; overflow:hidden;
    transition: max-height .25s ease;
  }
  .primary-nav.is-open{ max-height:400px; }
  .primary-nav ul{ flex-direction:column; gap:0; padding: 8px 24px 18px; }
  .primary-nav li{ width:100%; border-bottom:1px solid var(--line); }
  .primary-nav a{ display:block; padding: 14px 0; }
  .nav-toggle{ display:block; }
  .header-cta .btn-primary span.long{ display:none; }
}

/* ============================================
   HERO
   ============================================ */
.hero{
  position: relative;
  overflow:hidden;
  padding: 76px 0 90px;
  background:
    radial-gradient(circle at 15% 20%, rgba(200,92,124,0.12), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(245,217,225,0.9), transparent 55%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items:center;
}
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 13px; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
  color: var(--berry);
  background: var(--petal);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}
.hero h1{
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin-bottom: 20px;
}
.hero h1 em{
  font-style: italic;
  color: var(--rose-quartz);
}
.hero-sub{
  font-size: 18px;
  max-width: 46ch;
  color: var(--ink);
  opacity: .88;
  margin-bottom: 30px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom: 34px; }
.hero-meta{
  display:flex; gap: 28px; flex-wrap:wrap;
}
.hero-meta div{ font-size: 14px; }
.hero-meta strong{
  display:block; font-family: var(--font-display); font-size: 22px; color: var(--berry);
}
.hero-art{
  position:relative;
  display:flex; align-items:center; justify-content:center;
}
.hero-tag-card{
  background: var(--paw-cream);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(125,46,74,0.18);
  transform: rotate(-3deg);
  max-width: 340px;
  border: 1px solid var(--line);
}
.hero-tag-card .stamp{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose-quartz);
  font-size: 15px;
}
.hero-tag-card h3{ margin: 10px 0 6px; font-size: 22px; }
.hero-tag-card p{ font-size: 14.5px; opacity:.85; margin-bottom: 0; }

/* ============================================
   SECTION GENERIC
   ============================================ */
.section{ padding: 84px 0; }
.section-alt{ background: var(--petal); }
.section-head{
  max-width: 640px;
  margin: 0 auto 48px;
  text-align:center;
}
.section-head .eyebrow{
  display:block;
  font-size: 12.5px; font-weight:800; letter-spacing:.14em; text-transform:uppercase;
  color: var(--rose-quartz); margin-bottom: 12px;
}
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p{ opacity:.82; font-size: 16px; }

/* ============================================
   ABOUT
   ============================================ */
.about-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items:center;
}
.about-portrait{
  background: var(--paw-cream);
  border-radius: var(--radius-tag);
  border: 1px solid var(--line);
  padding: 40px 30px;
  text-align:center;
  position:relative;
}
.about-portrait svg{ width:120px; height:120px; margin: 0 auto 14px; }
.about-portrait .years{
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--berry);
  line-height:1;
}
.about-portrait .years-label{
  font-size: 12.5px; letter-spacing:.1em; text-transform:uppercase; font-weight:700; color: var(--rose-quartz);
}
.about-copy h2{ font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.about-list{ margin-top: 24px; display:grid; gap: 16px; }
.about-list li{
  display:flex; gap:12px; align-items:flex-start;
  font-size: 15.5px;
}
.about-list svg{ flex-shrink:0; width:22px; height:22px; margin-top:2px; color: var(--rose-quartz); }

/* ============================================
   SERVICES — "grooming tag" cards
   ============================================ */
.tag-tabs{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:center;
  margin-bottom: 44px;
}
.tag-tab{
  font-family: var(--font-body);
  font-weight:800; font-size: 13.5px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--rose-quartz);
  background: transparent;
  color: var(--berry);
  cursor:pointer;
}
.tag-tab[aria-selected="true"]{
  background: var(--berry);
  border-color: var(--berry);
  color: var(--paw-cream);
}
.services-panel{ display:none; }
.services-panel.is-active{ display:block; }
.tier-intro{
  text-align:center;
  max-width: 600px;
  margin: 0 auto 36px;
}
.tier-intro h3{ font-size: 26px; margin-bottom: 6px; }
.tier-price{
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--rose-quartz);
}
.tag-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}
.tag-card{
  position:relative;
  background: var(--paw-cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-tag);
  padding: 26px 22px 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tag-card:hover{
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 16px 34px rgba(125,46,74,0.14);
  border-color: var(--rose-quartz);
}
.tag-hole{
  position:absolute; top: 14px; left: 22px;
  width: 14px; height:14px;
  border-radius:50%;
  background: var(--blush-paper);
  border: 3px solid var(--tag-ring);
}
.tag-card h4{
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  margin: 22px 0 6px;
}
.tag-card .price{
  font-weight: 800;
  color: var(--berry);
  font-size: 15px;
}
.tier-note{
  text-align:center;
  font-size: 13.5px;
  opacity:.75;
  max-width: 560px;
  margin: 34px auto 0;
}

/* ============================================
   REVIEWS
   ============================================ */
.review-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card{
  background: var(--paw-cream);
  border-radius: 20px;
  padding: 28px 26px;
  border: 1px solid var(--line);
}
.review-stars{ color: var(--rose-quartz); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p{ font-size: 15px; opacity:.9; margin-bottom: 16px; }
.review-name{ font-weight:800; font-size: 14px; color: var(--berry); }
.review-src{ font-size: 12.5px; opacity:.6; }
.review-strip{
  margin-top: 40px;
  text-align:center;
  font-size: 14.5px;
}

/* ============================================
   VISIT / CONTACT
   ============================================ */
.visit-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items:stretch;
}
.visit-card{
  background: var(--paw-cream);
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 38px;
}
.visit-card h3{ font-size: 20px; margin-bottom: 18px; }
.visit-row{
  display:flex; gap:14px; padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.visit-row:last-child{ border-bottom:none; }
.visit-row svg{ width:22px; height:22px; flex-shrink:0; color: var(--rose-quartz); margin-top:2px; }
.visit-row strong{ display:block; font-size: 14.5px; }
.visit-row span{ font-size: 14px; opacity:.8; }
.visit-map{
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid var(--line);
  min-height: 340px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--petal);
  text-align:center;
  padding: 30px;
}
.visit-map iframe{ width:100%; height:100%; min-height:340px; border:0; }
.map-placeholder{ font-size: 14px; opacity:.7; max-width:280px; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band{
  background: var(--berry);
  color: var(--paw-cream);
  text-align:center;
  padding: 70px 0;
}
.cta-band h2{ color: var(--paw-cream); font-size: clamp(1.7rem, 3vw, 2.3rem); }
.cta-band p{ opacity:.85; max-width: 520px; margin: 0 auto 28px; }
.cta-band .btn-primary{ background: var(--paw-cream); color: var(--berry); }
.cta-band .btn-primary:hover{ background: var(--petal); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer{
  padding: 50px 0 30px;
  background: var(--ink);
  color: var(--petal);
}
.footer-grid{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 20px;
}
.footer-brand{ font-family: var(--font-display); font-size: 20px; color: var(--paw-cream); }
.footer-links{ display:flex; gap: 28px; flex-wrap:wrap; }
.footer-links a{ color: var(--petal); font-size: 14px; opacity:.85; }
.footer-links a:hover{ opacity:1; color: var(--paw-cream); }
.footer-note{ font-size: 12.5px; opacity:.55; margin-top: 14px; }
.footer-bottom{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size: 12.5px; opacity:.6;
}

/* sticky mobile booking bar */
.mobile-book-bar{
  display:none;
  position: fixed; left:0; right:0; bottom:0; z-index: 60;
  padding: 12px 16px;
  background: var(--berry);
}
.mobile-book-bar .btn{ width:100%; justify-content:center; }
@media (max-width: 640px){
  .mobile-book-bar{ display:block; }
  body{ padding-bottom: 66px; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ order:-1; }
  .about-grid{ grid-template-columns: 1fr; }
  .visit-grid{ grid-template-columns: 1fr; }
  .review-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  .review-grid{ grid-template-columns: 1fr; }
  .header-cta span.long{ display:none; }
  .hero{ padding: 50px 0 60px; }
  .section{ padding: 60px 0; }
}
