﻿body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  background: #f5f5f5;
}

/* HEADER */
.hero img {
  width: 1280px;
  display: block;
}

/* SERVICES */
.services {
  padding: 40px 20px;
  background: fafafa;
  text-align: center;
}

.services h2 {
  font-size: 2.0rem;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* two equal columns */
  column-gap: 30px;                 /* tighten the middle space */
  row-gap: 8px;                     /* small vertical spacing */
  max-width: 700px;                 /* keeps columns from drifting too wide */
  margin: 0 auto;                   /* centers the whole block */
}
.service {
  font-size: 1.3rem;
  background: #ffff;
  padding: 20px;
  border-radius: 6px;
  font-weight: bold;
  /* border-left: 4px solid #ee322f; */

}

/* CALL BOX */
.call-box {
  background: #fafafa;
  padding: 25px 20px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  max-width: 500px;
  margin: 30px auto;
}

.call-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.call-phone {
  font-size: 2rem;
  font-weight: bold;
  color: #ee322f;
  margin: 0 0 10px 0;
}

.call-hours {
  margin: 0;
  font-style: italic;
  font-size: 1.3rem;
}

/* TESTIMONIALS */
.testimonials {
  padding: 50px 20px;
  background: #fafafa;
  text-align: center;
}

.testimonials h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.testimonial {
  background: white;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.stars {
  width: 120px;
  margin-bottom: 10px;
}

.testimonial p {
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

/* MORE LINK */

.more-link {
  grid-column: 1 / -1;   /* spans full width of the grid */
  text-align: right;     /* aligns the text to the right */
  margin-top: 10px;
}

.more-link a {
  font-weight: bold;
  color: #464646;
  text-decoration: none;
}

.more-link a:hover {
  text-decoration: underline;
}

/* FOOTER */
.footer {
  background: #222;
  color: white;
  padding: 30px 20px;
}

.footer {
  text-align: left;          /* don’t center everything by default */
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.mascot {
  width: 120px;
  height: auto;
  border-radius: 6px;
}

.footer-text {
  display: flex;
  flex-direction: column;
}

.address {
  font-size: 1.2rem;
  margin: 0 0 8px 0;
}

.tagline {
  font-style: italic;
  margin: 0;
}

/* PROMO SLIDE */

.summer-promo {
  position: absolute;
  top: 346px;                 /* adjust vertical placement */
  right: -400px;              /* start off-screen to the right */
  z-index: 999;
  animation: slideInOut 6s ease-out forwards;
}

.summer-promo img {
  display: block;
  max-width: 300px;           /* control size */
  height: auto;
}

/* Full sequence: slide in → wait → slide out */
@keyframes slideInOut {
  0% {
    transform: translateX(0);         /* off-screen to the right */
  }
  20% {
    transform: translateX(-650px);    /* slide into the page */
  }
  100% {
    transform: translateX(-650px);    /* final resting position */
  }
}

