/*
Theme Name: Minimal Theme
Theme URI: https://example.com/minimal-purple
Author: Your Name
Author URI: https://example.com
Description: A minimal personal log theme with purple accents for ClassicPress.
Version: 1.0
*/

body {
  background: #FAFAFA;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

a {
  color: #6A0DAD;
  text-decoration: none;
}

a:hover {
  color: #7851A9;
}

header, footer {
  background: #6A0DAD;
  color: white;
  padding: 1em;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 1.5em;
}

@media (min-width: 500px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    & h1 {
      font-size: 2em;
    }
  }
}

header a, footer a {
  color: white;
}

header a:hover, footer a:hover {
  text-decoration: underline;
}

#primary-menu {
  display: flex;
  justify-content: center;
  padding: 0.5em 0;

  & li {
    list-style: none;
    margin: 0 1em;
  }
}

main {
  max-width: 720px;
  margin: 2em auto;
  padding: 0 1em;
  background: white;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

#home-main-content {
  background-color: unset;
  box-shadow: unset;

  .minimal-post {
    border: 0;
    border-top: 1px solid #E0E0E0;

    &:first-child {
      border-top: 0;
    }

    & h2 {
      /* font-size: 1.5em; */
      margin: 0.5em 0;
    }
  }
}

