/*!
Theme Name: Decorpo Boilerplate
Theme URI: http://decorpotechgarage.com
Author: funcychaos
Author URI: http://decorpotechgarage.com
Description: A bare minimum boilerplate my way
Version: 1.0.0
Requires PHP:
Tested up to: 8.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: decorpo-tech-garage
Tags: css-grid

This theme, like WordPress, is licensed under the GPL.
*/
/*
	*** TABLE OF CONTENTS:
		# Generic
		# Layout
		# Components
*/
/* # Generic */
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
* {
  margin: 0;
}

/* # Layouts */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: black;
  color: #fff;
  opacity: 1;
  z-index: 1000;
}
.mobile-menu .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  list-style: none;
  list-style-type: none;
  font-size: 0.5rem;
}
.mobile-menu .menu a {
  color: #fff;
}
@media (max-width: 575px) {
  .mobile-menu .menu {
    font-size: 1.5rem;
  }
}
.mobile-menu .fa-dice-d20 {
  align-self: flex-end;
  position: relative;
  right: 2rem;
  top: 2rem;
}

.hidden {
  display: none;
}

.transition.hidden {
  display: block;
  opacity: 0;
}

.transition {
  transition: opacity 0.2s ease;
}

.content-main, .site-footer {
  padding: 1rem;
}
@media (max-width: 440px) {
  .content-main, .site-footer {
    padding: 0.5rem;
  }
}

.site {
  display: grid;
  grid-template-columns: 1fr 5fr 1fr;
  grid-template-rows: 70px auto 200px;
  grid-template-areas: "sidebar header ." "sidebar content ." "footer footer footer";
  gap: 1rem;
  min-height: 100vh;
  font-family: "Titillium Web", serif;
  font-weight: 300;
  font-style: normal;
  background-color: #1e1e25;
}
.site a {
  color: #fff;
}
@media (max-width: 1000px) {
  .site {
    grid-template-areas: "sidebar header header" "sidebar content content" "footer footer footer";
  }
}
@media (max-width: 575px) {
  .site {
    grid-template-columns: 1fr;
    grid-template-rows: 50px auto auto auto;
    grid-template-areas: "header" "content" "sidebar" "footer";
    gap: 0.5rem;
  }
}
.site header.site-header {
  grid-area: header;
  background-color: #0d000d;
  color: #fff;
  border-radius: 1rem;
  border-radius: 0;
  position: sticky;
  top: 0;
  padding: 0 1rem;
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "title menu" "title menu";
  gap: 1rem;
}
@media (max-width: 900px) {
  .site header.site-header {
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "title menu" "title menu";
  }
}
.site header.site-header .site-title {
  grid-area: title;
  display: flex;
  align-items: center;
}
.site header.site-header .site-title a {
  text-decoration: none;
}
@media (max-width: 575px) {
  .site header.site-header .site-title {
    display: flex;
    align-items: center;
    font-size: 0.6rem;
  }
}
.site header.site-header .main-navigation {
  grid-area: menu;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 900px) {
  .site header.site-header .main-navigation {
    padding-right: 10px;
    display: flex;
    justify-content: flex-end;
  }
}
.site header.site-header .main-navigation .menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  list-style: none;
  list-style-type: none;
  font-size: 2rem;
}
.site header.site-header .main-navigation .menu a:hover {
  color: #ff69b4;
}
@media (max-width: 575px) {
  .site header.site-header .main-navigation .menu {
    font-size: 1.5rem;
  }
}
.site header.site-header .main-navigation .fa-bars {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 375px) {
  .site header.site-header .main-navigation .fa-bars {
    font-size: 2rem;
  }
}
@media (max-width: 750px) {
  .site header.site-header .main-navigation .menu {
    display: none;
  }
  .site header.site-header .main-navigation .fa-bars {
    display: block;
  }
}
.site aside {
  grid-area: sidebar;
  background-color: #0d000d;
  color: #fff;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem;
}
.site aside .site-logo img {
  width: 150px;
  height: auto;
}
.site aside li {
  list-style: none;
  margin: 5px 0;
}
.site aside .searchform {
  display: flex;
  align-items: center;
}
.site aside .searchform input[type=search] {
  width: 7rem;
  height: 1.5rem;
}
@media (max-width: 575px) {
  .site aside .searchform input[type=search] {
    width: 12rem;
  }
}
.site aside .searchform button[type=submit] {
  height: 1.5rem;
  margin-top: 2px;
}
.site aside a {
  color: #fff;
}
.site aside a:hover {
  color: #ff69b4;
}
.site aside .categories > li:nth-child(2) {
  margin-top: 2rem;
}
.site main {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #0d000d;
  color: #fff;
  border-radius: 1rem;
}
.site main .wp-block-image img, .site main .wp-block-video video {
  border-radius: 1rem;
}
.site footer {
  grid-area: footer;
  background-color: #0d000d;
  color: #fff;
  border-radius: 1rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* # Components */
.post.post-list-item {
  width: 100%;
  border-top: solid #fff 2px;
}
.post.post-list-item:last-of-type {
  border-bottom: solid #fff 2px;
}
.post.post-list-item .entry-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

article.service {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service.post-list-item {
  width: 100%;
  border-bottom: #fff solid 2px;
}
.service.post-list-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service.post-list-item header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.service.post-list-item header img {
  height: 200px;
  width: auto;
}
@media (max-width: 575px) {
  .service.post-list-item header {
    flex-direction: column;
  }
  .service.post-list-item header img {
    height: 150px;
  }
}
@media (max-width: 375px) {
  .service.post-list-item header {
    text-align: center;
  }
  .service.post-list-item header img {
    height: 100px;
  }
}
.service.post-list-item footer {
  text-align: center;
}

.page.post-list-item {
  width: 100%;
  border-top: solid #fff 2px;
}
.page.post-list-item:last-of-type {
  border-bottom: solid #fff 2px;
}
.page.post-list-item .entry-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.form-div {
  display: flex;
  justify-content: center;
  margin: 1rem;
}
.form-div form.contact-form button {
  margin-top: 1rem;
  height: 3rem;
  padding: 0 8px 5px 8px;
  border-radius: 0.5rem;
  font-family: "Titillium Web", serif;
  font-size: 2rem;
  cursor: pointer;
}
.form-div form.contact-form .customer, .form-div form.contact-form .information {
  display: flex;
  flex-direction: column;
}
.form-div form.contact-form .customer input, .form-div form.contact-form .information input {
  margin-bottom: 1rem;
}
.form-div form.contact-form .g-recaptcha {
  margin-top: 1rem;
}
.form-div form.contact-form .hidden {
  visibility: hidden;
}

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