/* === Custom Overrides === */

body {
  background-color: #a4a4a4;
  font-family: "Times New Roman", serif;
}

/* Banner Section */
.banner h1,
.banner p {
  text-shadow: 2px 2px 5px black;
}

/* About Section Image */
img.img-fluid {
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

/* Quote Button */
#quoteBtn {
  font-size: 16px;
  padding: 10px 20px;
  background-color: #282b28;
  border: none;
  border-radius: 8px;
  color: white;
  transition: background-color 0.3s ease;
}
#quoteBtn:hover {
  background-color: #444;
}

/* Skip to Content Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #282b28;
  color: white;
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.3s ease;
  text-decoration: none;
  font-weight: bold;
}
.skip-link:focus {
  top: 10px;
}

/* Footer Social Icons */
.social-icons img {
  width: 30px;
  height: 30px;
  margin: 0 8px;
  transition: transform 0.3s;
}
.social-icons img:hover {
  transform: scale(1.2);
}
