/* =============================================================================
   Media Queries
   ========================================================================== */
@media only screen and (max-width: 1024px) {
    .wrapper {
        width: 100%;
        padding: 0 20px;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .about {
        margin: 0;
    }
}

@media only screen and (max-width: 480px) {

    /* speakers */
    .speakers-item {
        min-height: 70px;
        padding-left: 70px;
    }
    .speaker-photo {
        width: 50px;
        height: 50px;
    }
    .speech-title {
        padding-top: 0;
        font-size: 16px;
        margin-bottom: .3em;
    }
    .speech-time {
        font-size: 16px;
        padding: 0;
    }
    .speakers-bio {
        display: none;
    }
}

/* =============================================================================
   SPEAKER
   ========================================================================== */
.speaker-photo .photo {
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.07);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.speakers-item:hover .speaker-photo .photo {
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.3);
}
.speech-time {
    color: #fff;
    background: #2b2b2b;
    border-radius: 8px;
}

/* =============================================================================
   Media Queries
   ========================================================================== */
@media only screen and (max-width: 1024px) {
    .header {
        background-size: auto 100%;
    }
}
@media only screen and (max-width: 480px) {
    /* speakers */
    .speaker-photo .photo {
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.07);
    }
    .speech-title {
        font-weight: bolder;
    }
    .speech-time {
        color: #2b2b2b;
        background: transparent;
        font-weight: bolder;
    }
    .github-link {
        display: none;
    }
}

/* =============================================================================
   Custom Styles
   ========================================================================== */
#mainNav {
    display: block;
}

#navbarResponsive {
    float: right;
}

#mainNav .navbar-brand {
    color: #777;
    margin: 20px;
}

#mainNav .navbar-brand:hover {
    color: #000;
}

.navbar-nav li a{
    color: #777;
    padding: 20px
}

.navbar-nav li a:hover {
    color: #000;
}

header.masthead {
    background-image: url(/img/banner.png);
    /* banner.png est un logo sur fond transparent : sans ca, le gris #6c757d
       du theme Clean Blog remonte a travers et delave le logo */
    background-color: #fff;
    /* contain, pour ne pas zoomer/rogner le logo dans un header tres haut */
    background-size: contain;
}

/* Supprime le voile sombre du theme Clean Blog sur l'image de banniere */
header.masthead:before {
    display: none;
}

.intro-header.container {
    margin-right: auto;
    margin-left: auto;
}

div.container > div.lead {
    font-size: 21px;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.4;
    color: #404040;
}

.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}
