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

body {
  font-family: "Inter", system-ui, sans-serif;
  color: #ffffff;
}

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

a {
  text-decoration: none;
}

/* ===== ACCESSIBILITY =====*/
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

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

/* ===== TYPOGRAPHY =====*/
h1, h2, h3 {
  line-height: 1.25;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== BUTTON =====*/
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.button--primary {
  background-color: #ff7a00;
  color: #ffffff;
}

/* ===== REDUCED MOTION ===== 
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto;
  }
}*/
