/* ===========================
   FONTS
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

@font-face {
    font-family: 'Eurostile_Extended_Bold';
    src: url('fonts/Eurostile_Extended_Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ===========================
   COLOR VARIABLES
   =========================== */
:root {
    --golden-yellow: #FBAF33;
    --table-grey: #1D1D1A;
    --white: #ffffff;
    --black: #000000;
}

/* ===========================
   GLOBAL BASE STYLES
   =========================== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--white);
    background-color: var(--black);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* ===========================
   HEADINGS
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Eurostile_Extended_Bold', sans-serif;
    color: var(--white);
    margin: 0 0 0.5em;
    line-height: 1.2;
}

h1 {
    font-size: 3rem; /* main page titles */
}

h2 {
    font-size: 2.5rem; /* section headings */
}

h3 {
    font-size: 2rem; /* subheadings */
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.center {
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===========================
   LINKS
   =========================== */
a {
    color: var(--golden-yellow);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===========================
   IMAGES
   =========================== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   LISTS
   =========================== */
ul, ol {
    margin: 0 0 1rem 1.5rem;
    padding: 0;
}

li {
    margin-bottom: 0.5rem;
}

/* ===========================
   MEDIA QUERIES
   =========================== */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
}
