/*
* Customisation ontop of Skeleton V2.0.4
* Copyright 2016, Bill Rafferty
* www.hidden.com.au
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*/

/* Globals overwritting skeleton.css*/
body {
  font-family: "Oxygen", "Open Sans", sans-serif;
  background-image: url('../images/blueprintgrid.png');
}

code {
  font-family: "Inconsolata", Courier, MonoSpace;
}

a {
  color: #222; }
a:hover {
  color: #3d7bbf; }

h4 {
  text-align: center;
  color: #222;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #000;
  background-color: #fff;
  border-color: #888; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #3d7bbf;
  border-color: #888; }


input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  background-color: #fff;
  border: 1px solid #D1D1D1;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #3d7bbf;
  outline: 0; }

.required {
  color: red;
}

.hero {
  background-image: url('../images/blueprintgrid.png');
  background-color: #3d7bbf;
}

#logotype {
    position: relative;
    bottom: -7px;
    width: 100%;
}

.callout {
  margin-top: 5%;
  margin-bottom: 2%;
  text-align: center;
  font-size: 1.8rem;
}
.callout-copy {
  text-align: center;
}

.footer {
  background-color: #222;
  text-align: right;
  font-size: 1.2rem;
  color: white;
  text-shadow: 3px 2px rgba(0, 0, 0, 0.6);
}

.footer a {
    text-decoration: none;
    margin-right: .9rem;
    margin-left: .9rem;
    color: white;
}
.footer a:hover {
    text-decoration: underline;
    color: white;
}

.email {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 1.1rem;
}
.phone {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 1.1rem;
}
.linkedin {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 1.1rem;
}


/* Bigger than 550 */
@media (min-width: 550px) {
  .callout {
    font-size: 2rem;
  }
  .email {
    text-indent: -9999px;
    background: url(../images/email.svg);
    background-size: 50px 50px;
    width: 50px;
    height: 50px;
  }
  .phone {
    text-indent: -9999px;
    background: url(../images/cellphone.svg);
    background-size: 50px 50px;
    width: 50px;
    height: 50px;
  }
  .linkedin {
    text-indent: -9999px;
    background: url(../images/linkedin.svg);
    background-size: 50px 50px;
    width: 50px;
    height: 50px;
  }
  .footer {
    font-size: 1.5rem;
    white-space: nowrap;
  }
  h4 {
    font-size: 2.4rem;
  }
}


/* Bigger than 750 */
@media (min-width: 750px) {
  .callout {
    font-size: 2.6rem;
  }
  .email {
    background-size: 70px 70px;
    width: 70px;
    height: 70px;
  }
  .phone {
    background-size: 70px 70px;
    width: 70px;
    height: 70px;
  }
  .linkedin {
    background-size: 70px 70px;
    width: 70px;
    height: 70px;
  }
  h4 {
    font-size: 3.1rem;
  }
}

/* Bigger than 1000 */
@media (min-width: 1000px) {
  .callout {
    font-size: 3.5rem;
  }
  .email {
    background-size: 100px 100px;
    width: 100px;
    height: 100px;
  }
  .phone {
    background-size: 100px 100px;
    width: 100px;
    height: 100px;
  }
  .phone {
  background-size: 100px 100px;
  width: 100px;
  height: 100px;
  }
}


 /* CSS Code for view source button by CHRIS COYIER */
 #source-code { display: none; position: fixed; font-size: 1.7rem; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.8); font-family: "Inconsolata", Courier, MonoSpace; z-index: 10; text-align: left;}
 #source-code:target { display: block; }
 #source-code pre { padding: 20px; font-family: Inconsolata, Courier, MonoSpace; margin: 50px auto; background: rgba(0,0,0,0.8); color: #00CC00; width: 80%; height: 80%; overflow: auto; }
 #source-code pre a, #source-code pre a span { text-decoration: none; color: lightgreen; font-size: 1.7rem;}
 #x { position: absolute; top: 28px; left: 10%; margin-left: -42px;}

/*Navbar for site */
nav {
  position: fixed;
  clear: both;
  display: none;
}
.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
    text-transform: uppercase;
    background-color: #0099cc;
}

.navbar-custom li {
    list-style-type: none;
    text-decoration: none;
}

.navbar-custom .navbar-brand {
    font-weight: 700;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: #0099cc;
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-custom a {
    color: #ccc;
    text-decoration: none;
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover {
    outline: 0;
    color: rgba(255,255,255,.8);
    background-color: transparent;
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent;
}

.navbar-custom .nav li.active {
    outline: 0;
}

.navbar-custom .nav li.active a {
    background-color: rgba(255,255,255,.3);
}

.navbar-custom .nav li.active a:hover {
    color: #ccc;
}

@media(min-width:768px) {
    .navbar-custom {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .navbar-custom.top-nav-collapse {
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,.3);
        background: #808080;
    }
}
