
/* Ensure hero image displays full height without cropping */
header img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-banner {
  background: url('hero-laptop.jpg') no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 20px;
  border-radius: 8px;
}
.hero-content h1 {
  font-size: 3em;
  margin: 0;
}
.hero-content p {
  font-size: 1.2em;
  margin: 10px 0;
}
.cta-btn {
  background: orange;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}
        
/* Updated to prevent cropping of printed text in image */
.hero-banner {
  background: url('hero-laptop.jpg') no-repeat center center;
  background-size: contain;
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
    
/* Force exact image fit without cropping for desktop/laptop */
.hero-banner {
  background: url('hero-laptop.jpg') no-repeat center center;
  background-size: contain;
  background-attachment: scroll;
  width: 100%;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .hero-banner {
    height: 100vh;
  }
}
    
/* Fix branch and service image sizes */
#branches .grid-item img,
#services .grid-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
}
@media (min-width: 768px) {
    #branches .grid-item img,
    #services .grid-item img {
        height: 280px;
    }
}
    