footer { 
  background: #c48f3c; 
  color: #fff; 
  text-align: center; 
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

.footer-section h3, .footer-section h4 {
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  font-weight: bold;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #ffd966;
}

.newsletter h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #fff;
}

.newsletter input {
  padding: 8px 10px;
  border-radius: 5px 0 0 5px;
  border: none;
  width: 150px;
}

.newsletter button {
  padding: 8px 12px;
  border-radius: 0 5px 5px 0;
  border: none;
  background: linear-gradient(135deg, #ffd966, #e6b800);
  color: #333;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  box-shadow: 0 4px 12px rgba(230,184,0,0.5);
  transform: translateY(-2px);
}

.newsletter .safe-note {
  display: block;
  margin-top: 5px;
  font-size: 0.8rem;
  color: #fff;
}
/* Social buttons (toned down) */
.footer-social .social-btn {
  display: inline-block;
  margin: 3px 2px;
  padding: 6px 10px;
  border-radius: 4px;
  background: rgba(255, 223, 102, 0.3);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
}

.footer-social .social-btn:hover {
  background: rgba(255, 223, 102, 0.5);
  box-shadow: 0 2px 6px rgba(230,184,0,0.3);
  transform: translateY(-1px);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-section {
    text-align: center;
  }
  .newsletter input, .newsletter button {
    width: 80%;
    border-radius: 5px;
    margin-bottom: 5px;
  }
  .footer-social .social-btn {
    display: block;
    width: 60%;
    margin: 5px auto;
  }
}

@media (max-height: 750px) {
  footer {
    padding-bottom: 10px;
  }
  .footer-bottom {
    margin-top: 10px;
  }
}


.newsletter .safe-note {
  display: block;         /* ensures it’s on its own line */
  margin-top: 5px;        /* small spacing from button */
  font-size: 0.75rem;     /* slightly smaller text */
  color: #fff;            /* matches footer text */
  opacity: 0.8;           /* softens its appearance */
  text-align: center;     /* centered under button */
}