body {
  font-family: sans-serif;
  margin: auto;
  max-width: 1280px;
  padding-left: 1.5em;
}

.navbar {
  background-color: #313236;
  border-radius: 2px;
  max-width: 800px;
}

.navbar a {
  color: #aaa;
  display: inline-block;
  font-size: 15px;
  padding: 10px;
  text-decoration: none;
}

.navbar a:hover {
  color: #ffffff;
}

header {
  text-align: center;
  margin-bottom: 2em;
}

.tagline {
  font-style: italic;
  color: #555;
}

section {
  margin-bottom: 1.5em;
}

h2 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.2em;
}

footer {
  text-align: center;
  margin-top: 2em;
  font-size: 0.9em;
  color: #333;
  background-color: #f6efe0;
  padding: 1em 0;
}

.small {
  font-size: 0.9em;
  color: #555;
}

/* colorful enhancements */
body {
  background-color: #fbf6ee; /* light parchment */
}

header {
  background-color: #ffebcd;
  padding: 1.5em 0;
  border-bottom: 3px solid #ffd700;
  margin-left: -1.5em;
  padding-left: 1.5em;
  width: calc(100% + 1.5em);
}

h1 {
  color: #d2691e;
}

h2 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.2em;
  color: #2f4f4f;
}

section:nth-child(odd) {
  background-color: #fbf6ee; /* parchment variant */
}

section:nth-child(even) {
  background-color: #f7efe0; /* slightly warmer band */
}

a {
  color: #0066cc;
}

a:hover {
  color: #003399;
}

.hero-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1.5em;
  border-radius: 8px;
  /* crop: trim top 30% and bottom 10%, keep central 60% horizontally */
  clip-path: inset(30% 20% 10% 20%);
}

/*Hero area layout*/
.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  margin-bottom: 2em;
}

.hero-text {
  flex: 1 1 300px;
  max-width: 400px;
  font-size: 1.1em;
  color: #333;
}

.hero-text h2 {
  margin-top: 0;
}
 
/* Paw icon list styling */
ul {
  list-style: none;
  padding-left: 1.2em;
}

ul li {
  position: relative;
  padding-left: 1.8em;
  margin: 0.35em 0;
}

ul li::before {
  content: "🐾";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(0.1em);
  font-size: 1em;
}

.navbar a {
  color: #fff;
}

.navbar a:hover {
  color: #ffdd57;
}

/* Large icons for section headings */
section h2 {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 1.05em;
}

section h2::before {
  font-size: 1.8rem;
  line-height: 1;
}

#dog-walking h2::before { content: "🐕"; }
#paw-drop-in h2::before { content: "🐾"; }
#in-home-sitting h2::before { content: "🏡"; }
#overnight h2::before { content: "🌙"; }
#cat-only h2::before { content: "🐈"; }
#house-services h2::before { content: "🏠"; }
#transportation h2::before { content: "🚗"; }
#extras h2::before { content: "⭐"; }
#why-choose h2::before { content: "❤️"; }

