/*
 *
 *	CSS Template for The Christian's Daily Challenge
 *
 *	  Author:	Ryan Hoshor <ryan@farmsoftstudios.com>
 *	    Date:	June 16th, 2020
 *	Revision:	v3.0
 *
 */


/* Global Styles */

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Alegreya", "Times New Roman", serif;
    font-size: 12pt;
}

h1, h2, h3, h4, h5 {
    font-family: "Playfair Display", "Helvetica Neue", sans-serif;
}

h1 {
  font-weight: 200;
  font-size: 2.5em;
  text-transform: capitalize;
}

strong {
    font-family: "Alegreya-Bold", serif;
}

em, .italic {
    font-family: "Alegraya-Italic", serif;
    font-style: italic;
}

.text-vertical-center {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.text-vertical-center h1 {
    margin: 0;
    padding: 0;
    font-size: 4.5em;
    font-weight: 100;
}

/* Custom Button Styles */
.btn {
    font-family: "Helvetica Neue", "Helvetica", sans-serif;
}

.btn-dark, .btn-light {
  border-radius: 25px;
}

.btn-dark {
    color: #fff;
    background-color: rgba(0,0,0,0.4);
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
    color: #fff;
    background-color: rgba(0,0,0,0.7);
}

.btn-light {
    color: #333;
    background-color: rgb(255,255,255);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
    color: #333;
    background-color: rgba(255,255,255,0.8);
}

.btn-dark.btn-menu, .btn-light.btn-menu {
  border-radius: 5px;
}

/* Custom Horizontal Rule */
hr.small {
    max-width: 100px;
}

/* Side Menu */
#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    right: 0;
    width: 250px;
    height: 100%;
    margin-right: -250px;
    overflow-y: auto;
    background: #222;
    transition: all 0.4s ease 0s;
}

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #999;
    font-size: 16px;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    height: 55px;
    line-height: 55px;
}

.sidebar-nav > .sidebar-brand a {
    font-size: 18px;
    color: #999;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}

#menu-toggle {
    z-index: 1;
    position: fixed;
    top: 0;
    right: 0;
}

#sidebar-wrapper.active {
    right: 250px;
    width: 250px;
    transition: all 0.4s ease 0s;
}

.toggle {
    padding: 10px 13px;
    margin: 5px 5px 0 0;
}

.center {
    text-align: center;
}

/* Header */
.header {
    display: table;
    position: relative;
    width: 100%;
    height: 85%;
    background: url(../img/bg.jpg) no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.header .btn {
    margin-top: 25px;
}

.header-subpage {
  height: 25%;
}

/* About */
.about {
    padding: 50px 0;
}

/* Devotional */
.devotional {
    padding: 50px 0;
}

/* Callout */
.callout {
    display: table;
    width: 100%;
    height: 400px;
    color: #fff;
    background: url(../img/bg.jpg) no-repeat center center scroll;
    background-size: cover;
}

strong.name {
  font-weight: inherit;
}

/* Portfolio */
.portfolio {
    padding: 50px 0;
}

.portfolio-item {
    margin-bottom: 30px;
}

.img-portfolio {
    margin: 0 auto;
}

.img-portfolio:hover {
    opacity: 0.8;
}

/* Call to Action */
.call-to-action {
    font-family: "Helvetica Neue", "Helvetica", sans-serif;
    padding: 50px 0;
}

.call-to-action.btn {
    margin: 10px;
}

/* Forms */
form {
    font-family: "Helvetica Neue", "Helvetica", sans-serif;
}

input[type=text], input[type=email], textarea {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-clip: padding-box;
}

/* Footer */
footer {
    font-family: "Helvetica Neue", "Helvetica", sans-serif;
    padding: 50px 0;
    background: url(../img/bg_btm_blur.jpg) no-repeat center center scroll;
    background-size: cover;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: none;
    color: #dedede;
}

.footer-nav {
    list-style: none;
    padding:0;
    margin: 0;
}

.footer-nav li a {
    padding: 5px 15px;
    text-align: left;
}

@media(max-width:768px) {
    .text-vertical-center h1 {
        font-size: 2.5em;
    }

    .footer-nav {
        text-align: center;
    }

    .footer-nav li a {
        font-size: 10pt;
    }
}

/* Fonts */
@font-face {
    font-family: 'Alegreya';
    src: url('/fonts/Alegreya/Alegreya-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Alegreya-Bold';
    src: url('/fonts/Alegreya/Alegreya-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Alegreya-Italic';
    src: url('/fonts/Alegreya/Alegreya-Italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/Playfair_Display/PlayfairDisplay-Regular.ttf') format('truetype');
}