@import url('../root.css');


/* Footer Section */
#footer {
  background: linear-gradient(to bottom, #0E0E10, #000000);
  height: 516px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 10;
  margin-top: 0;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 1rem;
  width: 100%;
  gap: 4rem;
}

.footer-branding {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 0.5rem;
}

.footer-branding h3 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, #DD5900, #401A00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: -0.02em;
}

.footer-container a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.footer-links {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 1.2rem 0;
  letter-spacing: -0.01em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  color: #CCCCCC;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.footer-column ul li a:hover {
  color: #FF6600;
}

.footer-bottom {
  text-align: center;
  padding: 2rem 2rem 1rem;
  border-top: 1px solid #333333;
  margin-top: 2rem;
}

.footer-bottom p {
  color: #CCCCCC;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 400;
}

.footer-bottom a {
  color: #FF6600;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Responsive Design für Footer */
@media (max-width: 768px) {
  #footer {
    height: auto;
    min-height: 450px;
    justify-content: flex-start;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1rem 2rem;
    align-items: center;
  }
  
  .footer-branding {
    text-align: center;
    padding-top: 0;
  }
  
  .footer-branding h3 {
    font-size: 1.8rem;
  }
  
  .footer-links {
    flex-direction: row;
    gap: 3rem;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .footer-column ul li a {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    padding: 2rem 1rem 1rem;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  #footer {
    min-height: 400px;
  }
  
  .footer-container {
    padding: 2rem 1rem 1rem;
    gap: 1.5rem;
    align-items: flex-start; /* Linksbündig für mobile */
  }
  
  .footer-branding {
    text-align: left; /* Linksbündig für mobile */
    padding-top: 0;
  }
  
  .footer-branding h3 {
    font-size: 1.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
    text-align: left; /* Linksbündig für mobile */
    align-items: flex-start; /* Linksbündig für mobile */
  }
  
  .footer-column h4 {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }
  
  .footer-column ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-column ul li a {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    padding: 1.5rem 1rem 1rem;
    margin-top: 1rem;
    text-align: left; /* Linksbündig für mobile */
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
  }
}
