body {
    background-color: #FFF6ED;
    font-family: "Coming Soon", cursive;
  font-weight: 400;
  font-style: normal;
  

 
  position: relative;
}

html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden; /* stop horizontal scroll */
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 480px) { .resize { display: none; } }

/* PAWPRINTS SCATTERED DOWN THE PAGE */
.paw {
  position: absolute;
  background-image: url("paw.png");
  background-size: 120px;
  background-repeat: no-repeat;
  opacity: 0.12;
  width: 180px;
  height: 180px;
  z-index: -1;
}

/* Position pawprints at different heights & sides */
.paw.p1 { top: 150px; left: 40px; }
.paw.p2 { top: 500px; right: 80px; }
.paw.p3 { top: 1300px; left: 120px; }
.paw.p4 { top: 1780px; right: 160px; }
.paw.p5 { top: 2200px; left: 60px; }
.paw.p6 { top: 2800px; right: 100px; }




html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}


h1, h2, h3 {
    font-weight: 700;

}

p{
    font-weight: 400;
}
#hero { 
    padding: 100px;
    text-align: center;
}

.herotext {
    text-align: center;
    margin-bottom: 20px;
    font-family: "Chewy";
}

.callButton {
    background-color: #fcadf9;
    color: black;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    margin-right: 10px;
    font-family: 'Poppins', sans-serif;
margin-top: 20px  ;
    
}

.callButton,
.instaButton {
    display: inline-block;      /* makes <a> act like button */
    text-decoration: none;      /* removes underline */
    text-align: center;         /* keeps text tidy */
    
}

.instaButton {
    background-color: #fcadf9;
    color: black;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
    font-family: 'Poppins', sans-serif;
    margin-top: 20px  ;
    
}
.resize {
    width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}


#services { 
    background-color: #ffffff;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.service1, .service2, .service3, .service4 {
    border: 10px solid #fcadf9;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 10px;      /* side margins so they can sit in a row */
    width: 200px;           /* fixed width */
    height: 200px;          /* 🔑 all boxes now same height */
    display: inline-block; 
    vertical-align: top;    /* line up at the top instead of wobbling */
}

.serviceTitle {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}


button:hover {
    background-color: #FF69EB;
    color:white;
}

/* ===== ABOUT SECTION ===== */

#about {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Title above image + text */
.about-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Wrapper for image + text */
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

/* Left side image */
.about-image img {
  width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* Right side text */
.about-text {
  flex: 1;
  line-height: 1.6;
  font-size: 18px;
}

.about-text p {
  margin-bottom: 15px;
}

/* Mobile layout */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 240px;
  }

  .about-text {
    text-align: left; /* Switch to center if you prefer */
  }
}


/* ===== BEFORE & AFTER SECTION ===== */

#before {
  background-color: #FFF6ED;       /* matches your site background */
  padding: 60px 20px 70px;
}

.ba-title {
  text-align: center;
  font-size: 32px;
  margin: 0 0 10px;
  font-weight: 700;
}

.ba-subtitle {
  text-align: center;
  margin: 0 0 40px;
  font-size: 18px;
}

/* Card grid */
.ba-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Individual card */
.ba-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

/* Image row */
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Each image block */
.ba-image {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.ba-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4; /* TALLER images */
  object-fit: cover;    /* still neat but less cropped vertically */
}


/* Before / After badges */
.ba-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.ba-badge-before {
  background-color: #000000;
}

.ba-badge-after {
  background-color: #ff4fd6; /* bright pink */
}

/* Text strip at bottom of card */
.ba-info {
  padding: 18px 22px 20px;
  text-align: center;
}

.ba-info h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.ba-info p {
  margin: 0;
  font-size: 16px;
  opacity: 0.8;
}

/* Small screen tweaks */
@media (max-width: 600px) {
  .ba-subtitle {
    margin-bottom: 30px;
  }

  .ba-badge {
    top: 10px;
    left: 10px;
  }
}




/* ===== PRICING SECTION ===== */

#pricing {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.pricing-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 1000;
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* ← EXACTLY 2 columns */
  gap: 30px;
}

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  border: 10px solid #fcadf9;
  border-radius: 15px;
  padding: 25px;
  background: #ffffff;
  text-align: center;
}

.price-card h3 {
  text-align: center;
  margin-bottom: 15px;
}

.price-card .desc {
  font-style: italic;
  margin-bottom: 15px;
  text-align: center;
}

.price-card ul {
  list-style: none;
  margin: 0 0 15px;
  padding: 0;
  line-height: 1.6;
}

.price-card h4 {
  margin-top: 12px;
  font-size: 18px;
  text-align: center;
  color: #ff4fd6;
  font-weight: 700;
}

/* Mobile */
@media (max-width: 600px) {
  .price-card {
    padding: 20px;
  }
}


#booking { 
        text-align: center; 
        padding: 40px;  
}

/* ===== REVIEWS SECTION ===== */

#reviews {
  background-color: #FBEEDF;   /* soft beige like your screenshot */
  padding: 60px 20px 70px;
}

.reviews-title {
  text-align: center;
  font-size: 32px;
  margin: 0 0 10px;
  font-weight: 700;
}

