/* Main color theme 

color: #ffbf00;

fonts: Limelight, Montserrat Alternates, Montserrat

*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  /* For the whole project */
  background-color: #101010;
  font-size: 25px;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  color: #fff;
  font-weight: 300;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

/* ----- Reusables ----- */

h1 {
  font-family: "Limelight", cursive;
  font-size: 180%;
  /* font-weight: 800; */
}

h2 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 170%;
  letter-spacing: 1.5px;
}

h3 {
  font-family: "CCFaceFront-Italic", cursive;
  font-size: 78%;
  line-height: 30px;
  padding-top: 40px;
  letter-spacing: 0.5px;
}

h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

p,
a,
ul,
ol,
figcaption {
  font-family: "Montserrat", sans-serif;
  font-size: 78%;
  line-height: 29px;
}

ul {
  list-style: circle;
}

ul li ul {
  font-size: 90%;
  padding-left: 25px;
  list-style: square;
}

a:link,
a:visited,
a:active {
  color: #ffbf00;
  font-size: 100%;
  text-decoration: none;
}

a:hover {
  text-shadow: 0px 0px 2px #fac730;
}

img {
  width: 100%;
  height: auto;
  margin: 0;
}

blockquote {
  font-size: 160%;
  font-family: "Montserrat Alternatives", sans-serif;
  text-align: center;
}

blockquote span {
  font-size: 240%;
  font-family: "Limelight";
}

figcaption {
  text-align: center;
  color: #aaaaaa;
  font-size: 70%;
}

.bold {
  font-weight: 500;
}

/**
 * Button Styles
 */
.btn-ghost:link,
.btn-ghost:visited,
input[type="submit"] {
  color: #d8d8d8;
  text-decoration: none;
  padding: 12px;
  font-family: "Montserrat Alternatives", sans-serif;
  font-size: 95%;
  background-image: linear-gradient(#272727, #1d1d1d);

  transition: border-color 0.2s, color 0.2s, background-image 0.4s;
}

.btn-ghost:hover,
.btn-ghost:active,
input[type="submit"]:hover,
input[type="submit"]:active {
  color: #ffbf00;
  background-image: linear-gradient(#1d1d1d, #151515);
  border-color: #ffbf00;
}

.btn-left {
  float: left;
}

.btn-center {
  margin-left: 40px;
}

.btn-right {
  float: right;
}

/**
 * Home Page Styling
 */

/* ---- The Header ---- */

header {
  background-image: linear-gradient(rgba(16, 16, 16, 0.1), rgba(16, 16, 16, 0.1), rgba(16, 16, 16, 0.1), rgba(16, 16, 16, 1)),
    url(../img/newHomePage2.jpg);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  height: 100vh;
}

.logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 1em;
  padding-left: 10%;
  opacity: 0.9;
}

.header__hero {
  padding-top: 8rem;
  padding-left: 10vw;
}

.header__hero__headline {
  font-size: 240%;
}

.fadeIn {
  -webkit-animation: fadeIn 1300ms ease-in-out;
  animation: fadeIn 1300ms ease-in-out;
}


@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.9;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.9;
  }
}

/* .logo--top {
  font-weight: 700;
  font-size: 1em;
  letter-spacing: 1.5px;
} */

/*********************************
 ******* Blog Post ***************
 *********************************/

.new-post {
  position: relative;
  width: 56%;
  margin: 50px auto;
}

.new-post img {
  display: block;
  width: 800px;
  height: auto;
  margin: auto;
}

.new-post-content {
  display: block;
  position: absolute;
  left: 5px;
  bottom: 5px;
  background: #000;
  background: rgba(0, 0, 0, 0.5);

  width: 80%;
  padding: 20px;
  color: #fff;
  transition: 0.4s;
}

.new-post-content:hover {
  color: #ffbf00;
}

.new-post h2 {
  margin-bottom: 5px;
  font-size: 130%;
  text-align: left;
}

.new-post a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.5s;
}

.new-post a:hover,
.new-post a:active {
  color: #ffbf00;
}

/* ---- Categories Section ---- */

.category-header {
  padding: 30px 0;
  text-align: center;
  font-size: 110%;
}

.category-img {
  transform: rotateY(0deg);
  transition: 0.5s;
}

.category-img-container {
  position: relative;
}

.category-desc {
  position: absolute;
  top: 1%;
  left: 22.44%;
  height: 97%;
  width: 55%;
  opacity: 0;
  background-color: #000;
  border-radius: 100%;
  color: #fff;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: scroll;
}

.category-desc:active,
.category-desc:hover {
  opacity: 0.8;
}

.category-desc p {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 80%;
  text-align: center;
  font-size: 100%;
  line-height: 160%;
  opacity: 1;
  margin: 0 auto;
}

.tablink {
  background-color: #555;
  font-family: "Montserrat Alternates", sans-serif;
  color: white;
  width: 20%;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 20px 16px;
  font-size: 80%;
}

.tablink:hover {
  background-color: #777;
}

.tabcontent {
  font-family: "Montserrat", sans-serif;
  color: white;
  display: none;
  padding: 100px 20px;
  height: 500px;
  background-color: #101010;
}

.tabcontent p {
  font-size: 100%;
  line-height: 150%;
}

.tabcontent p:first-child {
  width: 80%;
}

.tabcontent a {
  float: left;
}

.tabcontent p:last-of-type {
  float: left;
  display: inline-block;
  margin: 16px 20px;
  line-height: 100%;
}

#dlc p:last-of-type {
  color: rgba(112, 112, 112, 0.56);
}

/* ---- About Section ---- */

.about {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(img/about-background-image-min.png);
  background-position: left;
  background-size: cover;
  background-attachment: fixed;
}

.about div h2 {
  color: #cecece;
  margin-top: 50px;
}

.about div p {
  color: #cecece;
  width: 70%;
  line-height: 150%;
  margin: 40px auto 20px auto;
}

/* ---- Contact Form ---- */

.section-form {
  color: white;
  background-color: #101010;
}

.form-header h2 {
  margin: 50px auto 20px auto;
}

.form-header p {
  text-align: center;
  margin-bottom: 25px;
  line-height: 130%;
}

.contact-form {
  width: 63%;
  margin: 20px auto;
}

.contact-form label {
  text-align: left;
}

label {
  margin-left: 90px;
  font-family: "Montserrat", sans-serif;
  font-size: 90%;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 7px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}

textarea {
  height: 200px;
}

input[type="submit"] {
  background-color: #101010;
  margin: 0 auto;
  cursor: pointer;
  border: none;
}

.form-messages {
  width: 70%;
  margin: 0 auto;
  padding: 10px;
  border-radius: 3px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  text-align: center;
}

.success {
  background-color: rgba(255, 191, 0, 0.52);
}

.error {
  background-color: rgba(165, 42, 42, 0.52);
}
}
