/*
Theme Name: Development Template
Theme URI: https://maguspressworks.com
Author: Magus Pressworks
Author URI: https://maguspressworks.com
Description: A custom theme built by Magus Pressworks, for Magus Pressworks projects.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maguspressworks.com
*/

/* COLORS */

:root {
  --color1:#000000;
  --color2:#ffffff;
  --color3:#DAC2A8;
  --color4:#471E13;
  --color5:#646464;
  --color6:#787878;
}

/* Reset */

*{
margin: 0px;
padding: 0px;
border: 0px;
font-family: inherit;
font-size: inherit;
line-height: inherit;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}

*:before,
*:after{
box-sizing: inherit;
}

html, body,h1, h2, h3, h4, h5, h6,a, p, span,em, small, strong,sub, sup,mark, del, ins, strike,abbr, dfn,blockquote, q, cite,code, pre,ol, ul, li, dl, dt, dd,div, section, article,main, aside, nav,header, hgroup, footer,img, figure, figcaption,address, time,audio, video,canvas, iframe,details, summary,fieldset, form, label, legend,table, caption,tbody, tfoot, thead,tr, th, td{
margin: 0;
padding: 0;
border: 0;
}

a,
a:visited{
color: inherit;
}

article,
aside,
footer,
header,
nav,
section,
main{
display: block;
}

img{max-width:100%;}

/* Top-level styles */

*{transition: all 0.2s ease;}

html{
  scroll-behavior: smooth;
  font:18px/1.4em Segoe UI, sans-serif;
}
body{
	background:var(--color3);
}
h1{font-size:2rem;}
h2{font-size:1.6rem;}
h3{font-size:1.2rem;}
h1,h2,h3{
  line-height:1em;
  margin-bottom:1rem;
  font-weight:normal;
}
p{margin-bottom:1rem;}
li{list-style-position: inside;}

/* Structure elements */

.wrapper{
  width:40%;
  margin:0 auto 0 auto;
}
.flexwrap{display:flex;}

/* Above Header */

.above-header{

}
.above-header .widget{
    flex:1;
    line-height:2em;
    font-weight:200;
    text-transform:uppercase;
}
.above-header .widget:nth-of-type(2){
    text-align:right;
}
.above-header p{
    margin:0;
    padding:0;
}
.above-header a{
    color:var(--color2);
    text-decoration:none;
}

