.footer-wrapper {
  position: relative;
  color: #eee;
  padding: 4rem 1rem 2rem;
  background: linear-gradient(to right, #11998e, #3AAFF7); /* Primary Base to Highlight Glow */
  overflow: hidden;
  bottom: 0;
}

/* Background Image Behind Gradient */
.footer-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("/img/hero-img.jpg") center center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}


/* Content Layout */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  z-index: 3;
  animation: fadeUp 1s ease forwards;
}

.footer-about,
.footer-links,
.footer-social {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.footer-about { animation-delay: 0.2s; }
.footer-links { animation-delay: 0.4s; }
.footer-social { animation-delay: 0.6s; }

.footer-wrapper h5,
.footer-wrapper h6 {
  color: #fff;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-owner-link {
  color: #fefefe;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-owner-link:hover {
  color: #ffc107;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links a,
.footer-social a {
  color: #ddd;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  transform: translateX(6px);
  color: #ffc107;
}

.footer-social i {
  font-size: 1.4rem;
  margin-right: 0.7rem;
  color: white;
  transition: transform 0.4s ease;
}

.footer-social i:hover {
  transform: scale(1.2) rotate(-5deg);
  color: #ffc107;
}

/* Weather or Hours Panel */
.footer-info-box {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #fff8f0;
  background: rgba(0,0,0,0.2);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.8s;
}

/* Scrolling Copyright */
.footer-bottom {
  position: relative;
  z-index: 3;
  margin-top: 2rem;
  font-size: 1.3rem;
  overflow: hidden;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom small {
  display: inline-block;
  white-space: nowrap;
  animation: scrollLeft 15s linear infinite;
  color: #ccc;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLeft {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}