/* Footer Styles */
footer {
  text-align: center;
  padding: 3rem;
  background-color: #1a1a1a;
  color: #888;
  margin-top: 4rem;
  border-top: 1px solid #333;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-nav a {
  color: #c1b6b2;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: rgb(201, 113, 72);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

.footer-social a {
  color: rgb(201, 113, 72) !important;
  font-size: 1.8rem !important;
  transition: color 0.3s, transform 0.2s;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.footer-social a:hover {
  color: rgb(221, 133, 92) !important;
  transform: translateY(-3px);
}

.footer-copyright {
  font-size: 0.9rem;
  color: #666;
}

/* Mobile Anpassungen für Footer */
@media (max-width: 768px) {
  footer {
    padding: 2rem 1rem;
    margin-top: 3rem;
  }
  
  .footer-nav {
    gap: 1rem;
  }
  
  .footer-nav a {
    font-size: 0.9rem;
  }
  
  .footer-social {
    gap: 1rem;
  }
  
  .footer-social a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 1.5rem;
  }
  
  .footer-copyright {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 1.5rem 0.5rem;
    margin-top: 2rem;
  }
  
  .footer-content {
    gap: 1rem;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-nav a {
    padding: 0.5rem;
  }
}

/* Gallery Update Notification */
.gallery-update-notification {
  position: fixed;
  top: 80px;
  right: 20px;
  background: rgba(201, 113, 72, 0.95);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  transform: translateX(100%);
  opacity: 0;
}

.gallery-update-notification .notification-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-update-notification.show {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-update-notification {
    top: 70px;
    right: 10px;
    left: 10px;
    padding: 10px 15px;
    font-size: 13px;
  }
}
