/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* General Styles */
 
  html {
	  font-size: 1rem;
}
 
  body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    text-align: left;
    color: #e2e3ed;
    margin: 0;
}
 
  ul, 
  ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
 
  a {
	  color: #e2e3ed;
    text-decoration: none;
}

  h1 {
    font-size: 36px;
    line-height: 43px;
    font-weight: 500;
}

  h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.875em;
}
 
  h3, 
  h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125em;
    margin: 20px 0;
    font-weight: 500;
}
 
  p {
	  font-size: .875em;
    line-height: 1.285;
}
 
  address {
    font-style: normal;
}
  .content-wrapper {
    width: 90%;
    margin: 50px 0;
}
    
/*-------------Base Header - Footer Styles -----------------*/
  header {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background-color: #202322;
}

  header figure {
    width: 60%;
    margin: 0;
}

  header img {
    width: 100%;
}
   
  header nav{
    width: 60%;
    font-size: 1.125em;
    font-weight: 700;
    text-transform: uppercase;
}
    
  .header-divider{
    width: 100%;
    height: 1px;
    margin: 10px 0 20px 0;
    background-color: #3a3a3a;
}
    
  header .content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    margin: 0;
}

  header nav ul {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #202322;
}

  footer .content-wrapper{
    width: 55%;
}

  footer .social-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

  footer .social-icons p{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #527158;
}
  
  footer .contact {
    margin-bottom: 50px;
}

  footer p {
    margin: 0;
} 

  footer .copyright {
    margin: 20px 0;
}
/*--------Hero Area and Aside---------*/
  .hero-area {
    display: flex;
    justify-content: center;
    background: url('../img/unplugged-retreat.jpg'); 
    background-size: cover;
    background-position: center; 
    min-height: 500px;
}

  .hero-area h1 {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    
}

  aside {
    display: flex;
    justify-content: center;
    background-color: #527158;
}
   
  input[type=text] {
    box-sizing: border-box;
    width: 100%;
    color: #2a423a;
    font-style: italic;
    padding: 1em;
    margin-bottom: 20px;
}
   
  #download-btn {
    width: 100%;
    padding: 20px 0;
    margin-top: 20px;
    background-color: #2a423a;
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 1.125em;
    color: #e2e3ed;
    border: none;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 9999;
    pointer-events: auto;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#download-btn:hover {
  background-color: #1b4f72;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: #2a432a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 80%;
}

.hidden {
  display: none;
}

/*---------Features Area-----------*/
  .features {
    display: flex;
    justify-content: center;
    background: url('../img/unplugged-retreat-features.jpg') center no-repeat;
    background-size: cover;
}

  .features h2  {
    margin-bottom: 60px;
    width: 95%;
}

  .features article {
    width: 62%;
    margin: 30px 0;
}

  .features .features-items {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;   
}

  .features p {
    margin: 0;
    text-align: center;
    padding: 0 0 30px 0;
  }

.features i {
	font-size: 3.75em;
  margin-bottom: 10px;
}

  .features .social-icons {
    font-size: 21px;
}

  .reviews {
    display: flex;
    justify-content: center;
    background-color: #2a423a;
}

  .reviews h2 {
    margin-bottom: 40px;
    line-height: 1;
}

  .reviews h3 {
    width: 55%;
    margin: 20px 0;
}

  .reviews figure {
    text-align: center;
    margin: 0;
}

  .reviews img {
    width: 100%;
}


/*-----------About Page---------*/
  
  .contact-content p {
    margin: 0;
}
  
  .mission {
    display: flex;
    justify-content: center;
    background-color: #527158;
}

  .contact-section {
    display: flex;
    justify-content: center;
    background-color: #2a423a;
}

