@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css");
:root {
  --color-white: #fbf4f4;
  --color-dark-1: hsl(210, 11%, 15%);
  --color-dark-2: hsl(210, 11%, 35%);
  --color-light-1: hsl(60, 20%, 98%);
  --color-gray-darker: hsl(215, 16%, 27%);
  --color-gray-dark: hsl(215, 16%, 37%);
  --color-gray: hsl(215, 16%, 47%);
  --color-gray-light: hsl(215, 16%, 57%);
  --color-gray-lighter: hsl(215, 16%, 67%);
  --text-color-dark: hsl(215, 16%, 14%);
  --text-color-light: hsl(213, 30%, 93%);
  --text-color-hover-1: hsl(8, 65%, 50%);
  --text-color-hover-2: hsl(53, 100%, 50%);
  --color-yellow: hsl(53, 100%, 50%);
  --img-max-height: 12rem;
  --shadow: 0 0.5rem 1rem hsla(0, 0%, 0%, 0.267);
  --transition: 0.1s;
  --radius: 0.25em;
}

/* Basic global layout reset */
@-moz-viewport {
  width: device-width;
  scale: 1;
}
@-ms-viewport {
  width: device-width;
  scale: 1;
}
@-o-viewport {
  width: device-width;
  scale: 1;
}
@-webkit-viewport {
  width: device-width;
  scale: 1;
}
@viewport {
  width: device-width;
  scale: 1;
}
html {
  box-sizing: border-box;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

svg {
  fill: currentColor;
}

/* Base Typography Styles */
html {
  font: normal 100%/1.5 Rubik, "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

/* 
Standardizing some basic type styles across my website.
*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0 0 1.3rem;
}

.text-light {
  color: var(--text-color-light);
}

.text-dark {
  color: var(--text-color-dark);
}

.link-light {
  display: inline-block;
  color: var(--text-color-light);
  text-decoration: none;
}
.link-light:hover, .link-light:focus-visible {
  color: var(--text-color-hover-2);
  text-decoration: none;
}

.link-dark {
  display: inline-block;
  color: var(--text-color-dark);
  text-decoration: none;
}
.link-dark:hover, .link-dark:focus-visible {
  color: var(--text-color-hover-1);
  text-decoration: none;
}

.mr-0_5 {
  margin-right: 0.5rem;
}

/* Base Layout */
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--color-white);
  color: var(--color-gray-lighter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 45em) {
  body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.container {
  max-width: min(65em, 100%);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

section > .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

img {
  width: 100%;
}

.padding-t {
  padding-top: 6rem;
}

.padding-t-3 {
  padding-top: 3rem;
}

.spacing-b {
  padding-bottom: 6rem;
}

.push {
  margin-bottom: 1rem;
}

.push-4 {
  margin-bottom: 4rem;
}

.text-wrap {
  max-width: 45em;
}

.parent-styles {
  border: 0.25rem dashed #ccc;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.md-full {
  grid-column: 1/-1;
}

.md-1-2 {
  grid-column: 1/2;
}

.md-2-2 {
  grid-column: 2/-1;
}

.md-center {
  justify-self: end;
  max-width: 50%;
}

/* Icons */
/* Accessibility */
.skip-links {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.skip-links a {
  position: absolute;
  top: -100rem;
  display: inline-block;
  padding: 1rem;
  background-color: var(--color-yellow);
  color: var(--text-color-dark);
  font-weight: bold;
  text-decoration: none;
  z-index: 1000000;
}
.skip-links a:focus {
  top: 0;
}

.to-top {
  position: fixed;
  bottom: 0;
  right: 1rem;
  background-color: var(--color-yellow);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem 0.5rem 0 0;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.to-top.visible, .to-top:hover, .to-top:focus {
  transform: none;
}

/* Some helper css for colouring and styling */
label,
.label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

input:not([type=checkbox]):not([type=radio]):not([type=range]),
select,
textarea {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 0.5rem;
  border-radius: 0.25em;
  border: 0.0625rem solid var(--color-gray-dark);
}

/* Button styles */
.btn {
  background-color: var(--color-yellow);
  border: 0.0625rem solid var(--color-yellow);
  box-shadow: var(--shadow);
  color: #fff;
  padding: 0.55em 1.5em 0.5em;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  border-radius: 0.25rem;
  display: inline-block;
  cursor: pointer;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}
.btn:hover, .btn:focus {
  background-color: var(--color-gray-dark);
  border-color: var(--color-gray-dark);
}
.btn--large {
  font-size: 1.125rem;
}
@media only screen and (min-width: 45em) {
  .btn--large {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 60em) {
  .btn--large {
    font-size: 1.25rem;
  }
}
.btn--secondary {
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--text-color-dark);
}
.btn--secondary:hover, .btn--secondary:focus-visible {
  background-color: var(--text-color-dark);
  border-color: var(--color-yellow);
  color: var(--color-yellow);
}

/* Nav Toggle */
.nav-toggle {
  width: 2.5rem;
  height: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media only screen and (min-width: 45em) {
  .nav-toggle {
    display: none;
  }
}
@media only screen and (min-width: 60em) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle .tog {
  width: 100%;
  height: 0.25rem;
  background-color: var(--color-yellow);
  position: relative;
  transition: top var(--transition), bottom var(--transition), opacity var(--transition), transform var(--transition);
}
.nav-toggle .tog.top {
  top: 0;
}
.nav-toggle .tog.bottom {
  bottom: 0;
}
.nav-toggle.open .top {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.nav-toggle.open .middle {
  opacity: 0;
}
.nav-toggle.open .bottom {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.click-to-close {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5333333333);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.click-to-close.open {
  opacity: 1;
  pointer-events: all;
}

/* Masthead */
.masthead {
  padding: 1rem 0;
  background-color: var(--color-dark-1);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  border-bottom: 0.125em solid #000;
}
.masthead .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.masthead .logo {
  letter-spacing: 0.0625rem;
  font-size: 1.266rem;
}
@media only screen and (min-width: 45em) {
  .masthead .logo {
    font-size: 1.44rem;
  }
}
@media only screen and (min-width: 60em) {
  .masthead .logo {
    font-size: 1.563rem;
  }
}
.masthead nav {
  position: fixed;
  top: 0;
  right: -66vw;
  width: 66vw;
  height: 100vh;
  box-shadow: -2px 3px 5px rgba(0, 0, 0, 0.15);
  background-color: var(--color-dark-2);
  transition: right 0.2s, top 0.2s;
}
@media only screen and (min-width: 45em) {
  .masthead nav {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    box-shadow: none;
    z-index: auto;
    background-color: transparent;
  }
}
.masthead nav a {
  display: block;
  text-decoration: none;
  font-size: 1.424rem;
}
@media only screen and (min-width: 45em) {
  .masthead nav a {
    font-size: 1rem;
    display: block;
  }
}
@media only screen and (min-width: 60em) {
  .masthead nav a {
    font-size: 1rem;
  }
}
.masthead nav a:hover, .masthead nav a:focus {
  text-decoration: none;
}
.masthead nav.open {
  right: 0;
}
.masthead nav ul {
  padding: 6rem 1rem;
  text-align: right;
  margin: 0;
  list-style-type: none;
}
@media only screen and (min-width: 45em) {
  .masthead nav ul {
    display: flex;
    padding: 0;
  }
}
.masthead nav ul li:not(:last-child) {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 45em) {
  .masthead nav ul li:not(:last-child) {
    margin-bottom: 0;
    margin-right: 2rem;
  }
}

/* Main Footer */
.footer {
  background-color: var(--color-dark-1);
  color: var(--color-white);
  padding: 1rem 0;
  margin-top: 3rem;
}
.footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer .nav__container {
  display: flex;
  list-style-type: none;
  gap: 1rem;
  font-size: 0.889rem;
}
@media only screen and (min-width: 45em) {
  .footer .nav__container {
    font-size: 0.883rem;
  }
}
@media only screen and (min-width: 60em) {
  .footer .nav__container {
    font-size: 0.8rem;
  }
}
.footer .logo {
  font-size: 0.889rem;
}
@media only screen and (min-width: 45em) {
  .footer .logo {
    font-size: 0.883rem;
  }
}
@media only screen and (min-width: 60em) {
  .footer .logo {
    font-size: 0.8rem;
  }
}
.footer .disclaimer {
  font-size: 0.889rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (min-width: 45em) {
  .footer .disclaimer {
    font-size: 0.883rem;
  }
}
@media only screen and (min-width: 60em) {
  .footer .disclaimer {
    font-size: 0.8rem;
  }
}

.copy,
.privacy,
.copyright {
  font-size: 0.889rem;
}
@media only screen and (min-width: 45em) {
  .copy,
.privacy,
.copyright {
    font-size: 0.883rem;
  }
}
@media only screen and (min-width: 60em) {
  .copy,
.privacy,
.copyright {
    font-size: 0.8rem;
  }
}

/* Cards */
.card__group {
  margin: 5rem auto;
}
.card__group .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-color-dark);
  margin: 0 auto;
}
.card__group__header {
  margin-top: 4rem;
  font-size: 1.602rem;
}
@media only screen and (min-width: 45em) {
  .card__group__header {
    font-size: 2.074rem;
  }
}
@media only screen and (min-width: 60em) {
  .card__group__header {
    font-size: 2.441rem;
  }
}

.row {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.row-cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media only screen and (min-width: 45em) {
  .row-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 60em) {
  .row-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  color: var(--text-color-dark);
  height: 100%;
  box-shadow: var(--shadow);
  background-color: var(--color-light-1);
  border-radius: 0.25em;
  text-align: center;
}
.card img {
  width: auto;
  align-self: center;
  border-radius: 0.2em;
  max-height: 12rem;
}
@media only screen and (min-width: 45em) {
  .card img {
    max-height: 14rem;
  }
}
@media only screen and (min-width: 60em) {
  .card img {
    max-height: 16rem;
  }
}
.card__title {
  margin-top: 2rem;
  font-weight: bold;
  text-align: center;
  font-size: 1.266rem;
}
@media only screen and (min-width: 45em) {
  .card__title {
    font-size: 1.44rem;
  }
}
@media only screen and (min-width: 60em) {
  .card__title {
    font-size: 1.563rem;
  }
}
.card__content {
  flex: 1;
  text-align: center;
}
.card__links {
  display: flex;
  flex-direction: row;
  column-gap: 0.75rem;
}

.contact--wrapper {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact--wrapper .container {
  width: 100%;
}
.contact__form {
  background-color: var(--color-gray-dark);
  color: var(--text-color-light);
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  border: 0.125rem solid var(--color-gray-dark);
  box-shadow: var(--shadow);
  border-radius: 0.25em;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (min-width: 45em) {
  .contact__form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact__form .contact__header {
  color: var(--color-yellow);
}
.contact__form__fieldset {
  display: flex;
  flex-direction: column;
}
.contact__me .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.contact__me__header {
  margin: 0;
  padding: 0;
  font-size: 1.602rem;
  color: var(--text-color-dark);
}
@media only screen and (min-width: 45em) {
  .contact__me__header {
    font-size: 2.074rem;
  }
}
@media only screen and (min-width: 60em) {
  .contact__me__header {
    font-size: 2.441rem;
  }
}
.contact__me__item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 1.125rem;
  color: var(--color-gray-dark);
}
@media only screen and (min-width: 45em) {
  .contact__me__item {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 60em) {
  .contact__me__item {
    font-size: 1.25rem;
  }
}

/* Hero */
.banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/hero.jpg");
  background-position: center;
  background-size: cover;
  background-color: #000;
}
.banner .container {
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.banner__content {
  width: min(35em, 100%);
  text-align: center;
}
.banner__title {
  line-height: 1.3;
  color: var(--color-yellow);
  text-align: center;
  font-size: 1.802rem;
}
@media only screen and (min-width: 45em) {
  .banner__title {
    font-size: 2.488rem;
  }
}
@media only screen and (min-width: 60em) {
  .banner__title {
    font-size: 3.052rem;
  }
}
.banner__text {
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: var(--text-color-light);
  font-size: 1.125rem;
}
@media only screen and (min-width: 45em) {
  .banner__text {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 60em) {
  .banner__text {
    font-size: 1.25rem;
  }
}

/*# sourceMappingURL=main.css.map */
