@charset "utf-8";
/*------------------------------------------------- CSS MAIN STYLES -------------------------------------------------------*/
body {
	margin: 0;
	font-family: "Roboto", Arial, sans-serif;
	font-size: 100%;
	color: #46451D;
	text-align: center;
	
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: grayscale;
	/*Keeps the text the intended density*/
}
p {
	font-size: 30px;
	line-height: 1.5em;
}
.smolp {
	font-size: 25px;
	line-height: 1.5em;
	/*remember to change top and bottom margins*/
	margin: 15px 0px;
}
h1 {
	font-size: 45px;
	line-height: 1.2em;
	/*font weight automatically bold*/
	margin: 0px;
}
h2 {
	font-size: 40px;
	line-height: 1.2em;
	/*font weight automatically bold*/
	margin: 0px 0px 30px 0px;
}
a {
	color: #46451D;
	text-decoration: none;
	font-size: 25px;
}
a:hover {
	color: #708240;
	/* the hover means when the click goes over text*/
}
ul {
	list-style-type: none;
	padding: 0;
}
.shopbutton, a.shopbutton {
	font-weight: 700;
	font-size: 30px;
	background-color: #46451D;
	color: 	#FFFFFF;
	padding: 13px 37px 13px 37px;
	border: none;
	/*move button down or up with below stuff */
	display: inline-block;
	margin: 30px 0px;
}
.buttons, a.buttons {
	font-weight: 700;
	font-size:30px;
	background-color: #798D48;
	color: #FFFFFF;
	padding: 13px 37px 13px 37px;
	border: none;
	
	display: inline-block;
	margin: 30px 0px;
}
.buttons:hover {
	color: #46451D;
}	
.shopbutton:hover {
	color: #ABBA72;
}
input {
	display: block;
	
	margin-top: 5px;
	margin-bottom: 5px;
	padding: 14px;
	border-radius: 0;
	border-width: 1px;
	font-family: "Roboto", Arial, sans-serif;
	font-size: 100%;
	
	align-content: center;
	margin-right: auto;
	margin-left: auto;
}
/*--!!!----------------------------------!!!-SPECIFIC SECTIONS START HERE-!!!-----------------------------------------!!!--*/
#header {
	margin: auto;
}
#header ul {
	padding: 0;
	margin: 3px 0 0 0;
}
#header li {
	padding: 0% 4.8%;
	margin: 0;
	display: inline;
}
#header a {
	font-size: 25px;
}
/*logo size*/
#top-logo {
	min-width: 350px;
	width: 30%;
	margin: 30px;
}
/*hamburger icon*/
#toggle {display: none}
/*-----------------------------------------BANNER----------------------------------------------------*/
#banner {
	width: 100%;
	height: 485px;
	background-image: url("finalimages/banner-image.jpeg");
	background-size: cover;
	background-position: center center;
	margin-top: 20px;
	
	background-repeat: no-repeat;
}
#banner-text {
	max-width: 590px;
	width: 100%;
	height: 60px;
	margin: 50px auto;
	display: inline-block; /*inline-block, my beloved*/
}
/*-----------------------------------------CONTENT----------------------------------------------------*/
#content {
	margin: 65px auto;
}
.boxes {
	width: 23%;
	min-width: 280px;
	display: inline-block;
	padding: 0% 3%;
	vertical-align: top;
}
/*-----------------------------------------SECTIONS--------------------------------------------------*/
.sections {
	width: 100%;
	min-height: 456px;
	/*Min-height keeps it looking like original height from wireframe w/out html image*/
	text-align: left;
	background-color: #FFF7E0;
	/*display: flex and align-items keep the sections looking good as they shrink*/
	/*and save me the problems that background images cause ontop of a background color*/
	display: flex;
	flex-direction: row;
	gap: 20px;
}
.section-image-one, .section-image-two {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	/*Solution: make empty div with class of section-images so it still works*/
	width: 50%;
	padding: 0;
	margin: 0;
}
.section-image-one {
	background-image: url("finalimages/tutorials-image.jpeg"); 
}
.section-image-two {
	background-image: url("finalimages/author-image.jpeg"); 
}
.section-text {
	width: 50%;
	padding: 0;
	margin: 50px 0px 0px 0px;
}
/*-------------------------------------------FORM------------------------------------------------------*/
#form {
	max-width: 400px; /*make same as .boxes width*/
	width: 100%;
	margin: 30px auto;
	
}
#form .field {
	width: 372px; 
	height: 15px;
	/*strange -3.600 margin on field, keep margin at 0*/
	margin-right: 0;
}
/*-----------------------------------------FOOTER----------------------------------------------------*/
#footer {
	background-color: #46451D;
	overflow: hidden; /*works w/ clearfix to keep background from dissapearing*/
	padding: 0 5%;
	width: 90%;
	height: 450px
}
/*--..........Left..........--*/
#leftfootersect {
	width: 45%;
	padding: 15px 0px;
	margin: 0;
	float: left;
	text-align: left;
}
#footer-logo {
	min-width: 300px;
	width: 60%;
	overflow: visible;
}
#social-media img{
	width: 65px;
}
#social-media li{
	display: inline-block; /*display: inline-block  must be used on li items*/
	padding-right: 25px;
}
#social-media a:hover{
	opacity: 0.8;
}
/*--..........Right..........--*/
#rightfootersect {
	float: right;
	width: 50%;
	color: #FFFFFF;
	text-align: left;
}
#rightfootersect ul{
	padding: 0;
	margin: 3%;
	list-style-type: none;
}
#rightfootersect li{
	padding-bottom: 15px;
}
#rightfootersect a {
    color:#ABBA72;
    text-decoration: none;
}
#info, #shop, #help {
	display: inline-block;
	vertical-align: top;
	margin-right: 3%;
}
/*--------------------------------------------------MEDIA QUERIES----------------------------------------------------------*/
/*--------------------------------------------------BEGIN HERE!!!----------------------------------------------------------*/
/*---------------------------------------------------1080 PIXELS-----------------------------------------------------------*/
@media screen and (max-width: 1080px) {
p {
    font-size: 27px;
}
.smolp {
    font-size: 22px;
}
h1 {
    font-size: 40px;
    margin-top: 0px;
}
h2 {
    font-size: 35px;
    /*font weight automatically bold*/
}
a {
	font-size: 22px;
}
.shopbutton, a.shopbutton {
	font-size: 27px;
	padding: 13px 37px 13px 37px;
	margin: 30px 0px;
}
.buttons, a.buttons {
	font-size: 27px;
	padding: 13px 37px 13px 37px;
	margin: 30px 0px;
}
/*----------------------------HEADER---------------------------------*/
#header a {
	font-size: 22px;
}
/*----------------------------BANNER---------------------------------*/
#banner-text {
	max-width: 540px;
    margin-top: 60px;
}
/*----------------------------CONTENT--------------------------------*/
#content {
    margin: 30px 0;
}
.boxes {
	width: 28%;
	min-width: 220px;
	padding: 0% 2%;
	margin: 20px 0px;
}
/*----------------------------SECTIONS-------------------------------*/
/*ALLLL SET! Perfectly Desktop-fluid!*/
/*------------------------------FORM---------------------------------*/
/*ALLLL SET! Perfectly Desktop-fluid!*/
/*-----------------------------FOOTER--------------------------------*/
#social-media img{
    width: 60px;
}
#social-media li{
    padding-right: 10px;
}
}
/*--------------------------------------------------800 PIXELS------------------------------------------------------------*/
@media screen and (max-width: 800px) {
p {
    font-size: 25px;
}
.smolp {
    font-size: 21px;
}
h1 {
    font-size: 38px;
    margin-top: 0px;
}
h2 {
    font-size: 34px;
    /*font weight automatically bold*/
}
a {
	font-size: 21px;
}
.shopbutton, a.shopbutton {
	font-size: 25px;
	padding: 13px 37px 13px 37px;
	margin: 30px 0px;
}
.buttons, a.buttons {
	font-size: 25px;
	padding: 13px 37px 13px 37px;
	margin: 30px 0px;
}
/*----------------------------HEADER---------------------------------*/
#header a {
	font-size: 21px;
}
/*----------------------------BANNER---------------------------------*/
#banner {
	height: 455px;
}
#banner-text {
	max-width: 500px;
    margin-top: 68px;
}
/*----------------------------CONTENT--------------------------------*/
#content {
    margin: 55px 0;
}
.boxes {
	width: 80%;
	padding: 10px 10%;
	display: block;
}
/*----------------------------SECTIONS-------------------------------*/
/*ALLLL SET! Perfectly Desktop-fluid!*/
/*------------------------------FORM---------------------------------*/
/*ALLLL SET! Perfectly Desktop-fluid!*/
/*-----------------------------FOOTER--------------------------------*/
#footer {
	width: 90%;
	height: auto;
	padding: 0 5%;
	margin: auto;
}
/*--..........Left..........--*/
#leftfootersect {
	width: 100%;
	padding: 15px 0px;
	margin: 0px auto;
	float: none;
	text-align: center;
}
#footer-logo {
	min-width: 250px;
	width: 50%;
}
#social-media img{
	width: 65px;
}
#social-media li{
	display: inline-block; /*display: inline-block  must be used on li items*/
	padding: 1.6%;
}
/*--..........Right..........--*/
#rightfootersect {
	width: 70%;
	margin: auto;
	float: none;
}
#info, #shop, #help {
	display: inline-block;
	vertical-align: top;
	margin: 0% 3%;
}
}
/*--------------------------------------------------600 PIXELS------------------------------------------------------------*/
@media screen and (max-width: 600px) {
p {
    font-size: 24px;
    line-height: 1.6em;
}
.smolp {
    font-size: 20px;
    line-height: 1.6em;
}
h1 {
    font-size: 36px;
    line-height: 1.3em;
    margin: 0px 0px 20px 0px;
}
h2 {
    font-size: 32px;
    line-height: 1.3em;
    /*font weight automatically bold*/
}
a {
	font-size: 20px;
}
.shopbutton, a.shopbutton {
	font-weight: 700;
	font-size: 25px;
	background-color: #46451D;
	color: 	#FFFFFF;
	padding: 13px 37px 13px 37px;
	border: none;
	/*move button down or up with below stuff */
	display: inline-block;
	margin: 30px 0px;
}
.buttons, a.buttons {
	font-weight: 700;
	font-size: 25px;
	background-color: #798D48;
	color: #FFFFFF;
	padding: 13px 37px 13px 37px;
	border: none;
	
	display: inline-block;
	margin: 30px 0px;
}
input {
	display: block;
	
	margin-top: 5px;
	margin-bottom: 5px;
	padding: 14px;
	border-radius: 0;
	border-width: 1px;
	font-family: "Roboto", Arial, sans-serif;
	font-size: 100%;
	
	align-content: center;
	margin-right: auto;
	margin-left: auto;
}
/*----------------------------HEADER---------------------------------*/
#header {
	margin: 20px 2%;
}
#header ul {
	margin: 0;
}
#header li {
	display: none;
}
/*logo size*/
#top-logo {
	min-width: 220px;
	width: 55%;
	margin: 0;
	display: block;
	float: left;
}
/*hamburger icon*/
#toggle {
	display: block;
	float: right;
	width: 50px;
	padding: 4px 1% 0px 1%;
}
.clearfix {
	clear: both;
}
/*----------------------------BANNER---------------------------------*/
#banner {
	height: 610px;
	background-image: url("finalimages/banner-mobile.jpeg");
	margin-top: 0px;
	text-align: left;
}
#banner-text {
	max-width: 550px;
	min-width: 300px;
	width: 65%;
	height: auto;
	margin: 40px 0% auto 3%;
	display: inline-block; /*inline-block, my beloved*/
}
#banner p {
	width: 90%;
}
/*----------------------------CONTENT--------------------------------*/
#content {
    margin: 55px 0;
}
.boxes {
	width: 70%;
	padding: 10px 15%;
	display: block;
}
/*----------------------------SECTIONS-------------------------------*/
.sections {
	width: 100%;
	height: 499px;
	text-align: center;
	background: none;
	display: block;
}
/*Make color overlay part of the image*/
#section-one {
	background-image: url("finalimages/tutorials-mobile.jpeg");
}
#section-two {
	background-image: url("finalimages/author-mobile.jpeg");
}
.section-text {
	max-width: 350px;
	min-width: 200px;
	width: 100%;
	padding: 0;
	margin: 90px 0;
	display: inline-block;
}
/*------------------------------FORM---------------------------------*/
#form {
	max-width: 70%; 
	width: 100%;
	margin: 60px auto;
}
#form p{
	margin-bottom: 30px;	
}
#form .field {
	width: 66%; 
	height: 15px;
	margin: auto;
}
/*-----------------------------FOOTER--------------------------------*/	
#footer {
	width: 100%;
	height: auto;
	padding: 45px 0;
	margin: auto;
}
#rightfootersect ul{
	padding: 0;
	margin: 3%;
}
#rightfootersect li{
	padding-bottom: 15px;
}
#info, #shop, #help {
	display: inline-block;
	text-align: left;
	vertical-align: top;
	margin: 0% 3%;
}
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------MOBILE LAYOUT-----------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 400px) {
p {
    font-size: 21px;
    line-height: 1.6em;
}
.smolp {
    font-size: 18px;
    line-height: 1.6em;
}
h1 {
    font-size: 31px;
    line-height: 1.3em;
    margin: 0px 0px 20px 0px;
}
h2 {
    font-size: 27px;
    line-height: 1.3em;
    /*font weight automatically bold*/
}
a {
	font-size: 20px;
}
.shopbutton, a.shopbutton {
	font-weight: 700;
	font-size: 23px;
	background-color: #46451D;
	color: 	#FFFFFF;
	padding: 13px 37px 13px 37px;
	border: none;
	/*move button down or up with below stuff */
	display: inline-block;
	margin: 30px 0px;
}
.buttons, a.buttons {
	font-weight: 700;
	font-size: 23px;
	background-color: #798D48;
	color: #FFFFFF;
	padding: 13px 37px 13px 37px;
	border: none;
	
	display: inline-block;
	margin: 30px 0px;
}
/*----------------------------HEADER---------------------------------*/
/*----------------------------BANNER---------------------------------*/
#banner {
	height: 610px;
	background-image: url("finalimages/banner-mobile.jpeg");
	margin-top: 0px;
	text-align: left;
}
#banner-text {
	min-width: 320px;
	margin: 95px 0% auto 3%;
}
/*----------------------------SECTIONS-------------------------------*/
.section-text {
	max-width: 300px;
}
/*-----------------------------FOOTER--------------------------------*/	

}
/*-----------------------------------------Notes----------------------------------------------------*/
/*
Notes
- According to Google, leading (the space between text) should be 120-150% of text size, or 1.2em-1.5em. This varies for larger headings though, as demonstrated by this: "https://www.brand.pitt.edu/design/leading-tracking/leading"
- To bypass pixel issues becoming percentages:
{max-width: 1000px
width: 100%}
- What if you change the image size for sections when u make it fluid instead of changing the text?
-  Line 128: 28:00 of Week 9 recording, negative margin moves banner up when banner text is being mean
*/