/* ==========================================
    Vapezera - Base Stylesheet (Reset + Foundation)
    ========================================== */

:root {
  --vz-red: #C90000;
  --vz-red-dark: #A80000;
  --vz-red-light: rgba(201, 0, 0, 0.08);
  --vz-black: #111111;
  --vz-white: #FFFFFF;
  --vz-gray-bg: #F6F6F6;
  --vz-gray-border: #E7E7E7;
  --vz-gray-text: #1C1C1C;
  --vz-gray-secondary: #555555;
  --vz-green: #00a53d;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-family);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}
.overlay.active {
    display: block;
}
