/* Footer styles */

.footer {
  display: flex;
  justify-content: space-around;
  padding-top: 10px;
  padding-bottom: 15px;
  font-size: 1.2rem;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #1f4c7a;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #c8a24a;
  transition: box-shadow 0.3s ease, border-top-color 0.3s ease;
}

.footer-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transform: translateY(-2px);
}

.footer-item p {
  margin: 0;
}

/* Responsive footer styles */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    padding: 5px 0 10px 0;
  }

  .footer-item {
    margin: 5px 0;
    padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .footer {
    display: none;
  }

  /* Add bottom padding to body to compensate for hidden footer */
  body {
    padding-bottom: 20px;
  }
}
