/**
 * Base Styles
 * Reset, normalize, and global typography
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0;
  min-width: 0;
  font-family: inherit;
}

html {
  background: var(--bg);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--text-primary);
  width: 100%;
  max-width: 100vw;
}

li {
  list-style: none;
}

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

/* Headings - Outfit display font */
h1 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-black);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 .title {
  color: var(--purple);
  font-family: var(--font-mono);
  font-weight: var(--font-weight-normal);
  letter-spacing: 0.05em;
}

h2 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.02em;
}

h3 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-normal);
  line-height: 1.4;
}

h3 .title {
  color: var(--purple);
  font-family: var(--font-mono);
}

h4 {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-light);
  line-height: 1.6;
}

p, h6 {
  font-family: var(--font-body);
}

.svg-bottle {
  height: 10rem;
}
