/*
* Theme Name: Emmet Child
* Theme URI: http://www.getmotopress.com/themes/
* Author: MotoPress
* Author URI: http://www.getmotopress.com/
* Description: Clean and responsive WordPress theme with a professional design created for corporate and portfolio websites. Emmet comes packaged with page builder and fully integrated with WordPress Customizer. Theme works perfect with major WordPress plugins like WooCommerce, bbPress, BuddyPress and many others. After installing the theme navigate to Appearance > Theme Wizard.
* Template: emmet
* Version: 1.0.0
*/
/*
*  http://stephen.io/mediaqueries/#iPhone 
*  http://stackoverflow.com/questions/6370690/media-queries-how-to-target-desktop-tablet-and-mobile
*/
@media (min-width:320px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */ }
@media (min-width:480px)  { /* smartphones, Android phones, landscape iPhone */ }
@media (min-width:600px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ }
@media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ }
@media (min-width:1281px) { /* hi-res laptops and desktops */ }

/* spacer - home page only */
.spacer-container { 
	height: 50vh; 
}
/*desktop and default - home page only*/
#background_wrap {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
	background-color: rgba(49, 22, 1, 1);
    background-size: 100%;
    background-attachment: fixed;
}
/*desktop narrow - home page only*/
#background_wrap {
    background-image: url('../../uploads/Ledges_Fall-2012-037-Tall-768x1192.jpg');
}
.site-title {
    font-size: 28px;
}  
/*desktop standard - home page only*/
@media only screen 
and (min-width : 768px) {
  #background_wrap {
    background-image: url('../../uploads/Ledges_Fall-2012-037-768x1024.jpg');
  }
  .site-title {
    font-size: 36px;
  }  
}
/*desktop wide - home page only*/
@media only screen 
and (min-width : 1024px) {
  #background_wrap {
    background-image: url('../../uploads/2017/04/Ledges_Fall-2012-037-cropped.jpg');
  }
  .site-title {
    font-size: 36px;
  }  
}

/*phones in portrait - home page only*/
@media only screen 
and (min-device-width : 360px) 
and (max-device-width : 736px) 
and (orientation : portrait) {
  .spacer-container { 
	height: 25vh; 
  }
  #background_wrap {
    background-image: url('../../uploads/Ledges_Fall-2012-037-Tall-768x1192.jpg');
  }
  .site-title {
    font-size: 28px;
  }  
}
/*phones in landscape - home page only*/
@media only screen 
and (min-device-width : 414px) 
and (max-device-width : 736px) 
and (orientation : landscape) {
  .spacer-container { 
	display: none;
  }
  #background_wrap {
    background-image: url('../../uploads/2017/04/Ledges_Fall-2012-037-cropped.jpg');
  }
  .big-section .section-content {
    padding: 12px 0 2px;
  }
  .install-section .section-content {
    padding: 15px 0 15px;
  }
}
	  
/*iPad in portrait - home page only*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
  #background_wrap {
    background-image: url('../../uploads/Ledges_Fall-2012-037-768x1024.jpg');
  }
}