/* assets/css/footer.css
   Oriental Gems footer
   Calm gallery theme matching header palette
*/

:root{
  --og-footer-panel: rgba(255,255,255,0.72);
  --og-footer-line: rgba(28,42,58,0.14);
}

.og-footer{
  margin-top: 28px;
  border-top: 1px solid var(--og-line, rgba(28,42,58,0.12));
  background: rgba(247,245,240,0.74);
  backdrop-filter: blur(10px) saturate(120%);
}

.of-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  padding: 22px 0 14px 0;
}

.of-brand{
  min-width: 220px;
  max-width: 520px;
}

.of-name{
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--og-indigo, #1c2a3a);
  font-size: 15px;
  line-height: 1.2;
}

.of-sub{
  margin-top: 6px;
  color: rgba(28,42,58,0.72);
  font-size: 13px;
  line-height: 1.4;
}

.of-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 520px;
}

.of-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: rgba(28,42,58,0.74);
  font-weight: 600;
  font-size: 13px;
  background: transparent;
  transition: background 0.14s ease, border-color 0.14s ease, transform 0.14s ease, box-shadow 0.14s ease, color 0.14s ease;
}

.of-link:hover{
  background: rgba(255,255,255,0.62);
  border-color: rgba(28,42,58,0.14);
  box-shadow: 0 10px 22px rgba(16,22,28,0.08);
  transform: translateY(-1px);
  color: rgba(28,42,58,0.92);
}

.of-panel{
  border: 1px solid var(--og-footer-line);
  background: var(--og-footer-panel);
  border-radius: var(--og-radius, 18px);
  box-shadow: var(--og-shadow2, 0 10px 26px rgba(16,22,28,0.10));
  padding: 14px 14px;
  margin: 10px 0 16px 0;
}

.of-panel-title{
  font-weight: 800;
  color: rgba(28,42,58,0.92);
  font-size: 13px;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}

.of-panel-text{
  color: rgba(28,42,58,0.74);
  font-size: 13px;
  line-height: 1.55;
}

.of-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 12px 0 20px 0;
  border-top: 1px solid rgba(28,42,58,0.10);
}

.of-copy{
  color: rgba(28,42,58,0.72);
  font-size: 12px;
  font-weight: 650;
}

.of-mini{
  color: rgba(28,42,58,0.60);
  font-size: 12px;
  font-weight: 560;
  text-align:right;
}

@media (max-width: 860px){
  .of-top{
    flex-direction:column;
    align-items:flex-start;
  }
  .of-links{
    justify-content:flex-start;
  }
  .of-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  .of-mini{
    text-align:left;
  }
}

@media (prefers-reduced-motion: reduce){
  .of-link{
    transition: none;
  }
}
