/* Footer Styles - Ecclesiastical Theme */

.site-footer {
  background-color: var(--header-bg);
  color: var(--header-foreground);
  margin-top: 4rem;
}

.footer-top-border {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

@media (min-width: 640px) {
  .footer-content {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    padding: 3rem 2rem;
  }
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column {
  min-width: 0;
}

.footer-branding {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .footer-branding {
    grid-column: 1;
  }
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--header-foreground);
  transition: opacity 0.2s ease;
  margin-bottom: 1rem;
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-logo {
  height: 36px;
  width: auto;
}

.footer-logo-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  background: rgba(139, 74, 95, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-letter {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.125rem;
  color: var(--gold);
}

.footer-site-name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(245, 245, 220, 0.8);
}

.footer-decoration {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(212, 175, 55, 0.6);
}

.decoration-line {
  flex: 1;
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
}

.decoration-cross {
  font-family: serif;
  font-size: 1.125rem;
}

.footer-column-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin: 0 0 1rem;
}

.footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu-list a {
  font-size: 0.875rem;
  color: rgba(245, 245, 220, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-menu-list a:hover {
  color: var(--gold);
}

.footer-about {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(245, 245, 220, 0.8);
  margin: 0 0 1rem;
}

.footer-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-learn-more:hover {
  color: var(--gold-hover);
}

.footer-learn-more svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--gold-light);
}

.footer-bottom-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-content {
    flex-direction: row;
    padding: 1.5rem 1.5rem;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(245, 245, 220, 0.7);
  margin: 0;
}

.footer-blessing {
  font-size: 0.75rem;
  color: rgba(245, 245, 220, 0.5);
  margin: 0;
}