/* Header */
header{
    background:url(https://valleydevelopmentcorp.com/wp-content/uploads/2026/04/header-bg.jpg) top center;
}
.header-left{
  flex:2;
}
.header-right{
    flex:1;
	background: #A57052;
	background: linear-gradient(0deg, rgba(165, 112, 82, 1) 0%, rgba(74, 52, 38, 1) 100%);
	height:5rem;
	text-align:center;
	color:var(--color2);
	font-size:.9rem;
	line-height:1em;
}
.header-right h2{
	font-size:1.4rem;
	padding-top:1rem;
}
.site-title{
    font-size: 2em;
    font-weight: bold;
}

.site-description {
    font-size: 1em;
    color: #666;
}

/* Navigation */
nav{
    width:100%;
	height:50px;
	background:url(https://valleydevelopmentcorp.com/wp-content/uploads/2026/04/nav-bg.png) top center repeat-x;
}

.menu{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    position:relative;
}

.menu .menu-item{
  margin:0 2rem 0 0;
}
.menu .menu-item:last-child{
  margin:0;
}

.menu .menu-item a{
    display:block;
    text-decoration:none;
    text-transform:capitalize;
    font-size:1rem;
    font-weight:400;
    line-height:50px;
    padding:0 2rem 0 2rem;
	text-align:center;
	color:var(--color2);
}
.menu .menu-item:hover a{
  background:var(--color4);
  color:var(--color2);
}

/*  Nav Mobile */

.mobile-menu-icon{
  display:none;
  width:100vw;
  background: var(--color2)!important;
  color:var(--color4);
  padding:1rem;
  position:fixed;
  bottom:0;
}
.mobile-menu-icon .line{
  width:25px;
  height:5px;
  background-color:var(--color4);
  margin:5px auto 5px auto;
}
.close{
  display:none;
  width: 32px;
  height: 32px;
  text-align:center;
  margin:2px auto 2px auto;
}
.close:hover{opacity: 1;}
.close:before, .close:after{
  position:absolute;
  text-align:center;
  content: ' ';
  height: 32px;
  width: 2px;
  background-color:var(--color3);
}
.close:before{transform: rotate(45deg);}
.close:after{transform: rotate(-45deg);}

/* Feature */

.feature{
	background:var(--color4);
}
.feature .widget{
  text-align:center;
}

/* Above Content */

.above-content{}
.above-content .widget{
  width:100%;
  text-align:center;
  padding:5rem 0 5rem 0;
  margin:0 0 4rem 0;
}

/* Columns: Upper */

.columns-upper .flexwrap{
    justify-content:space-between;
}

.columns-upper .widget{
    flex:1;
    background:var(--color2);
    color:var(--color4);
    padding:1.5rem 1.5rem 1.5rem 3rem;
    margin:5rem .5rem 5rem .5rem;
    min-height:10rem;
    font-weight:200;
    font-size:2rem;
    line-height:1.2em;
}
.columns-upper .widget h2{
    font-size:2rem;
}
.columns-upper .more-link{
    text-decoration:none;
    font-size:1.5rem;
    font-weight:400;
    color:var(--color4);
}
.columns-upper .more-link:hover{
    color:var(--color3);
}

/* Content */

main{
  padding:2rem 0 2rem 0;
}

.home main{
}
main article{
	font-size: 1rem;
    line-height: 1.6em;
    font-weight: 300;
    flex:3;
}
main article .title{
    font-size:1.4rem;
}
main article .title span{
    font-size:2rem;
    font-weight:300;
}

/* Sidebar / Sidebar Widgets */

aside{
  flex:1;
	padding:1rem;
	padding-top:0rem;
}

.sidebutton{
	display:block;
	width:100%;
	margin:1rem 0 1rem 0;
	padding:1rem 0 1rem 0;
	color:var(--color4);
	font-size:1rem;
	font-weight:400;
	text-decoration:none;
	text-align:center;
	background: #F2D59E;
	background: linear-gradient(0deg, rgba(242, 213, 158, 1) 0%, rgba(242, 181, 69, 1) 100%);
}

/* Below Content */

.below-content{}
.below-content .widget{
  width:100%;
  text-align:center;
  padding:5rem 0 5rem 0;
  margin:0 0 4rem 0;
}

/* Columns: Lower */

.columns-lower .flexwrap{
    justify-content:space-between;
}

.columns-lower .widget{
    flex:1;
    background:var(--color2);
    color:var(--color4);
    padding:1.5rem 1.5rem 1.5rem 3rem;
    margin:5rem .5rem 5rem .5rem;
    min-height:10rem;
    font-weight:200;
    font-size:2rem;
    line-height:1.2em;
}
.columns-lower .widget h2{
    font-size:2rem;
}
.columns-lower .more-link{
    text-decoration:none;
    font-size:1.5rem;
    font-weight:400;
    color:var(--color4);
}
.columns-lower .more-link:hover{
    color:var(--color3);
}

/* Footer */

footer .flexwrap{
    justify-content:space-between;
}

footer .widget{
    flex:1;
    background:var(--color2);
    color:var(--color4);
    padding:1.5rem 1.5rem 1.5rem 3rem;
    margin:5rem .5rem 5rem .5rem;
    min-height:10rem;
    font-weight:200;
    font-size:2rem;
    line-height:1.2em;
}
footer .widget h2{
    font-size:2rem;
}
footer .more-link{
    text-decoration:none;
    font-size:1.5rem;
    font-weight:400;
    color:var(--color4);
}
footer .more-link:hover{
    color:var(--color3);
}

/* Credit */

.credit{
    text-align:center;
    font-weight:200;
    line-height:2em;
	border-top:2px var(--color4) solid;
}

/* Global Extras */

.alignleft{
    float:left;
    margin:1rem 1rem 1rem 0;
}
.aligncenter{
    margin:1rem auto 1rem auto;
}
.alignright{
    float:right;
    margin:1rem 0rem 1rem 1rem;
}
.more-link{
    text-decoration:none;
    color:var(--color2);

}
.more-link:hover{
    color:var(--color4);
}
.clearfix{
  display:block;
  clear:both;
  width:100%;
  margin:0;
  padding:0;
}

.testimonials{
	background:#CCAD8C;
	padding:1rem;
	margin-bottom:1rem;
}

/* Regular Page Template */

/* Landing Page Template */

/* Page-Specific */

/* Media Queries / Responsive */

@media (min-width:2500px){

}
@media (max-width:1920px){
	.wrapper{width:60%;}
}
@media (max-width:1800px){
  html{font-size:16px;}
}
@media (max-width:1600px){
  html{font-size:14px;}
}
@media (max-width:1300px){
  html{font-size:12px;}
}
@media (max-width:1400px){

}

/* PHONE LAYOUT */

@media (max-width:1200px){

html{font-size:16px;}
body{overflow-x:hidden;padding-bottom:4rem;
  background-size: cover;
  position:relative;
}
.wrapper{
  width:100%;
  padding:1rem!important;
}
.flexwrap{
  flex-direction:column;
}
article{padding:1rem;}
.widget{
  margin:1rem 0 1rem 0!important;
}

/* HEADER / LOGO */

header .flexwrap{
  flex-direction:column;
}
header .logo{
  width:100%;
  margin:2rem 0 2rem 0;
}
header h1{margin:0;}

/* FEATURE AREA */

/* UPPER COLUMNS */

/* ABOVE CONTENT AREA */

/* BELOW CONTENT AREA */

/* FOOTER */

/* EXTRAS */

.alignleft,
.aligncenter,
.alignright{
  float:none;
  display:block;
  width:100%;
  margin:0;
  padding:1rem;
}

/* NAVIGATION */

nav{height:auto;}
nav .menu{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  background:var(--color2);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  transform:translateY(-100%);
  opacity:0;
  padding:1ch;
  z-index:9999;
}
nav .menu li{width:100%;margin:0.5ch 0 0.5ch 0;}
nav .menu li a{font-size:1rem;color:var(--color4);text-align:center;font-size:1.4rem;line-height:1.6em;}
nav .menu li:hover a{background:var(--color2);color:var(--color4);}
nav .menu li:hover .sub-menu, nav .menu li:active .sub-menu{width:100%!important;}
nav .menu li:hover a, nav .menu li:active a, nav .menu li.current-menu-item a{color:var(--color3);}
.mobile-menu-icon{display:block;z-index:100;border-top:2px var(--color3) solid;}
.nav-active{transform:translateY(0%)!important;opacity:1!important;position:fixed!important;z-index:100000;}
nav ul li a{}
nav ul li:hover .sub-menu, nav ul li:active .sub-menu{
  position:static;
  display:block;
}
nav ul li:hover .sub-menu li, nav ul li:active .sub-menu li{
  background:;
  line-height:1.6rem;
  width:100%;
  margin:0;
}
.menu-active .line{display:none;}
.menu-active .close{display:block;}
.menu .sub-menu{
  flex-direction: column;
  transform: none;
}
.menu .menu-item .sub-menu .menu-item a{
  background:none;
}
.menu .menu-item:hover a{
  color:var(--color4);
}

}