/* ═══════════════════════════════════════════════════════════════
   RESET.CSS - Browser Normalization
   PMVW Landing Page - Phase 1 POC
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  width: 100%;
  height: auto !important; /* Allow content to determine height */
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll !important; /* Force enable vertical scroll for zoom effect */
}

body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: visible !important;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
  background: #0a0a0a; /* Dark fallback behind living room image */
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
