
        .footer-content {
            max-width: 1100px;
            width: 100%;
            text-align: center;
            z-index: 10;
            position: relative;

        }

.clean-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;

}

.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.clean-list li {
  color: #E6D4A0;
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: 0.3px;
  margin-bottom: 0.8em;
  position: relative;
  transition: color 0.3s ease;
}


.clean-list li:hover {
  color: var(--temple-gold);
}

/* Column Titles */
/* Column Titles with Deep Red Underline */
.column-title {
  font-size: 1.3rem;
  color: var(--temple-gold);
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 1.2em;
  padding-bottom: 0.4em;
  position: relative;
}

.column-title::after {
  content: '';
  display: block;
  width: 200px;        /* Length of the underline */
  height: 2px;        /* Thickness of the underline */
  background-color: #8B0000; /* Deep red */
  margin: 0.4em auto 0;  /* Spacing from title text */
  border-radius: 2px;     /* Slightly rounded ends for elegance */
}


/* Contact Us label tone */
.contact-label {
  color: var(--temple-gold);
  font-weight: 500;
  margin-right: 0.5em;
}

/* Footer bottom */
.clean-bottom {
  margin-top: 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}

.footer-links {
  display: flex;
  gap: 2em;
}

.footer-link {
  color: #b89d5a;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--temple-gold);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--temple-gold);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-copyright {
  font-size: 0.6rem;
  color: #CBBE8B;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .clean-footer {
    grid-template-columns: 1fr;
    gap: 2em;
    text-align: center;
  }


  .clean-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.clean-list li {
    font-size: 0.9rem;  /* slightly smaller */
    line-height: 1.5;   /* tighter spacing */
}


.temple-pillar-footer {
  position: absolute;
  width: 55px;
  height: 100%;
  background:
    /* 45° gold diagonals */
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(212, 175, 55, 0.7) 10px,
      rgba(212, 175, 55, 0.7) 12px
    ),
    /* -45° gold diagonals */
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(212, 175, 55, 0.7) 10px,
      rgba(212, 175, 55, 0.7) 12px
    ),
    /* Base wood tone */
    linear-gradient(to right, #3b220f, #2c1a0f, #3b220f);
  border-left: 2px solid var(--temple-gold);
  border-right: 2px solid var(--temple-gold);
  box-shadow:
    inset 0 0 10px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(201, 164, 103, 0.3);
  background-blend-mode: overlay, overlay, normal;
}
/* Top ornament (capital) */
.temple-pillar-footer::before {
  content: '';
  position: absolute;
  top: 80px;
  left: -10%;
  width: 120%; /* slightly wider than pillar */
  height: 23px;
  background: linear-gradient(to bottom, var(--temple-gold), #d4af37);
  border-radius: 0px 0px 5px 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Bottom ornament (base) slightly above bottom */
.temple-pillar-footer::after {
  content: '';
  position: absolute;
  bottom: 75px; /* 15px above the very bottom */
  left: -10%;
  width: 120%;
  height: 30px;
  background: linear-gradient(to top, var(--temple-gold), #d4af37);
  border-radius: 5px 5px 0px 0px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
}/* Footer Social Icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5em;
}

.social-link {
  color: #b89d5a;
  font-size: 2em;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--temple-gold);
  transform: scale(1.15);
}

/* Center text nicely in philosophy column */
.footer-column ul li {
  text-align: center;
}

/* Optional: Make Explore links tighter on smaller screens */
@media (max-width: 900px) {
  .footer-column ul li {
    margin-bottom: 0.6em;
  }
}
