@charset "UTF-8";
:root {
  --max-width: 1200px;
  --top-height: 400px;

  /* THEME COLORS */
  --accent-color-1: #8e0709;
  --accent-color-2: #b19300;

  /* BACKGROUND */
  --background: #fbf7f0;
  --background-alt: #652811;
  --item-background: white;

  /* HEADER */
  --header-background: #fbf7f0;
  --header-text: black;
  --header-text-hover: #8e0709;

  /* BUTTON COLORS */
  --button-color: #8e0709;
  --button-text: white;
  --button-hover-color: gold;
  --button-hover-text: black;

  /* FONTS */
  --font-default: "Montserrat", Arial, Helvetica, sans-serif;
  --font-heading: "Montserrat", Impact, Arial, Helvetica, sans-serif;

  /* TEXT COLOR */
  --text-default: #333;
  --text-default-dark: whitesmoke;

  /* SEARCH BOX */
  --searchbox-background: white;
  --searchbox-border: 1px solid lightgray;
  --searchbox-text: black;

  /* FOOTER */
  --footer-background: #242424;
  --footer-text: white;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-default);
  width: 100%;

  /* CUSTOMIZE */
  background: var(--background);
  color: var(--text-default);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: bold;
}

a,
.button {
  cursor: pointer;
  text-decoration: none;
}

/* Quick classes */

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

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

.text-center {
  text-align: center;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

/* 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;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #e1e1e1;
}

hr.spacer {
  border: none;
  margin: 25px;
}

/* HEADER */

header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--header-background);
}

header .navbar {
  padding: 10px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navbar-site-title {
  display: none;
}

.navbar-logo {
  flex: 1;
}

.navbar-logo img {
  width: auto;
  max-height: 60px;
}

#togglemenu {
  display: none;
}

.menu-toggle {
  display: block;
  height: 26px;
  width: 32px;
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: var(--header-text);
}

.menu-toggle .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.menu-toggle .line2 {
  transition: transform 0.2s ease-in-out;
}

.menu-toggle .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

#togglemenu:checked ~ .menu-toggle .line {
  border-radius: 10px;
  background: var(--header-text);
}

#togglemenu:checked ~ .menu-toggle .line1 {
  transform: rotate(45deg);
}

#togglemenu:checked ~ .menu-toggle .line2 {
  transform: scaleY(0);
}

#togglemenu:checked ~ .menu-toggle .line3 {
  transform: rotate(-45deg);
}

.navbar-menu {
  justify-items: flex-end;
  z-index: 9999;
}

.navbar-menu {
  position: fixed;
  width: 100%;
  background: var(--header-background);
  padding: 0 10px;
  text-align: center;
  top: 80px;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.5s;
  right: 0;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-menu .menu {
  display: block;
  list-style: none;
  padding: 0;
}

.navbar-menu .menu .menu-item {
  display: block;
  width: 100%;
  padding: 10px 0;
}

#togglemenu:checked ~ .navbar-menu {
  max-height: 1000px;
}

.navbar-menu .menu .menu-item,
.navbar-menu .menu .menu-item a {
  display: block;
  width: 100%;
  color: var(--header-text);
  font-family: var(--font-heading);
  font-size: 11pt;
}

.navbar-menu .menu .menu-item a.btn {
  max-width: 300px;
  margin: auto;
}

.navbar-menu .menu .menu-item a:hover {
  color: var(--accent-color-1);
}

/* DEFAULTS */

#content {
  margin: auto;
  width: 100%;
}

section {
  padding: 60px 30px;
}

section.alt {
  background: var(--background-alt);
  color: var(--text-default-dark);
}

section#subpage {
  padding: 20px 30px 60px;
  background: white;
}

.container {
  width: 100%;
  margin: auto;
  max-width: var(--max-width);
}

.section-heading {
  font-size: 24pt;
  margin: 0 0 20px;
  line-height: 1.5;
}

.highlight {
  color: var(--accent-color-1);
}

.grid,
.list {
  display: grid;
  gap: 15px;
}

.flex {
  display: flex;
  gap: 15px;
}

.btn {
  border: none;
  width: auto;
  display: inline-block;
  padding: 8px 20px;
  background: var(--button-color);
  border: none;
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--button-text);
  border-radius: 5px;
  transition: all 0.2s;
}

.btn:hover {
  background: var(--button-hover-color);
  color: var(--button-hover-text);
}

/* CTA BUTTONS */

header .cta {
  padding: 10px 20px;
}

section .cta {
  padding: 10px 40px;
  font-size: 20pt;
}

/* TOP */

section#top {
  min-height: var(--top-height);
  font-size: 14pt;
}

