/* === Footer base === */
.site-footer {
  text-align: center;
  position: relative;
  z-index: 3;
  font-size: 14px;
  color: #222;
}

/* === Glass Footer === */
.site-footer {
  color: #fff;
  padding: 50px 20px 0;
  background: rgba(var(--footer-bg-rgb), var(--footer-opacity));
  backdrop-filter: blur(8px);
}

/* Footer grid layout */
.footer-columns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 0;
  text-align: left;
}

.footer-col {
  max-width: 260px;
  flex: 1 1 200px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col a {
  color: var(--footer-link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--footer-link-hover);
}

/* Copyright stripe */
.footer-bottom-full {
  width: 100%;
  background: rgba(var(--copyright-bg-rgb), var(--copyright-opacity));
  padding: 18px 0;
  text-align: center;
  color: var(--copyright-text);
  font-size: 13px;
  margin-top: 40px;
  backdrop-filter: blur(6px);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-bottom-full a {
  color: var(--copyright-link);
  text-decoration: none;
}
.footer-bottom-full a:hover {
  color: var(--copyright-link-hover);
}

/* Footer titles */
.footer-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--footer-title-color);
  letter-spacing: 0.5px;
  padding-bottom: 6px;
  border-bottom: 1px dotted var(--footer-title-border);
}

.airtheme-footer-badge,
.airtheme-footer-badge:visited,
.airtheme-footer-badge:hover,
.airtheme-footer-badge:active {
  position: absolute;
  right: 18px;
  bottom: 10px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.22) !important;
  text-decoration: none !important;

  text-shadow:
    0 -1px 1px rgba(0, 0, 0, 0.55),
    0  1px 1px rgba(255, 255, 255, 0.18);

  opacity: 0.8;
  cursor: pointer;
}
.airtheme-footer-badge {
  backdrop-filter: saturate(1.05);
}



