/*
Theme Name: daisybug
Theme URI: https://imawareimawolf.com/wp-content/themes/daisybug
Author: Gia
Author URI: https://imawareimawolf.com
Description: Gia's custom Wordpress theme, Daisybug
Version: 1.0
License: GNU General Public License v2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: two-columns, right-sidebar
Text Domain: daisybug
*/

$sans-font: 'Barlow', sans-serif;
$mono-font: 'Inconsolata', monospace;
$dark-purple: #312B40;
$medium-purple: #9280BF;
$light-purple: #e2daf4;
$dark-pink: #7F5277;
$medium-pink: #BF7BB2;
$light-pink: #efcfe9;

/* Main Elements */

* {
	box-sizing: border-box;
}

body {
	color: #333;
	font-family: $sans-font;
	font-size: 14px;
	margin: 0 auto;
	padding: 0;
	letter-spacing: 1px;
	line-height: 22px;
}

li {
	list-style-type: none;
}

#sidebar li::before {
  content: '\f186'; /* fa-moon-o */
  font-family: 'FontAwesome';
  float: left;
  color: $medium-purple;
  font-weight: bold;
  font-size: 14px;
  margin-left: -20px;
}

input, textarea {
	padding: 10px;
	color: #333;
	border: 1px #dadada solid;
	outline: none;
	color: $medium-purple;
	border-right: 10px #bbb solid;
	font-family: $mono-font;
	font-size: .85em;
}

input[type="submit"] {
	border-right: none;
	border: 1px #dadada solid;
	border-radius: 0px;
}

input[type="submit"]:hover {
	border-right: none;
	border: 1px #dadada solid;
	color: #fff;
	background-color: $medium-purple;
	transition: ease-in .4s;
}

.wp-caption {
	color: #000;
}

.wp-caption-text {
	color: #000;
}

.sticky {
	color: #000;
}

.screen-reader-text {
	color: #000;
}

.gallery-caption {
	color: #000;
}

.bypostauthor {
	color: #000;
}

.alignright {
	text-align: right;
}

.alignleft {
	text-align: left;
}

.aligncenter {
	text-align: center;
}

.size-auto, 
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
	max-width: 100%;
	height: auto;
}

/* Headers */

h1, h2, h3, h4, h5, h6 {
	color: $dark-pink;
}

h1 {
	font-size: 2.571em;
}

h2 {
	font-size: 2.143em;
}

h3 {
	font-size: 1.857em;
}

h4 {
	font-size: 1.714em;
}

h5 {
	font-size: 1.571em;
}

h6 {
	font-size: 1.286em;
}

.site-title h1 {
	font-size: 3.5em;
}

/* Links */

a {
	color: $medium-purple;
	text-decoration: none;
	border-bottom: 3px solid transparent;
	transition: ease-in .3s;
}

a:hover {
	color: $dark-pink;
	border-bottom: 3px solid $dark-pink;
}

#nav a, #nav li {
	display: inline;
	list-style-type: none;
	margin-left: 15px;
	font-family: $mono-font;
	font-weight: bold;
	font-style: italic;
	font-size: 1.2em;
}

/* Page Elements */

#container {
	width: 90%;
	margin: 0 auto;
}

#header {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

#nav {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	margin-left: -30px;
}

#main {
	width: 70%;
	float: left;
	padding: 15px;
}

#sidebar {
	width: 30%;
	float: right;
	padding: 15px;
}

#footer {
	clear: both;
	text-align: center;
	padding: 20px;
	padding-top: 100px;
}

#load-more {
	padding: 15px;
	font-size: 1.2em;
	font-style: italic;
	font-weight: bold;
	color: $dark-purple;
	border: none;
	border-radius: 0px;
	outline: none;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	transition: ease-in .3s;
	margin: 0 auto;
	text-align: center;
}

#load-more:hover {
	color: $dark-pink;
	border-bottom: 3px $dark-pink solid;
}

/* Media Queries */

@media screen and (max-width: 650px) {
    #main {
    	width: 100%;
    }

    #sidebar {
    	display: none;
    }

    #nav a, #nav li {
    	display: block;
    	line-height: 1.5em;
    }
}