/* --- THEME SETTINGS --- */
:root {
  --color-primary: #8B5E3C;
  --color-bg: #FCF9F5;
  --color-accent: #D4E2D4;
  --font-heading: 'Quicksand', serif;
  --font-body: 'Quicksand', sans-serif;
  --font-size-display: clamp(1.8rem, 4vw, 2.5rem);
}

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

.theme-pawsitive .logo span {
  font-weight: 300;
  opacity: 0.8;
  font-style: italic;
}

/* --- HAMBURGER ---*/
.theme-serene .hamburger {
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  outline: none;
}

/* --- HERO SECTION --- */
.theme-pawsitive .hero-section {
  text-align: center;
  background-image: url('/assets/pawsitive/pawsitive-hero.jpg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  height: calc(100vh - 80px);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.theme-pawsitive .hero-centered {
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.theme-pawsitive .hero-overlay-text {
  background-color: rgba(252, 249, 245, 0.92);
  padding: 2.5rem;
  border-radius: 15px;
  max-width: 550px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: -50px;
}

/* --- TYPOGRAPHY --- */
.theme-pawsitive .hero-title,
.theme-pawsitive .section-title,
.theme-pawsitive .section h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-display);
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  text-align: center;
  font-weight: 500;
}

.theme-pawsitive .hero-subtitle,
.theme-pawsitive .about-text,
.theme-pawsitive p {
  font-family: var(--font-body);
  color: #555;
  line-height: 1.6;
}

/* --- SECTION SPACING --- */
.theme-pawsitive .section {
  padding: 5rem 0;
}

.theme-pawsitive .section.no-top-padding {
  padding-top: 3rem; 
}

/* --- SERVICES GRID --- */
.theme-pawsitive .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.theme-pawsitive .service-card {
  background: #FFFFFF;
  padding: 2.5rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(139, 94, 60, 0.04);
  transition: transform 0.3s ease;
}

.theme-pawsitive .service-card:hover {
  transform: translateY(-8px);
}

.theme-pawsitive .img-box {
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(139, 94, 60, 0.05); 
}

/* --- SERVICE IMAGES --- */
.theme-pawsitive #walks-img { background-image: url('/assets/pawsitive/service-walks.jpg'); background-position: center 30%; }
.theme-pawsitive #sitting-img { background-image: url('/assets/pawsitive/service-sitting.jpg'); background-position: center; }
.theme-pawsitive #enrichment-img { background-image: url('/assets/pawsitive/service-enrichment.jpg'); background-position: center; }

/* --- ABOUT & CONTACT --- */
.theme-pawsitive .about-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.theme-pawsitive .about-image-box {
  flex: 1;
  height: 400px;
  background-image: url('/assets/pawsitive/about.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}

.theme-pawsitive .about-text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.theme-pawsitive .about-cta {
  margin-top: 2rem;
}

.theme-pawsitive .contact-card {
  background: var(--color-accent);
  padding: 4rem;
  border-radius: 40px;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.theme-pawsitive .contact-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.theme-pawsitive .contact-form input,
.theme-pawsitive .contact-form textarea,
.theme-pawsitive .form-row {
  width: 100%;
}

.theme-pawsitive .contact-form .btn-primary {
  margin-top: 1rem;
  min-width: 220px;
  cursor: pointer;
}

.theme-pawsitive .form-row {
  display: flex;
  gap: 1.5rem;
}

.theme-pawsitive input, 
.theme-pawsitive textarea {
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: 12px;
  background: white;
  font-family: var(--font-body);
}

.theme-pawsitive textarea { height: 150px; resize: none; }

/* --- BUTTON REFINEMENT --- */
.theme-pawsitive .btn-primary {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  display: inline-block;
  transition: 0.3s ease;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.theme-pawsitive .btn-primary:hover {
  background-color: #724c31;
  transform: translateY(-2px);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
  :root { --font-size-display: 1.8rem; }

  .theme-pawsitive .hero-section {
    min-height: 80vh;
    padding: 0 1rem;
    background-position: center center;  
  }

  .theme-pawsitive .hero-overlay-text {
    width: 92%;
    margin-top: 0;
    padding: 2rem 1.5rem;
  }

  .theme-pawsitive .service-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .theme-pawsitive .about-flex { flex-direction: column; text-align: center; }

  .theme-pawsitive .about-image-box {
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
    flex: none;
  }
  
  .theme-pawsitive .form-row { flex-direction: column; gap: 1rem; }

  .theme-pawsitive .contact-card {
    padding: 2.5rem 1.5rem;
  }

  .theme-pawsitive .contact-form {
    width: 100%;
    padding: 0;
    align-items: stretch; /* Ensures children fill the card width fully */
  }

  .theme-pawsitive .form-row {
    flex-direction: column;
    gap: 1.5rem; /* Matches the gap of the rest of the form */
    width: 100%;
    margin: 0; /* Ensures no phantom margins push it right */
  }

  .theme-pawsitive .contact-form input,
  .theme-pawsitive .contact-form textarea {
    width: 100%;
    /* Standardizes how width is calculated to include padding */
    box-sizing: border-box; 
    margin: 0;
  }
  
  .theme-pawsitive .contact-form .btn-primary {
    width: 100%;
  }


}