/* global React */

window.Footer = function Footer() {
  return (
    <footer style={footerStyles.section}>
      <div style={footerStyles.inner}>
        <div style={footerStyles.line}>
          © 2026 <strong style={footerStyles.brand}>Volt Property AS</strong> · Org.nr 937 410 425
        </div>
      </div>
    </footer>);

};

const footerStyles = {
  section: {
    background: "#f2f2ec",
    borderTop: "1px solid #ebe9df",
    padding: "20px 32px"
  },
  inner: {
    maxWidth: 1240,
    margin: "0 auto",
    display: "flex",
    justifyContent: "center"
  },
  line: {
    fontFamily: "Inter Tight, system-ui, sans-serif",
    fontSize: 13,
    color: "#7a8492",
    letterSpacing: "0.01em"
  },
  brand: {
    color: "#0d1b2a",
    fontWeight: 500
  }
};
