/* CODE OWNERSHIP NICOLE LEGAULT */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1.4;
	font-family: monospace;
	height: 100%;
	font-size: 12px;
	color: #222222;
	width: 100%;
	overflow-x: hidden;
}

ol, ul {
	list-style: none;
}

html {
	background: #FFFFFF;
}

a:hover {
	cursor: pointer;
}


/* ----- START MOBILE FIRST STYLES -------- */


#wrapper {
	margin: 0 auto;
	width: 85%;
}

#home-wrapper, #about-wrapper, #portfolio-wrapper, #contact-wrapper {
	display: table;
	height: 100vh;
}

#home-wrapper {
	background-image: url('http://jacobkasza.com/img/heromobile-new.jpg');
	width: 100%;
	background-size: cover;
	background-position: center;
}

#home, #about, #portfolio, #contact {
	display: table-cell;
	vertical-align: middle;
}

#about h1, #portfolio h1, #contact h1 {
	margin-bottom: 20px;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 48px;
	letter-spacing: 1px;
}

.color {
	color: #61794C;
}

/*-- NAV -- */

nav {
	z-index: 999;
	position: fixed;
	top: 0;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	background: #000000;
}

nav img {
	width: 35px;
	display: inline;
	margin-top: 5px;
	margin-left: 8px;
}

nav img:hover {
	cursor: pointer;
}

#menu {
	background-image: url(http://jacobkasza.com/img/menu.png);
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: center;
	display: inline-block;
	cursor: pointer;
	width: 25px;
	overflow: hidden;
	position: fixed;
	right: 0;
	margin-right: 12px;
	margin-top: 12px;
	height: 23px;
}

.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  text-indent: 9999px;
}

ul.navmenu {
	display: none;
}

nav ul li {
	padding: 4px;
	text-align: right;
	margin-right: 10px;
}

nav ul li a {
	color: #ffffff;
	text-decoration: none;
	font-family: 'Bebas Neue', sans-serif;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 1px;
}

nav ul li a:hover {
	color: #61794C;
	transition: all 0.3s ease-in-out;
	 -webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	text-decoration: none;
}

li a.desktopnav, li a.frdesktop {
	display: none;
}

/*-- HOME PAGE -- */


img.down-arrow {
	display: block;
	width: 50px;
	position: absolute;
	bottom: 7%;
	left: 50%;
	margin-left: -25px;
}

a.arrow:hover {
	opacity: 0.5;s
	transition: all 0.3s ease-in-out;
	 -webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	text-decoration: none;
}



/*-- ABOUT PAGE -- */



#about p {
	margin: 10px 0;
}

#about .cv-link {
	margin: 45px auto 0 auto;
}


#about .cv-link a {
	background-color: black;
	color: white;
	padding: 16px;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
	font-family: 'Bebas Neue', sans-serif;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 1px;
}

#about .cv-link a:hover {
	color: black;
	background: #61794C;
	transition: all 0.3s ease-in-out;
	 -webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}

#about .column-right {
	display: none;
}

/*-- PORTFOLIO PAGE -- */


#portfolio .accordion {
  background-color: black;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  padding: 20px 20px 18px 20px;
  width: 100%;
  border: none;
  outline: none;
  font-family: 'Bebas Neue', sans-serif;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 1px;
  transition: 0.3s;
  -webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}

#portfolio .active {
  background-color: #61794C;
  color: black;
}

#portfolio .accordion:hover {
	background-color: #61794C;
	color: white;
}

#portfolio .panel {
  padding: 0 18px;
  background-color: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
   -webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
}

#portfolio .accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 12px;
  color: #ddd;
  float: right;
}

#portfolio .active:after, #modalFREE .active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

#portfolio .panel img {
	width: 100%;
	margin: 7px 0;
}


#portfolio .panel button img:hover {
	opacity: 0.5;
}

/*--- INNER ACCORDION ---*/


.inner-accordion {
  background-color: black;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  padding: 20px 20px 18px 20px;
  width: 100%;
  border: none;
  outline: none;
  font-family: 'Bebas Neue', sans-serif;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 1px;
  transition: 0.3s;
  -webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}

