:root {
  /* Legacy Vendmix Branding Palette */
  --color-bg:         #FFFFFF;
  --color-primary:    #AB1D37; /* Original Vendmix Red */
  --color-accent:     #BF8255; /* Original Coffee/Brown Accent */
  --color-text:       #333333; /* Dark text */
  --color-text-muted: #69727D;
  --color-surface:    #EBDDCE; /* Creme background from legacy site */
  --color-surface-dark: #111111; /* Dark sections (hero, navbar top) */
  --color-border:     #E5E7EB;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

/* Rounded aesthetics from reference */
.rounded-vendmix {
  border-radius: 30px;
}
.rounded-vendmix-btn {
  border-radius: 9999px; /* Pill shape */
}

/* Scroll-reveal base state (JS adds .is-visible) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Smooth image loading */
img { max-width: 100%; height: auto; display: block; }
