/*
  Project: barnasepsey.com
  All rights reserved - Copyright 2016.
  
  Author: Barna Sepsey (Growthery)
  Email: barna@sepsey.com
  Year: 2016
*/

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: #2B2B2B;
    background-color: #ffffff;
    font-size: 18px;
    line-height: 28px;
}

/* 

display: flex;
justify-content: center;

        align-self: center;*/

/* DEFAULT */

a,input {
    -webkit-transition: all .1s ease-in-out;
       -moz-transition: all .1s ease-in-out;
         -o-transition: all .1s ease-in-out;
            transition: all .1s ease-in-out;
}

a { color: #2b2b2b; }
a:hover { color: #EA3556; }
a, a:link, a:hover, a:active, a:visited { text-decoration: none; }

h1,h2,h3,h4,h5,h6 { font-weight: 900; margin-bottom: 20px; }
h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child { margin-top: 0px; }
h1 { font-size: 38px; }
h2 { font-size: 28px; }
h3 { font-size: 20px; }

p { margin-bottom: 20px; }
p:last-child { margin-bottom: 0; }

small { font-size: 14px; }

/* BUTTON */
a.btn:active { box-shadow: none; }
a.btn {
    border: 0;
    border-radius: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #2b2b2b;
}
a.btn.btn-black { color: #2b2b2b; border-color: #2b2b2b; }
a.btn:after {
    content: " \2192";
    -webkit-transition: all .2s;
            transition: all .2s;
    display: inline-block;
    position: absolute;
    margin-left: 0px;
    opacity: 0;
}
a.btn:hover:after { margin-left: 15px; opacity: 1; }

header { margin-top: 60px; margin-bottom: 60px; }
header h1 {
    font-size: 36px;
    line-height: 128px;
    text-transform: uppercase;
}
header span.avatar {
    width: 128px;
    height: 128px;
    background: url("../img/barna-sepsey.jpg") no-repeat;
    display: inline-block;
    border-radius: 64px;
    margin: 0 40px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
    header span.avatar {
        width: 128px;
        height: 128px;
        background: url("../img/barna-sepsey@2x.jpg") no-repeat;
        background-size: 128px;
        display: inline-block;
        border-radius: 64px;
        margin: 0 40px;
    }
}
@media(min-width: 768px) {
    section.vcenter {
        display: flex;
        justify-content: center;
    }
    section.card-container, section.bio-container { align-self: center; }
}  
@media(max-width: 767px) {
    section.card-container, section.bio-container { margin-bottom: 20px; }
}
section.card-container {
    padding: 40px 50px;
    background: #F8F8F8;
}

section.feed, section.about, section.projects { margin-bottom: 60px; }

section.card-container h2 { line-height: 38px; }
section.card-container h2 span { display: block; }
section.bio-container {
    padding: 80px 50px;
    background: #FBC85E;
}
.job-history p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.job-history p.former { font-size: 18px; color: #9B9B9B; }
.job-history p:last-child { margin-bottom: 0; }

a.thepitch { color: #3498db; }
a.growthery { color: #000000; font-weight: 900; }

section.feed span small a { font-size: 16px; text-transform: uppercase; font-weight: 600; color: #9B9B9B; }
section.feed article {
    height: 70px;
    border-bottom: 1px solid #e8e8e8;
    -webkit-transition: all .2s ease-in-out;
       -moz-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}
section.feed article a {
    line-height: 70px;
    box-sizing: border-box;
    display: block;
}
@media(max-width: 991px) {
    section.feed article { height: 140px; }
}
section.feed article:last-child { border-bottom: 0; }
section.feed article:hover { background: #F8F8F8; }
section.feed article:hover a { color: #EA3556; }
section.feed article:after {
    content: " \2192";
    line-height: 70px;
    -webkit-transition: all .2s;
            transition: all .2s;
    display: inline-block;
    position: absolute;
    right: 55px;
    opacity: 0;
}
section.feed article:hover:after { opacity: 1; right: 40px; }
section.feed article span.medium, section.feed article span.date { color: #9B9B9B; }

footer { margin-top: 40px; margin-bottom: 40px; }