.inner-accordion:hover {
	background-color: #eee;
	 transition: 0.3s;
  -webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}

#modalFREE .active {
  background-color: #eee;
}

.inner-accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 12px;
  float: right;
}

.inner-panel {
	padding: 0 18px 0 14px;
  background-color: #fcfcfc;
  overflow: hidden;
  max-height: 0;
  transition: 0.3s ease-out;
   -webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
}

.pinner {
	padding: 10px 0;
}

span.block {
	padding: 5px;
}

p.divider {
	border-bottom: 1px solid #eee;
	width: 100%;
	padding-top: 15px;
	margin-bottom: 15px;
}

.inner-panel h2, h2.travel {
	color: #bbb;
	padding: 10px 0;
	font-weight: 100;
	text-transform: uppercase;
}

div.video {
	margin: 5px 0;
}

/*--- MODAL ---*/

.modal {
    display: none; 
    position: fixed; 
    z-index: 8888;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: #FCFCFC; /* Fallback color */
    background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fcfcfc;
    margin: 10vh auto; /* 15% from the top and centered */
    padding: 12px;
    width: 90%; /* Could be more or less, depending on screen size */
}

.modal-content .contact-form {
	width: 92%;
	margin: 0 auto;
}

.modal-content img {
	width: 100%;
	display: block;
	margin: 0 auto;
}

.modal-content img {
	padding: 5px 0;
}

img.hpimg {
	width: 35%;
	padding-top: 25px;
}

.modal-content h1 {
	margin-bottom: 20px;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 48px;
	letter-spacing: 1px;
}

.modal-content .ppsingle {
	padding: 20px 0;
}

.modal-content .ppone {
	padding-top: 20px;
}

.modal-content .ppother {
	padding: 20px 0;
}

.modal-content a {
	text-decoration: none;
	color: #222;
	font-weight: 600;
}

.modal-content a:hover {
	color: #bbb;
	 transition: 0.3s;
  -webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}

.modal-content .instawidget {
	padding: 20px 0;
}

.instawidget a img {
	width: 45px;
	padding-bottom: 20px;
}

/* The Close Button */
a.close {
    color: #ccc;
    float: right;
    font-size: 24px;
    margin-right: 10px;
    font-weight: 600;
}

a.close:hover, a.close:focus {
    color: #222222;
    text-decoration: none;
    cursor: pointer;
}

#portfolio button.button {
  background:none;
  padding: 3px 0;
  outline: none;
  border: none;
}

#portfolio button.button:hover {
  color:#a99567;
  cursor: pointer;
}

/*-- CONTACT PAGE -- */

#contact-wrapper {
	margin: 0 auto;
	width: 100%;
}

ul.social-media {
	padding-top: 22px;
	clear: both;
}

ul.social-media li {
	display: inline;
	margin-right: 10px;
}

ul.social-media li a img {
	width: 30px;
}

ul.social-media li a:hover, .instawidget a:hover {
	opacity: 0.5;
	transition: all 0.3s ease-in-out;
	 -webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	cursor: pointer;
}

/*-- FOOTER -- */

footer {
	width: 100%;
	background: black;
	display: block;
}

.foot-wrapper {
	padding: 10px 10px 20px 20px;
	text-align: left;
	display: inline-table;
	vertical-align: middle;
	width: 40%;
}

.foot-arrow {
	display: inline-block;
	float: right;
	margin-right: 12px;
	margin-top: 10px;
}

.foot-arrow img {
	width: 40px;
}

.foot-arrow a:hover {
	opacity: 0.5;
	transition: all 0.3s ease-in-out;
	 -webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	cursor: pointer;
}

footer .copyright {
	font-size: 13px;
	color: white;
}

footer .copyright a {
	color: white;
}

#contact a {
	color: black;
}

footer .copyright a:hover, #contact a:hover {
	opacity: 0.5;
	transition: all 0.3s ease-in-out;
	 -webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	cursor: pointer;
}



/* END MOBILE FIRST STYLES */



