:root { --site-bg: #feefc8; } /* exact yellow used sitewide */

/* Base */
body {
  margin: 0;
  padding: 0;
  background-color: var(--site-bg);
  font-family: Arial, 'Times New Roman', Times, serif;
  color: #000;
  text-align: center;
}

/* Banner (shared) */
header {
  background: repeating-linear-gradient(
    to right,
    #2e2a25 0,
    #2e2a25 40px,
    #393633 40px,
    #393633 80px
  );
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header img { width: 300px; height: auto; display: block; }
nav { font-weight: 600; font-size: 1rem; }
nav a { color: var(--site-bg); text-decoration: none; margin-left: 30px; letter-spacing: 0.03em; }
nav a:hover { text-decoration: underline; }

/* Layout */
.main-content { padding: 40px 60px; margin: 0 auto; max-width: 1100px; }

/* Unified headings */
h1, h2 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 22px 0;
  text-align: center;
}

/* Intro stack (index) */
.intro-stack { display: grid; justify-items: center; row-gap: 18px; margin-bottom: 46px; }
.intro-text { font-size: 1.2rem; max-width: 720px; margin: 0; }

/* Static dog (shared across pages) */
.dog-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.dog-image {
  width: 320px;
  max-width: 90vw;
  height: auto;
  display: block;
}

/* CTA (arrow + button) */
.cta { display: inline-flex; align-items: center; gap: 18px; }
.cta svg { width: 165px; height: auto; flex: 0 0 auto; } /* 25% smaller */
.button {
  background-color: #2e2a25;
  border: 2px double #d4a017;
  color: var(--site-bg);
  padding: 10px 30px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
}
.button:hover { background-color: #d4a017; color: #2e2a25; }

/* Services (index) */
.services { display: flex; justify-content: center; gap: 30px; margin-bottom: 60px; flex-wrap: wrap; }
.service {
  width: 220px;
  border: 6px double #d4a017;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.service-header {
  background-color: #1a1a1a;
  color: var(--site-bg);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.3rem;
  height: 56px; /* align bars perfectly */
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service p { font-size: 1.2rem; margin: 15px 15px 20px; line-height: 1.3; color: #000; flex: 1 1 auto; }

/* Testimonial + gallery thumbs (index) */
.testimonial { font-style: italic; font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; color: #000; }
.images { display: flex; justify-content: center; gap: 20px; margin-bottom: 80px; flex-wrap: wrap; }
.images img { width: 150px; height: 150px; object-fit: cover; border-radius: 6px; }

/* Gallery page grid */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.gallery img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  border: 6px double #d4a017;
  background-color: #fff;
}

/* Contact page */
.contact-info { margin-top: 12px; line-height: 1.6; }
.contact-info a { color: #2e2a25; text-decoration: none; border-bottom: 1px solid #2e2a25; }
.contact-info a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 720px) {
  .cta svg { width: 124px; }
  .dog-image { width: 260px; }
  .gallery img { width: 180px; height: 180px; }
}