.map-container {
  position: relative;
  padding-bottom: 125%;
  height: 0;
  width: 100%;
  overflow: hidden;
 }

 .map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 }
  /*------------Faq Page-----------*/
  .faq {
    display: flex;
    justify-content: center;
    background-color: #527158;
}

  .faq h2 {
    margin-bottom: 40px;
    line-height: 1;
}

  .faq-content {
    margin-bottom: 50px; 
}

  .faq-content h4 {
    line-height: 1.333em;
}

  .faq .content-wrapper {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    align-items: flex-start;
    margin: 50px 0 0 0;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

  @media only screen and (min-width: 768px) {
    /*tablet styles here*/
    .content-wrapper {
      max-width: 640px;
      margin: 100px 0;
    }  

    h1 {
      font-size: 3em;
      line-height: 3rem;
    }

    h2 {
      font-size: 2.25em;
      width: 83%;
      font-weight: 500;

    }

    h3 {
      font-size: 1.5em;
      line-height: 1.25;
    }

    .footer h4 {
      font-size: 1.5em;
    }

    footer p {
      line-height: 1.285;
    }

    .faq h4, .faq p {
      font-size: .875em;
      line-height: 1.125;
    }
  
    footer h4 {
      font-size: 1.5em;
      margin-bottom: 40px;
    }

  
    /*--Header--*/

    header .content-wrapper {
      width: 100%;
      justify-content: space-between;
  }

    header {
      padding: 33px 0;
  }

    .header-divider { 
      display: none;
  }

    header nav {
      width: 20%;
  }

    header nav ul {
      justify-content: space-between;
  }

  header figure {
    width: 30%;
}

  header img {
    width: 100%;
}

  .hero-area  {
    min-height: 600px;
}

  .hero-area h1 {
    margin: 0;
    line-height: 1;
    font-size: 3em;
}
  aside .content-wrapper {
    margin: 50px 0;
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
}

  aside .content-wrapper .form-description,
  aside .content-wrapper .form {
    width: 40%;
    margin: 0;
}

  input[type=button] {
    margin-top: 0;
}

  .features article {
    display: flex;
    align-items: center;
    flex-flow: column wrap-reverse;
    flex-basis: 50%;
}

  .features h2 {
    width: 98%;
    padding-bottom: 20px;
}

  .features .features-item-description {
    width: 50%;
}

  .reviews article {
    display: flex;
    justify-content: space-between;
}

  .reviews h2 {
    width: 85%;
}

  .reviews h3 {
    width: 75%;
    margin: 0;
}

  .reviews article figure, .reviews article div {
  width: 49%;
}


  .reviews img {
    width: 100%;
  }

  footer .content-wrapper {
    width: 65%;
}

  footer .social-icons {
  width: 12.5em;
  justify-content: space-between;
}

  footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

  footer .contact{
    margin-bottom: 0;
}

  footer .copyright {
    width: 100%;
}
/*--------About Page-------*/
    .mission-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding-top: 20px;
    }
    .mission-content p {
      width: 43%;
    }
    .content-section .content-wrapper h2 {
      width: 80%;
      
    }
    .contact-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .contact-content h4 {
      font-size: 1.5em;
    }

    .map-container {
      position: relative;
      padding-bottom: 45%;
      height: 0;
      width: 100%;
      overflow: hidden;
     }

    .map-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
     }

    /*-----FAQ Page------*/
    .faq .content-wrapper{
      justify-content: space-between;
    }
    .faq-content {
     flex-basis: 45%;
    }
    .faq h2 {
      width: 100%;
    }
  }

  @media only screen and (min-width: 1200px) {
    /*desktop styles here*/
    .content-wrapper {
      max-width: 960px;
    }

    header {
      padding: 15px 0;
    }

    header nav {
      width: 20%;
    }

    h1 {
      font-size: 70px;
    }
    
    h2 {
      font-size: 36px;
    }

    h3, h4 {
      font-size: 30px;
    }

    p {
      font-size: 18px;
      line-height: 24px;
    }

    .hero-area h1 {
      font-size: 3.75em;
      width: 80%;
}

    aside .content-wrapper {
      justify-content: space-around;
    }

    aside .content-wrapper .form-description,
    aside .content-wrapper .form {
    width: 30%;
  }
    .features h2 {
     width: 95%;
   }

   .features article {
    flex-basis: 33%;
   }

   .reviews article div {
    flex-basis: 42%;
   }

   .reviews h2 {
    width: 75%;
    padding-bottom: 50px;
   }

   img {
    width: 100%;
   }

   footer h4 {
    font-size: 1.875em;
  }
    /*-----------Mission----------*/
   .mission h2, .contact-section .content-wrapper h2 {
    width: 95%;
    font-size: 3em;
   }

   .mission h2 {
    font-size: 48px;
   }

   .contact-content h4 {
    font-size: 1.875em;
   }

   /*---------About----------*/
   .about h2 {
    font-size: 48px;
   }

   .map-container {
    position: relative;
    padding-bottom: 50%;
    height: 0;
    width: 100%;
    overflow: hidden;
   }

   .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   }

   /*---------FAQ----------*/
   .faq h2 {
    width: 100%;
    font-size: 48px;
   }

   .faq h4 {
    font-size: 18px;
    line-height: 18px;
   }

   .faq p {
    font-size: 18px;
    line-height: 18px;
   }
  }
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}