/* ============================================================
   Little Paws Care — Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --pink: #f8b4c8;
  --deep-pink: #e91e8c;
  --light-pink: #fde8ef;
  --cream: #fff8f0;
  --lilac: #f0e4f7;
  --charcoal: #333;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 1rem;
  --transition: 0.3s ease;
  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: background var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-pink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo i {
  font-size: 1.3rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem;
  border-radius: 0.5rem;
  transition: background var(--transition), color var(--transition);
}

.nav-link:hover,
.nav-link.active-link {
  background: var(--light-pink);
  color: var(--deep-pink);
}

.nav-cta {
  background: var(--deep-pink);
  color: var(--white) !important;
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
}

.nav-cta:hover {
  background: #d1177d;
  color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--charcoal);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after  { top:  8px; }

/* Hamburger active */
.nav-toggle.active .hamburger {
  background: transparent;
}
.nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/dog-1.jpeg') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(233, 30, 140, 0.55) 0%,
    rgba(248, 180, 200, 0.6) 50%,
    rgba(240, 228, 247, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem 1rem;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.25);
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 500;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.2);
  margin-bottom: 0.5rem;
}

.hero-tagline i {
  font-size: 0.9em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-shadow: 1px 2px 6px rgba(0,0,0,0.2);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Floating Paw Prints ---------- */
.floating-paws {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.paw {
  position: absolute;
  color: rgba(255,255,255,0.15);
  animation: floatPaw 12s ease-in-out infinite;
}

.paw-1 { font-size: 2rem;   left: 8%;  top: 15%;  animation-delay: 0s;    }
.paw-2 { font-size: 3rem;   left: 80%; top: 20%;  animation-delay: 2s;    }
.paw-3 { font-size: 1.5rem; left: 20%; top: 70%;  animation-delay: 4s;    }
.paw-4 { font-size: 2.5rem; left: 65%; top: 65%;  animation-delay: 1s;    }
.paw-5 { font-size: 1.8rem; left: 45%; top: 10%;  animation-delay: 3s;    }
.paw-6 { font-size: 2.2rem; left: 90%; top: 50%;  animation-delay: 5s;    }

@keyframes floatPaw {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  50%      { transform: translateY(-30px) rotate(15deg); opacity: 0.3; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.9rem 2rem;
  border-radius: 3rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: var(--white);
  color: var(--deep-pink);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  background: var(--light-pink);
}

/* ---------- Wave Dividers ---------- */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
}

.wave-hero {
  z-index: 2;
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: 6rem 0 8rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--deep-pink);
}

.section-title i {
  margin-right: 0.3rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ---------- About ---------- */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ---------- Licence Badge ---------- */
.licence-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 2px solid var(--deep-pink);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}

.licence-badge > i {
  font-size: 2rem;
  color: var(--deep-pink);
  flex-shrink: 0;
}

.licence-badge strong {
  font-family: var(--font-heading);
  color: var(--deep-pink);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.15rem;
}

.licence-badge p {
  font-size: 0.9rem;
  margin: 0;
  color: #555;
}

.licence-badge a {
  color: var(--deep-pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.licence-badge a:hover {
  color: #d1177d;
}

/* ---------- Services ---------- */
.services {
  background: var(--light-pink);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--deep-pink);
  margin-bottom: 0.75rem;
}

.service-card > p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.25rem;
}

.service-list {
  text-align: left;
}

.service-list li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li i {
  color: var(--deep-pink);
  width: 20px;
  text-align: center;
}

/* ---------- Why Us (Features) ---------- */
.why-us {
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2.2rem;
  color: var(--deep-pink);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--deep-pink);
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
}

/* ---------- Meet Steph ---------- */
.meet-steph {
  background: var(--light-pink);
}

.steph-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.steph-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.steph-intro {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--deep-pink);
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--deep-pink);
}

.steph-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* ---------- Booking ---------- */
.booking {
  background: var(--cream);
}

.booking-content {
  max-width: 800px;
  margin: 0 auto;
}

.booking-content > p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-pink), var(--pink));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--deep-pink);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: #555;
}

.booking-checklist {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.booking-checklist h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--deep-pink);
  margin-bottom: 1rem;
}

.booking-checklist li {
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.booking-checklist li i {
  color: #27ae60;
}

.booking-checklist .note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

.booking-checklist .note i {
  color: var(--deep-pink);
}

/* ---------- Gallery ---------- */
.gallery {
  background: var(--light-pink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 1;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Video */
.video-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.video-container h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--deep-pink);
  margin-bottom: 1rem;
}

.video-container video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--cream);
}

.review-card {
  max-width: 750px;
  margin: 2rem auto 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  border-top: 4px solid var(--deep-pink);
}

.review-stars {
  margin-bottom: 1.5rem;
}

.review-stars i {
  color: #f5c518;
  font-size: 1.3rem;
  margin: 0 2px;
}

.review-quote {
  position: relative;
  text-align: left;
}

.review-quote p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  color: #444;
}

.quote-icon {
  color: var(--pink);
  font-size: 1.5rem;
}

.quote-open {
  margin-right: 0.3rem;
}

.quote-close {
  float: right;
  margin-top: -0.5rem;
}

.review-author {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--deep-pink);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--light-pink);
  padding-bottom: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-item > i {
  font-size: 1.5rem;
  color: var(--deep-pink);
  width: 24px;
  text-align: center;
}

.contact-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--deep-pink);
  margin-bottom: 0.15rem;
}

.contact-item p {
  font-size: 0.95rem;
  color: #555;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--deep-pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--transition), background var(--transition);
}

.social-link:hover {
  transform: translateY(-3px);
  background: #d1177d;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
}

.footer-socials a:hover {
  background: var(--deep-pink);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 0.5rem;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition);
  z-index: 10000;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 992px) {
  .about-grid,
  .steph-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image { order: -1; }

  .services-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--cream);
    padding: 1.5rem;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 4rem 0 6rem;
  }

  .services-grid,
  .features-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .booking-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-socials {
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .review-card {
    padding: 1.5rem 1.25rem;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .paw {
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
