.footer {
  background: #050505;
  color: #eaeaea;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

/* subtle glow background */


.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  padding: 0 40px 80px;
}

.footer-col h3 {
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
}

.footer-logo {
  font-size: 28px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.footer-description {
  color: #999;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 320px;
}

/* links */
.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 12px;
  color: #bbb;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* socials */
.footer-socials {
  display: flex;
  gap: 18px;
}

.social {
  font-size: 14px;
  color: #aaa;
  transition: 0.3s;
}

.social:hover {
  color: #f5b85c;
}

/* newsletter */
.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px;
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  color: white;
  outline: none;
}

.newsletter-form button {
  padding: 14px 22px;
  background: linear-gradient(135deg, #f5b85c, #ff9a3c);
  border: none;
  cursor: pointer;
  font-weight: 600;
}

/* bottom */
.footer-bottom {
  border-top: 1px solid #111;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 14px;
}

.dev-name a{
  text-decoration: none;
  
  color: #f5b85c;
  font-weight: 600;
}

/* responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}