

/* === Footer Styling === */
.site-footer {
  background: #222;
  color: #fff;
  padding: 40px 20px 10px;
  font-size: 14px;
}

.site-footer a {
  color: #fdd835;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

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

.footer-section h3 {
  color: #fdd835;
  margin-bottom: 10px;
}

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

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 15px;
}


.content-with-sidebar {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.main-content {
    flex: 1;
}

.widget-area {
    width: 300px;
    background: #fafafa;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
}

.widget {
    margin-bottom: 25px;
}

.widget-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 5px;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
