/* Footer styles */
footer {
  /* Gradient background for the navigation */
  background-image: linear-gradient(to right, #434343 0%, black 100%);
  color: #ffffff;
  text-align: center;
  width: 100%;
  overflow-x: hidden;
  padding-bottom: 150px;
  
}
.footer-logo-bottom{
  width: 125px;
}
.footer-content,
.footer-footnotes {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo img {
  width: 30px;
  height: auto;
  margin-bottom: 10px;
}

footer p, footer nav a {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  margin: 20px 0;
}

footer p a {
  text-decoration: none;
  color: #ffffff;
  margin: 0 10px;
}

.footer-note {
  font-style: italic;
  color: #9e9e9e;
  margin: 10px 0 20px;
}


/* Footer Footnotes styles */
.footer-footnotes>p {
  font-family: 'Fira Code';
  font-size: 14px;
  font-weight:lighter;
  color: #f5eeee;
  line-height: 1.4;
  padding-top: 5px;
  text-align: left;
}

.footer-footnotes p {
  margin: 5px 0;
  padding: 20px;
}

.footer-footnotes sup {
  font-size: 8px;
  vertical-align: super;
  color: #b0b0b0;
  font-weight: 300;
}

.footer-footnotes a {
  color: #9e9e9e;
  text-decoration: none;
  font-weight: 300;
}

.footer-footnotes a:hover {
  color: #ffffff;
}

/* Custom Line Style */
.custom-line {
  border: none;
  height: 1px;
  background-color: #8f8787;
  width: 80%;
  margin: 20px auto;
}
/*Footer navigation*/
footer nav {
  display: flex;
  gap: 15px;
  justify-content: center;
  position: relative;
  bottom: 0px;
}
footer p a:hover {
  color: goldenrod;
  transition: 0.5s;
  transform: scale(1.05);
}
.website-logos a{
  text-decoration: none;
}
/* Style for individual logos */
.website-logo {
  width: 80px; /* Adjust size as needed */
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.website-logo:hover {
  transform: scale(1.1); /* Slightly enlarge on hover */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4); /* Add shadow effect */
}
.footer-attribution {
  text-align: center; /* Center-align the text */
  color: #b0a6a6; /* Subtle gray text */
  padding: 10px 20px; /* Add some spacing */
  border-top: 1px solid #ddd; /* Minimal border to separate from content above */
  margin-top: 20px; /* Space from above content */
}

.footer-attribution p {
  margin: 0; /* Remove default margins for a compact design */
  line-height: 1.5; /* Improve readability */
}
.license-link {
  text-decoration: none; /* Remove underline */
  color: #007bff; /* Bright blue color for visibility */
  font-weight: bold; /* Make the text stand out */
  border: 1px solid #007bff; /* Add a border matching the text color */
  border-radius: 5px; /* Smooth rounded corners */
  padding: 5px 10px; /* Add some space inside the button */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  display: inline-block; /* Make it behave like a button */
}

.license-link:hover {
  background-color: #007bff; /* Blue background on hover */
  color: #ffffff; /* White text on hover */
  border-color: #0056b3; /* Slightly darker border on hover */
  text-decoration: none; /* Keep the text clean */
}
