/* src/assets/css/base.css */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Nunito:wght@400;600;700&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

input, textarea, select {
  font-family: inherit;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
  font-weight: normal; 
  line-height: 1.1;
  text-transform: uppercase;
}

.text-grana { color: var(--color-grana); }
.text-gold { color: var(--color-gold); }
.text-blue { color: var(--color-blue); }
