/* Shared Blog Footer Styles (from blog-post-styles.css) */

/* Sticky footer support: ensure body uses flex layout */
html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.main-content {
  flex: 1 0 auto;
}
.site-footer {
  margin-top: auto;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-top: none !important;
  box-shadow: none !important;
  padding: 40px 20px 20px !important;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  flex: 0 0 400px;
  margin: 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-logo img {
  max-width: 380px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(255, 204, 0, 0.3)) !important;
  transition: none;
  margin: 0;
  padding: 0;
}

.footer-links {
  flex: 1 1 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1 1 160px;
  min-width: 160px;
}

.footer-column h3 {
  color: #FFD700 !important;
  font-size: 1.2rem;
  font-weight: bold !important;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #FFD700, transparent);
}

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

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

.footer-column a {
  color: #fffbe6 !important;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
}

.footer-column a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #FFD700;
  transition: width 0.3s ease;
}

.footer-column a:hover {
  color: #FFD700 !important;
  transform: translateX(3px);
}

.footer-column a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex: 0 0 100%;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.15) !important;
  color: #FFD700 !important;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 204, 0, 0.3) !important;
}

.footer-social a:hover {
  background: rgba(255, 204, 0, 0.3) !important;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.2) !important;
  color: #fff !important;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 204, 0, 0.15) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-logo {
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .footer-logo {
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .footer-column {
    min-width: 0;
    width: 100%;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
} 