/* Global styles */
.navbar-nav .nav-link {
  font-size: clamp(14px, 2.5vw, 24px);
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8ef;
    color: #000;
  }
  .hero {
    background-color: #ffcc00;
    color: #000;
    opacity: 80%;
  }
  h1, h2{
    font-weight: bolder;
  }
  h3{
    font-weight: bold;
  }
  footer p {
    margin: 0;
  }
footer a:link {
color: black;
background-color: transparent;
text-decoration: none;
}

footer a:visited {
color: black;
background-color: transparent;
text-decoration: none;
}
footer a:hover {
color: rgb(49, 49, 49);
background-color: transparent;
text-decoration: underline;
}
footer a:active {
color: black;
background-color: transparent;
text-decoration: underline;
}
.img-hover {
  background-image: url('images/Residential\ LPG.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  aspect-ratio: 4/3;
  transition: background-image 0.5s ease-in-out;
}
.img-hover:hover {
  background-image: url(images/Residential\ \(2\).jpg);
}
.img-hover-seasonal {
  background-image: url('images/flue\ covered.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 4/3;
  transition: background-image 0.5s ease-in-out;
}
.img-hover-seasonal:hover {
  background-image: url(images/flue\ clear.jpg);
}
.google-review-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: crimson;
  color: white;
  padding: 14px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
  transform: scale(1);
}
.google-review-btn:hover {
  background-color: rgb(180, 14, 47);
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}
.domestic-info{
  background-color: #fcf2cd;
  border-style:ridge;
  border-width: 2px;
  border-color: #ffcc00;
  text-align: center;
}
.domestic-info p{
  font-weight: bold;
}

