/* Footer Stilleri */

.footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 0 1rem;
  margin-top: auto;
  border-top: 1px solid #34495e;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #ecf0f1;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

/* Footer Brand */
.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-logo h3 {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo .brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.footer-logo .brand-accent {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.footer-brand p {
  color: #bdc3c7;
  line-height: 1.6;
}

/* Contact Info */
.contact-info p {
  color: #bdc3c7;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--accent-color);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1.5rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-content p {
  color: #bdc3c7;
  margin: 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #bdc3c7;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--primary-color);
  background: rgba(161, 118, 62, 0.1);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    flex-direction: column;
    gap: 8px;
  }

  .footer-logo .brand-text {
    font-size: 1.3rem;
  }

  .footer-logo .brand-accent {
    font-size: 1rem;
  }

  .footer-logo-image {
    height: 40px;
  }
}

