.footer {
  background-color: #3e2723;
  color: #f8ede3;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: left;
  max-width: 1200px;
  margin: auto;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 300px;
  margin: 15px;
}

.footer-about h3 {
  color: #ffcc80;
  margin-bottom: 10px;
}

.footer-about p {
  line-height: 1.6;
  font-size: 15px;
  color: #f0d9c2;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffcc80;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #f0d9c2;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffe3c4;
  text-decoration: underline;
}

.footer-contact p {
  font-size: 15px;
  color: #f0d9c2;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #6d4c41;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
  color: #d7ccc8;
}


/* Social Section */
.footer-social {
    margin-top: 20px;
}

.footer-social h4 {
    color: #ffcc80;
    margin-bottom: 15px;
}

/* Icon Container */
.social-icons {
    display: flex;
    gap: 12px;
}

/* Round Icon Buttons */
.social-icons .icon {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    transition: 0.3s ease-in-out;
}

/* Hover Glow Effect */
.social-icons .icon:hover {
    transform: translateY(-4px);
    background: #fff;
    color: #222;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

/* Optional: brand-based hover colors */
.icon.fb:hover { color: #1877f2; }
.icon.ig:hover { color: #e4405f; }
.icon.wa:hover { color: #25d366; }
.icon.yt:hover { color: #ff0000; }