.reviews-subtitle {
  text-align: center;
  margin: 0 0 40px;
  font-size: 18px;
}

/* Review Card Grid */
.review-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Individual Review Card */
.review-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 3px solid #f1e7df;
}

/* Pink Stars */
.stars {
  color: #ff4fd6;            /* your bright pink */
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

/* Review Quote */
.review-text {
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Reviewer Name */
.review-name {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
}

/* Dog Info */
.review-dog {
  margin: 4px 0 0;
  opacity: 0.75;
  font-size: 16px;
}

/* Mobile Tweaks */
@media (max-width: 600px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}


#contact { 
    background-color: #ffffff;
    padding: 40px;
    
}

#foot {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    height: 500px;
}

/* ===== NAVBAR ===== */

nav {
  background-color: black;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

/* Inner container: logo on left, hamburger + links on right */
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Logo text */
.logo {
  margin: 0;
  font-size: 1.4rem;
  white-space: nowrap; /* stops the logo splitting into two lines */
}

.lils {
  color: #FF69EB;
}

/* Base link styles */
nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
}

nav a:hover {
  color: #FF69EB;
}

/* The nav links list */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* MOBILE FIRST: start with links hidden in a dropdown */
.nav-links {
  position: absolute;
  top: 100%;               /* sits just under the black bar */
  right: 0;
  left: 0;
  background-color: black;
  display: none;           /* hidden by default */
  flex-direction: column;  /* vertical stack */
  gap: 0;
}

.nav-links li {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-links li a {
  display: block;
  padding: 10px 16px;
}

/* When we add the "nav-open" class in JS, show the menu */
.nav-links.nav-open {
  display: flex;
}

/* Hamburger button */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Hamburger lines */
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: white;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Simple animation when menu is open (X shape) */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ===== DESKTOP LAYOUT ===== */
@media (min-width: 768px) {

  /* Hide hamburger on bigger screens */
  .nav-toggle {
    display: none;
  }

  /* Put links inline on the right */
  .nav-links {
    position: static;
    display: flex !important;  /* always visible on desktop */
    flex-direction: row;
    gap: 20px;
    background: none;
    justify-content: flex-end;   /* <-- THIS keeps your nav on the right */
    margin-left: auto;           /* <-- EXTRA guarantee it sticks to the right */
  }

  .nav-links li {
    border-top: none;
  }

  .nav-links li a {
    padding: 0;
  }
}




a {
    text-decoration: none;
    color: white;
}

a:hover{
    color:#FF69EB;
}

a:visited{
    text-decoration: none;
    
}


/* ——— Contact section ——— */
#contact {
  background-color: #ffffff;        /* keeps your existing white block look */
  padding: 48px 20px;
}

#contact .contact-wrap {
  max-width: 980px;
  margin: 0 auto;
}

#contact h2 {
  margin: 0 0 6px;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
}

#contact .contact-lead {
  margin: 0 0 32px;
  text-align: center;
  color: #4a5561;                   /* muted grey like the screenshot */
  font-weight: 600;
}

#contact .contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 26px;                         /* space between rows */
}

/* Each row */
#contact .contact-item {
  display: grid;
  grid-template-columns: 74px 1fr;   /* pink icon + content */
  gap: 18px;
  align-items: start;
}

#contact .contact-icon {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: #ff4fd6;              /* bright pink badge from the mock */
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

#contact .contact-body h3 {
  margin: 4px 0 6px;
  font-size: 20px;
  line-height: 1.25;
}

#contact .contact-body p,
#contact .contact-body address {
  margin: 0;
  color: #4a5561;
  font-weight: 600;
  font-style: normal;
}

#contact .contact-body a {
  color: inherit;
  text-decoration: none;
}
#contact .contact-body a:hover {
  text-decoration: underline;
}

/* optional faint paw watermark (easy to remove) */
#contact {
  position: relative;
  overflow: hidden;
}

/* Responsive niceties */
@media (min-width: 900px) {
  #contact .contact-list { gap: 34px; }
}


footer {
    background-color: black;
    color: white;
    text-align: center;
    
    width: 100%;
   font-family: "Coming Soon", cursive;
  font-weight: 400;
  font-style: normal;
}

footer a {
    color:#00ffff;
}

iframe {
    border-radius: 15px;
    border: none;
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
    background-color: #FFF6ED;
    width: 100%;
}

.price-card:hover,
.ba-card:hover,
.service1:hover,
.service2:hover,
.service3:hover,
.service4:hover,
.review-card:hover
{
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: 0.2s ease;
}

#pricing button {
    background-color: black;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    
}

#services button {
    background-color: black;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    
}


/* Contact layout with right-side content */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr; /* left = info, right = map */
  gap: 40px;
  align-items: start;
}

/* Map styling */
.contact-extra .map {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 16px;
}

@media (max-width: 800px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}


.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;              /* space between buttons */
  margin-top: 20px;
  flex-wrap: wrap;        /* allows nice wrapping on tiny screens */
}

.hero-buttons a {
  margin: 0;              /* kill the left/right margins */
}
