/*
Theme Name: We Are Video Games
Theme URI: https://wearevideogames.org/
Author: Cursor Assistant
Author URI: https://openai.com/
Description: Custom WordPress theme recreating the We Are Video Games site from the archived HTML.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wearevideogames
Tags: custom-theme, responsive, accessibility-ready
*/

:root {
  --wavg-primary: #3052a0;
  --wavg-accent: #4fc1e9;
  --wavg-dark: #0c1c3c;
  --wavg-light: #f4f6fb;
  --wavg-font-body: "Open Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--wavg-font-body);
  color: #222;
  background-color: #fff;
}

a {
  color: var(--wavg-primary);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

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

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
