@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  color: #191919;
  font-family: "Poppins", sans-serif;
}

img {
  vertical-align: baseline;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}

a:visited {
  color: purple;
}

a:hover,
a:focus,
a:active {
  color: midnightblue;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
  list-style: none;
}

/*--------------------------------------------------------------
# Helper Utilities
--------------------------------------------------------------*/
.flex {
  display: flex;
}

/*--------------------------------------------------------------
# Outer Container
--------------------------------------------------------------*/
@media screen and (min-width: 992px) {
  .outer-container {
    padding-left: 80px;
  }
}

@media screen and (min-width: 768px) {
  .no-padding {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/*
# Site Branding
--------------------------------*/
.site-branding {
  transition: all 0.5s;
}

.site-title {
  margin: 0;
  text-align: center;
}

.site-navigation .site-title a {
  display: block;
}

/*
  Hamburger Menu
----------------------------------------*/
.hamburger-menu .menu-icon,
.hamburger-menu .menu-close-icon {
  width: 44px;
  height: 44px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
}

.hamburger-menu.close .menu-icon {
  visibility: hidden;
  opacity: 0;
}

.menu-close-icon {
  visibility: hidden;
  opacity: 0;
}

.hamburger-menu.close .menu-close-icon {
  visibility: visible;
  opacity: 1;
}

.hamburger-menu img {
  display: block;
  margin: 0 auto;
}

/*
# Site Navigation
--------------------------------*/
.site-navigation {
  transition: all 0.5s;
}

/*
# Main Menu
--------------------------------*/
.main-menu {
  padding: 15px 30px;
  margin: 0;
  height: 50vh;
}

.main-menu li {
  display: block;
  padding: 12px 0;
  font-size: 30px;
  font-weight: 500;
  border-bottom: 1px solid #ebebeb;
}

.main-menu li:nth-last-of-type(1) {
  border-bottom: 0;
}

.main-menu li a {
  display: block;
  color: #a6a6a6;
  text-decoration: none;
  transition: all 0.35s;
}

.main-menu li a:hover,
.main-menu li.current-menu-item a {
  color: #f0437e;
}

.creator {
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 5px 5px 10px grey, -5px -5px 10px #fff;
  color: white;
  background-image: linear-gradient(
    90deg,
    #00c0ff 0%,
    #ffcf00 49%,
    #fc4f4f 80%,
    #00c0ff 100%
  );
  animation: slidebg 5s linear infinite;
}

@keyframes slidebg {
  to {
    background-position: 40vw;
  }
}

/*
# Profiles
--------------------------------*/
.social-profiles ul {
  padding: 10px 0 34px 0;
  margin: 0;
}

.social-profiles ul li {
  display: block;
  padding: 0 5px;
}

.social-profiles ul li:hover,
.social-profiles ul li:focus,
.social-profiles ul li:active {
  transform: scale(1.1);
  transition: all 0.2s;
}

.nav-bar-sep {
  height: 130px;
}

@media screen and (max-width: 992px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 15px 30px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.09);
  }

  .site-header,
  .hamburger-menu {
    display: flex;
    justify-content: center;
  }

  .hamburger-menu {
    flex-flow: column;
  }

  .hamburger-menu .menu-icon,
  .hamburger-menu .menu-close-icon {
    position: absolute;
    top: 26px;
    right: 24px;
  }

  .main-menu li {
    position: relative;
  }

  .main-menu li:hover::after,
  .main-menu li.current-menu-item::after {
    color: #f0437e;
  }

  .site-navigation {
    position: absolute;
    top: 78px;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 500px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.09);
    visibility: hidden;
    opacity: 0;
    transition: all 0.35s;
  }

  .site-navigation.show {
    visibility: visible;
    opacity: 1;
  }

  .social-profiles ul {
    width: 35%;
    transform: translateX(100%);
  }
}

@media screen and (min-width: 992px) {
  .site-header,
  .site-navigation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 80px;
    height: 100vh;
    padding: 0 15px;
    box-shadow: 6px 0 12px rgba(0, 0, 0, 0.05);
  }

  .site-navigation {
    background: #f7f7f7;
  }

  .site-navigation.show {
    left: 80px;
  }

  .site-header {
    background: #fff;
  }

  .site-header.no-shadow {
    box-shadow: none;
  }

  .site-header .site-branding.hide {
    visibility: hidden;
    opacity: 0;
  }

  .site-title {
    padding: 28px 0 10px 0;
  }

  .hamburger-menu .menu-icon,
  .hamburger-menu .menu-close-icon {
    position: absolute;
    top: calc(50vh - 22px);
    left: 15px;
    width: calc(100% - 30px);
    padding: 10px 0;
  }

  .site-navigation {
    left: -250px;
    z-index: 99;
    width: 250px;
    padding: 0;
    box-shadow: 16px 0 42px rgba(0, 0, 0, 0.09);
  }

  .main-menu {
    height: calc(100vh - 160px);
    padding: 0;
  }

  .main-menu li {
    border-bottom: 0;
    text-align: center;
  }

  .social-profiles ul li {
    font-size: 1.125rem;
  }
}

/*--------------------------------------------------------------
# posts
--------------------------------------------------------------*/
.posts-page .scroll-down {
  margin-left: -60px;
}

.posts-content {
  position: relative;
  margin-bottom: 30px;
}

.home-page {
  padding-top: 15px;
}

.home-page .posts-content {
  margin-bottom: 15px;
}

.posts-content figure {
  margin: 0;
}

.posts-content figure img {
  display: block;
  padding: 2px;
  border-radius: 10px;
  width: 100%;
  height: 480px;
  min-height: 100%;
}

.posts-content .entry-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  font-family: "Poppins", sans-serif;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s;
}

.posts-content:hover .entry-content {
  visibility: visible;
  opacity: 1;
}

.posts-content h3 {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.home-page .posts-content h3 {
  font-size: 2.25rem;
}

.posts-content h3 a {
  color: #191919;
  text-decoration: none;
}

.posts-content ul {
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.posts-content li {
  margin: 0 3px;
}

.posts-content li a {
  font-size: 0.875rem;
  color: #a6a6a6;
}

@media screen and (min-width: 768px) {
  .home-page {
    padding: 0;
  }

  .home-page .posts-content {
    margin-bottom: 0;
  }
}

/* Scroll to top */

#scrolltop {
  position: fixed;
  right: 20px;
  bottom: 5px;
  font-size: 15px;
  transform: rotate(90deg);
  outline: none;
  cursor: pointer;
  box-shadow: 1px 1px 2px grey, -1px -1px 2px #fff;
  border-radius: 100%;
  background-color: #ff78b7;
}
