/* Footer Business Hours Styles */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-logo p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.business-hours {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.business-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.business-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.business-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--accent-color);
}

.business-item p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile Weather Widget - Hidden by default */
.footer-weather-mobile {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-weather-mobile h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  text-align: center;
}

.mobile-weather-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.mobile-weather-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.mobile-weather-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

/* Responsive Footer Adjustments */
@media (min-width: 768px) {
  .business-hours {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .business-item {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-logo:after {
    display: none;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  /* Show mobile weather widget only on mobile */
  .footer-weather-mobile {
    display: block;
  }
  
  /* Adjust mobile weather for very small screens */
  @media (max-width: 480px) {
    .mobile-weather-info {
      flex-direction: column;
      align-items: center;
    }
    
    .mobile-weather-item {
      width: 100%;
      max-width: 200px;
      justify-content: center;
    }
  }
}