/* Footer Styles | westvirginia.in */

#site-footer {
  background-color: #151e0d;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* Main footer grid */
.footer-main {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.footer-logo__icon { width: 36px; height: 36px; }

.footer-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo__sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.footer-brand__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social__link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background-color 0.2s, color 0.2s;
}

.footer-social__link:hover {
  background-color: #5A8A2E;
  color: #fff;
}

.footer-social__link svg { width: 17px; height: 17px; }

/* Columns */
.footer-col__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, #5A8A2E, #C9973A);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.62);
  font-size: 0.875rem;
  transition: color 0.2s, padding-left 0.2s;
  text-decoration: none;
}

.footer-links a:hover {
  color: #C9973A;
  padding-left: 4px;
}

/* Contact list */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.875rem;
}

.footer-contact-list svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #5A8A2E;
}

.footer-contact-list a {
  color: #C9973A;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: #E8B865; }

/* Newsletter */
.footer-newsletter p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
}

.footer-newsletter__form {
  display: flex;
  gap: 0.4rem;
}

.footer-newsletter__form input {
  flex: 1;
  padding: 0.5rem 0.875rem;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.825rem;
  outline: none;
  min-width: 0;
}
.footer-newsletter__form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter__form input:focus { border-color: rgba(255,255,255,0.4); }

/* Cookie note */
.footer-cookie-note {
  padding: 0.875rem 0;
  background-color: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-cookie-note p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  flex-wrap: wrap;
}

.footer-cookie-note svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: #C9973A;
}

.footer-cookie-note a {
  color: #C9973A;
  text-decoration: underline;
}

/* Bottom bar */
.footer-bottom {
  padding: 1.25rem 0;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-copy a {
  color: #C9973A;
  text-decoration: none;
  font-weight: 600;
}
.footer-copy a:hover { color: #E8B865; }

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; gap: 1rem; }
}
