
/*
Base styles and variables
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Avenir Next', sans-serif;
  text-align: justify;
  overflow-x: hidden;
  background-color: #000000;
  color: #ffffff;
}

/* Racing theme colors */
:root {
  --racing-dark: #000000;
  --racing-red: #d62a34;
  --racing-gold: #c59d2f;
  --racing-white: #ffffff;
  --racing-gray: #8E9196;
}

h1, h2, h3 {
  text-transform: uppercase;
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--racing-dark);
  margin-bottom: 3rem;
}

/* Cool gradient background */
.bg-cool-gradient {
  background: rgb(175,127,40);
  background: linear-gradient(100deg, rgba(175,127,40,1) 0%, rgba(213,185,97,1) 25%, rgba(138,94,2,1) 50%, rgba(165,121,10,1) 75%);
}

/* Section styles */
.section {
  padding: 5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
