
/* footer Section*/
.site-footer {
  background-color: #111;
  color: #ddd;
  padding: 3rem 2rem 2rem;
  font-family: 'Arial', sans-serif;
}

.site-footer  .heading1{
    text-transform: uppercase;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links,
.footer-legal,
.footer-social {
  flex: 1 1 150px;
}


.footer-about h3,
.footer-links h4,
.footer-social h4 {
  color: #c59949;
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #c59949;
}

.social-icons a {
  font-size: 1.4rem;
  margin-right: 1rem;
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #c59949;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}


.footer-legal h4 {
  color: #c59949;
  margin-bottom: 1rem;
}

.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal li {
  margin-bottom: 0.5rem;
}

.footer-legal a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #c59949;
}


.footer-contact h4 {
  color: #c59949;
  margin-bottom: 1rem;
}

.footer-contact p {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-contact a {
  color: #ddd;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #c59949;
}


.footer-newsletter {
  width: 100%;
  text-align: left;
}

.footer-newsletter form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: nowrap; /* Force items to stay in one line */
  justify-content: flex-start; /* align items left */
}

.newsletter-label {
  font-weight: bold;
  /* white-space: nowrap; */
  font-size: 16px;
}

.footer-newsletter input[type="email"] {
  padding: 10px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.footer-newsletter button {
  padding: 10px 20px;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  max-width: 120px;
}

.footer-newsletter button:hover {
  background-color: #e65c00;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    gap: 2rem;
  }

  .footer-about,
  .footer-links,
  .footer-social,
  .footer-contact {
    width: 100%;
  }

  .footer-bottom {
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .social-icons a {
    font-size: 1.6rem;
    margin-right: 1rem;
  }

  .footer-newsletter form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-newsletter input[type="email"],
  .footer-newsletter button {
    width: 100%;
  }
}


/* footer Section*/