@media all and (min-width: 568px) {

	body {
		font-size: 16px;
	}

	img.down-arrow {
		width: 70px;
		bottom: 3%;
		margin-left: -35px;
	}

	#portfolio button.button {
		width: 49%;
		padding: 3px;
	}

	.modal-content .contact-form {
		width: 80%;
	}

	img.hpimg {
		width: 28%;
	}

	nav {
		padding: 10px 0;
	}

	.foot-wrapper {
		width: 60%;
	}

}

@media all and (min-width: 665px) {
	#wrapper {
		width: 75%;
	}

	#menu {
		height: 43px;
		margin-top: 5px;
	}

	.modal-content {
		width: 85%;
	}

	.modal-content .contact-form {
		width: 75%;
	}

	#portfolio .accordion {
		width: 80%;
	}

	#portfolio {
		text-align: center;
		margin: 0 auto;
	}

	#portfolio button.button {
		float:left;
		margin-left: 3px;
	}

	#portfolio .panel img {
		margin-top: 2.5px;
		margin-bottom: 2.5px;
	}


}

@media all and (min-width: 736px) {

	#menu {
		margin-top: 3px;
	}

	img.hpimg {
		width: 25%;
	}

	#portfolio button.button {
		margin-left: 5px;
	}

	.multiimg img {
		float:left;
		width: 47%;
		padding-right: 10px;
	}

	img.twoimg {
		display: inline-block;
		width: 48%;
		padding: 3px 5px 0 0;

	}


}

@media all and (min-width: 812px) {


	.modal-content .contact-form {
		width: 70%;
	}

	.modal-content {
		width: 75%;
	}

}

@media all and (min-width: 880px) {

	#about-wrapper, #contact-wrapper {
		margin: 0 auto;
		width: 80%;
	}

	#home-wrapper {
	background-image: url(http://jacobkasza.com/img/HEADER-new.jpg);
	}

}

@media all and (min-width: 1024px) {

	#menu, li a.item, li a.fr {
		display: none;
	}

	nav {
		padding: 0;
	}

	nav img {
		display: inline;
		margin: 10px 0 8px 10px;
	}

	nav ul.navmenu {
		display: inline !important;
		float: right;
		margin-top: 18px;
		margin-right: 30px;
	}

	nav ul li {
		margin: 0;
		display: inline;
	}

	li a.desktopnav, li a.frdesktop {
		display: inline;
	}

	li a.frdesktop {
		font-weight: 600;
		letter-spacing: 2px;
	}

	li a.frdesktop:hover {
		opacity: 0.5;
		color: #222;
	}

	#wrapper {
		width: 80%;
	}

	#about-wrapper, #contact-wrapper {
		width: 60%;
	}

	#portfolio-wrapper {
		width: 80%;
		margin: 0 auto;
	}

	#about p {
		margin: 15px 0;
	}

	#about .cv-link a {
	padding: 18px;
	font-size: 18px;
}

	#portfolio .accordion {
		width: 75%;
		font-size: 20px;
	}

	img.hpimg {
		padding: 35px 0 15px 0;
	}

	.modal-content h1 {
		padding: 35px 0 7px 0;
		font-size: 1.5em;
	}

	img.portraitpic {
		display: inline;
		float: left;
		width: 43%;
		margin-right: 20px;
	}


	input[type=text], input[type=email], textarea {
		margin-top: 20px;
		margin-bottom: 10px;
		font-size: 15px;
	}

	input[type=submit] {
		margin-top: 20px;
	}

	.foot-arrow {
		margin-right: 30px;
	}

}


@media all and (min-width: 1366px) {

	nav img {
		margin: 15px 0 13px 20px;
		width: 42px;
	}

	nav ul.navmenu {
		margin-top: 27px;
	}

	#home {
		padding-top: 10px;
	}

	#about h2 {
		margin-bottom: 30px;
	}

	#about-wrapper, #contact-wrapper {
		width: 50%;
	}

	#about .cv-link a {
		margin-top: 30px;
	}

	#portfolio-wrapper {
		width: 70%;
	}

	#portfolio .accordion {
		width: 70%;
		font-size: 22px;
	}

	img.hpimg {
		width: 20%;
		padding: 50px 0 20px 0;
	}

	.modal-content .contact-form {
		width: 60%;
	}

}