.top-grid {
  text-align: center;
  justify-items: center;
  align-items: center;
  line-height: 1.5;
}

.top-heading {
  line-height: 1.2;
  font-size: 26pt;
}

.top-img {
  width: 500px;
}

/* OUTRO */

section#outro {
  min-height: var(--top-height);
  font-size: 14pt;
}

.outro-grid {
  text-align: center;
  justify-items: center;
  align-items: center;
  line-height: 2;
}

.outro-heading {
  font-size: 26pt;
}

.outro-img {
  width: 500px;
}

/* FEATURES */

.grid-features {
  gap: 30px;
}

.grid-item {
  display: grid;
  gap: 20px;
  grid-template-rows: 200px auto;
  justify-items: center;
}

.feature-img {
  grid-row: 1/2;
  grid-column: 1/2;
  height: 200px;
  z-index: 888;
}

.feature-caption {
  background: white;
  grid-row: 1/3;
  grid-column: 1/2;
  margin-top: 100px;
  padding: 100px 30px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 20px #f5e9d4;
  line-height: 1.5;
  text-align: center;
}

.feature-heading {
  font-size: 18pt;
  margin-bottom: 5px;
}

/* SUBPAGE */

.subpage-content a {
  color: var(--accent-color-2);
  text-decoration: underline;
}

.subpage-content a:hover {
  color: var(--accent-color-1);
}

.subpage-content .dash {
  list-style-type: "-   ";
}

/* CONTACT */
.subpage-content form {
    padding: 50px;
    max-width: 768px;
    margin: 0 auto;
    border-radius: 50px;
}

.subpage-content form .form-group input,
.subpage-content form .form-group textarea {
    padding: 10px;
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #A4A4A4;
    height: 35px;
}

.subpage-content form .form-group label {
    color: var(--text-default);
}

.subpage-content form .form-group textarea {
    height: 100px;
}

.subpage-content form .form-group .submit-btn {
    color: var(--button-text);
    background: var(--button-color);
    text-transform: uppercase;
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    height: 50px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
    border: 0;
    cursor: pointer;
}

.subpage-content form .form-group .submit-btn:hover {
    color: var(--button-hover-text);
    background: var(--button-hover-color);
    -webkit-transition: .3s;
    transition: .3s;
}

/* UNINSTALL */

.uninstall img {
    margin: 10px 0 25px 25px;
    width: 100%;
    max-width: 550px;
}

/* FOOTER */

footer {
  padding: 30px 30px 30px;
  font-size: 10pt;

  /* CUSTOMIZE */
  background: var(--footer-background);
  color: var(--footer-text);
}

footer > .container {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
}

.footer-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

footer a,
footer a:hover {
  /* CUSTOMIZE */
  color: var(--footer-text);
}

/* Mobile first queries */

/* Larger than mobile */
@media (min-width: 400px) {
}

/* Larger than phablet */
@media (min-width: 550px) {
}

/* Larger than tablet */
@media (min-width: 750px) {

  section {
    padding: 50px 20px;
  }

  /* FEATURES */

  .grid-features {
    gap: 50px;
    max-width: 1100px;
    margin: auto;
  }

  .grid-item {
    display: grid;
    gap: 20px;
    align-items: center;
    grid-template-rows: auto;
    grid-template-columns: 350px auto;
  }

  .feature-img {
    grid-row: 1/2;
    grid-column: 1/2;
    height: auto;
    width: 350px;
  }

  .feature-caption {
    grid-row: 1/2;
    grid-column: 1/3;
    margin: auto 0 auto 100px;
    padding: 30px 30px 30px 270px;
    text-align: left;
    font-size: 13pt;
  }

  .feature-heading {
    font-size: 18pt;
    margin-bottom: 5px;
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {
  .menu-toggle {
    display: none;
  }

  .navbar-menu {
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    max-height: none;
    background: none;
  }

  .navbar-menu .menu .menu-item {
    width: auto;
    display: inline-block;
    padding: 0 10px;
    font-size: 13pt;
    align-items: center;
  }

  .navbar-menu .menu .menu-item:hover {
    color: var(--accent-color-1);
  }

  .top-grid {
    grid-template-columns: 1fr 60%;
    gap: 60px;
    text-align: left;
  }

  .top-heading {
    font-size: 30pt;
  }

  .top-img {
    width: auto;
  }

  .outro-grid {
    grid-template-columns: 1fr 50%;
    gap: 50px;
    text-align: left;
  }

  .outro-heading {
    font-size: 30pt;
  }

  .outro-img {
    width: auto;
  }

  footer > .container {
    flex-direction: row;
    gap: 20px;
  }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
}
