/*
* Barebones V3
* Copyright 2019 Steve Cochran
*
* Based of Skeleton by Dave Gamache
*
* Free to use under the MIT license.
*/

/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Media Breakpoints
- Variables
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/

/* ENV Variables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Media breakpoint variables for use in media queries
* 	Note: this section is currently commented out pending release of 
* 	final CSS env() spec
*  Breakpoints based on 
*	 https://medium.freecodecamp.org/the-100-correct-way-to-do-css-breakpoints-88d6a5ba1862
* 
*/



/* CSS Variables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
*,
:after,
:before {
  box-sizing: border-box;
}


html {
  --background-color-light: rgb(255, 247, 234);
  --background-color-dark: rgb(253, 233, 202);
  --background-gradient: linear-gradient(315deg, var(--background-color-dark) 0%, var(--background-color-light) 50%);
  --accent-color: #f69535;
  --accent-color-2: rgb(240, 97, 0);
  --text-color-softer: rgb(152, 90, 29);
  --text-color: rgb(69, 38, 8);
  --text-color-richer: rgb(98, 56, 24);

  /* button border */
  --border-color: hsl(var(--theme-hue), 0%, 27%);
  /* textarea,select,code,td,hr border	 */
  --border-color-softer: hsl(var(--theme-hue), 0%, 20%);
  /* code background*/
  --code-background: hsl(var(--theme-hue), 0%, 5%);
  --button-primary-color: #f79736;

  --base-font-size: 81.25%;
  --grid-max-width: 1200px;
}

/* Light/dark mode toggle */
/* html {

  --theme-hue: 0;
  --accent-hue: 194;

  --text-color-richer: hsl(var(--theme-hue), 0%, 5%);
  --text-color-normal: hsl(var(--theme-hue), 0%, 13%);
  --text-color-softer: hsl(var(--theme-hue), 0%, 33%);

  --accent-color: hsl(var(--accent-hue), 86%, 57%);
  --accent-color-hover: hsl(var(--accent-hue), 76%, 49%);

  --border-color: hsl(var(--theme-hue), 0%, 73%);
  --border-color-softer: hsl(var(--theme-hue), 0%, 82%);

  --background-color: white;
  --background-color-softer: hsl(var(--theme-hue), 0%, 95%);
  --code-background: hsl(var(--theme-hue), 0%, 95%);

  --button-primary-color: white;


  --base-font-size: 81.25%;

  --grid-max-width: 1200px;
} 
*/

/*  Dark Theme
	Note: prefers-color-scheme selector support is still limited, but 
	included for future and an example of defining a different base 'theme'
*/
/* @media screen and (prefers-color-scheme: dark) {
  :root {
    --background-color-light: #1b2a40;
    --background-color-dark: #101118;
    --background-gradient: linear-gradient(315deg, var(--background-color-light) 0%, var(--background-color-dark) 60%);
    --accent-colour: rgba(51, 195, 240, 0.8);
    --accent-colour-hover: rgba(51, 195, 240, 1);;
    --text-color-softer: rgba(223, 226, 236, 0.6);
    --text-color: rgba(223, 226, 236, 0.8);
    --text-color-richer: rgba(223, 226, 236, 1);

    --border-color: hsl(var(--theme-hue), 0%, 27%);
    --border-color-softer: hsl(var(--theme-hue), 0%, 20%);
    --code-background: hsl(var(--theme-hue), 0%, 5%);
    --button-primary-color: white;
  }

  img.value-img {
    filter: invert(0.8);
  }
} */


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* CSS Grid depends much more on CSS than HTML, so there is less boilerplate
	 than with skeleton. Only basic 1-4 column grids are included.
	 Any additional needs should be made using custom CSS directives */


.grid-container {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: var(--grid-max-width);
  margin: 0 auto;
  padding: 0rem 2rem 2rem 2rem;
  text-align: left;
  box-sizing: content-box;
  gap: 5rem;
}

/* @media (min-width: 700px) {
  .grid-container {
    padding: 8rem 4rem;
  }
} */

@media (min-width: 1020px) {
  .grid-container {
    flex-direction: row;
    padding: 0 6rem;
    gap: 10rem;
  }
}


@media (min-width: 1200px) {
  .grid-container {
    gap: 20rem;
  }
}

/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

body {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Jost", "Gill-Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--background-color-light);
  -webkit-font-smoothing: antialiased;
}

/* @media (min-width: 1020px) {
  body {
    background-image: var(--background-gradient);
  }
} */


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

h1 {
  font-weight: 100;
  color: var(--text-color-richer);
  font-family: "Bebas Neue", "Jost", Impact, "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.5em;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Bebas Neue", "Jost", Impact, "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

h3 {
  line-height: 1.3;
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 0;
  color: var(--text-color-richer);
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: var(--accent-color-2);
  text-decoration: none;
  transition: color 0.5s;
}

a:hover {
  color: var(--accent-color);
  transition: color 0.5s;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: var(--text-color);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  box-sizing: border-box;
  transition: 0.1s linear;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: var(--text-color);
  border-color: var(--text-color);
  outline: 0;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: var(--background-color-light);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  margin-bottom: 0;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  transition: 0.1s linear;
  color: var(--background-color-light);
  background-color: var(--accent-color-2);
  border-color: var(--accent-color-2);
}


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: white;
  border: none;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
  color: var(--text-color)
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="button"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  min-height: 85px;
  padding-top: 10px;
  padding-bottom: 10px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: none;
  outline: 0;
}

label,
legend {
  display: block;
  margin-bottom: .5rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--text-color)
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label>.label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal;
}


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside;
}

ol {
  list-style: decimal inside;
}

ol,
ul {
  padding-left: 0;
  margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  font-size: 100%;
  margin: 1rem 0 1rem 3rem;
  color: var(--text-color);
}

/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: var(--code-background);
  border: 1px solid var(--border-color-softer);
  border-radius: 4px;
}

pre>code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
  overflow: auto;
}


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color-softer);
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
  margin-bottom: 2rem;
}

pre,
blockquote,
dl,
figure,
table,
ol,
form {
  margin-bottom: 0;
}

p {
  margin-top: 1rem;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-pull-right {
  float: right;
}

.u-pull-left {
  float: left;
}

.u-align-left {
  text-align: left;
}

.u-align-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem;
}

.italics {
  font-style: italic;
}

.bold {
  font-weight: 500;
}

.opactiy-0 {
  opacity: 0;
}

.opactiy-1 {
  opacity: 1;
}

.hide {
  display: none;
}

.show {
  display: block;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid var(--border-color-softer);
}


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}