/* Footer Styles */

.site-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #e0e0e0;
  margin-top: 4rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

.footer-content {
  width: 100%;
  margin: 0 auto;
  padding: 3rem 0 0;
}

/* Footer Sections */
.footer-sections {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

.footer-section h3,
.footer-section h4 {
  color: #d4af37;
  margin-bottom: 1rem;
  font-family: 'MedievalSharp', serif;
}

.footer-section h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #d4af37;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Logo Section */
.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo h3 {
  font-family: 'Tagesschrift', 'Eagle Lake', serif;
  font-size: 2.4rem;
  color: #f4d03f;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: #d4af37;
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 0;
  font-family: 'Eagle Lake', serif;
}

.footer-description {
  line-height: 1.7;
  color: #bbb;
  font-size: 0.95rem;
  margin-top: 1.5rem;
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.separator {
  color: #777;
  font-size: 0.8rem;
}

/* Social Links */
.footer-social {
  margin-bottom: 2rem;
  width: 100%;
  max-width: 250px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #404040, #303030);
  color: #e0e0e0;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  justify-content: center;
  border: 1px solid #555;
}

.social-link:hover {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border-color: #d4af37;
  color: #fff;
}

.social-link i {
  font-size: 1.2rem;
}

/* Tech Stack */
.footer-info {
  color: #999;
  font-size: 0.85rem;
  width: 100%;
  text-align: center;
}

.footer-info p {
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: #d4af37;
}

.tech-stack {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tech-item {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.tech-item:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  color: #f4d03f;
  transform: translateY(-1px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #d4af37;
  padding: 2rem 0;
  background: rgba(0,0,0,0.2);
  width: 100%;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.copyright {
  color: #999;
  font-size: 0.85rem;
}

.copyright p {
  margin: 0;
  line-height: 1.4;
}

.dedication {
  margin-top: 0.5rem;
  color: #d4af37;
  font-family: 'Eagle Lake', serif;
  font-size: 0.8rem;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .footer-sections {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    align-items: flex-start;
  }
  
  .footer-section {
    flex: 1;
    max-width: 400px;
  }
  
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .copyright {
    text-align: left;
  }
  
  .footer-links {
    justify-content: flex-end;
  }
}
