.site-footer {
    background-color: #94C7BB;
    color: #000000;
    padding: 40px 20px 20px;
    font-family: 'Playfair Display', serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.site-footer h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 500;
    color: #000000;
}

.footer-container p,
.footer-container a {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-container a:hover {
    color: #000000;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #000000;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #000000;
}

.footer-social ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #000000;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #d4af37;
}

.footer-social svg {
    width: 24px;
    height: 24px;
}

/* =============newsletter subsciption */
.footer-subscribe {
  text-align: left; /* align with other footer sections */
  margin-top: 0;
  color: #6b5e2d; /* matches footer text */
}

.footer-subscribe h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #000000; /* matches other headings */
}

.footer-subscribe p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #000000; /* same as footer text */
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.subscribe-input {
  flex: 1;
  min-width: 150px;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: 1px solid #000000; /* matches heading color */
  font-size: 0.95rem;
  color: #4a3b0a; /* input text color */
  background-color: #fff; /* white background for input */
}

.subscribe-input::placeholder {
  color: #989898;
}

.subscribe-button {
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: none;
  background-color: #ffffff; /* gold button to match headings */
  color: #000000; /* light text on gold button */
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe-button:hover {
  background-color: #94C7BB; /* slightly lighter gold on hover */
}
