/* Footer Styles */
.footer {
  padding: 20px;
  text-align: center;
  background: url("https://assets.codepen.io/6375798/image.png") no-repeat center center;
  background-size: cover; 
  color: white;
  position: relative;
  bottom: 0;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); 
  overflow: hidden; 
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  overflow: hidden; /* Prevents text from going off screen */
  box-sizing: border-box;
}

.footer-content p {
  text-align: right;
  padding: 2px 40px;
  margin: 0;
  font-size: 16px;
  color: orange; 
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); 
}

.footer-content p a {
  text-decoration: none;
  color: white;
  min-width: 69px;
}

/* Social Icons */
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.footer-icons a {
  font-size: 24px;
  color: white;
  transition: transform 0.3s ease;
  min-width: 69px;
}

.footer-icons a:hover {
  transform: scale(1.2);
}

/* Media Queries for Responsiveness */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
  .footer-content p {
    font-size: 14px;
    padding: 2px 40px;
  }

  .footer-icons a {
    font-size: 14px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .footer-content p {
    font-size: 12px;
    padding: 2px 40px;
  }

  .footer-icons a {
    font-size: 12px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .footer-content p {
    font-size: 13px;
    padding: 2px 40px;
  }

  .footer-icons a {
    font-size: 18px;
  }
}
