/*
Theme Name: Parabola Child
Template: parabola
Description: Child theme for Parabola with custom header background and search settings.
Author: BigNY.com
Version: 1.0.0
*/

/* Header background image and title color */
.site-header {
    background: url('super.jpg') center center/cover no-repeat;
    min-height: 200px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 2em;
}
.site-title,
.site-title a,
.site-title span,
.site-title h1,
.site-title h2 {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(30,30,30,0.22);
}
.site-description {
    color: #fff !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.16);
}

/* Read more button style */
.read-more {
    display: inline-block;
    color: #2d6dad;
    background: #fffbe8;
    border-radius: 3px;
    padding: 0.2em 0.9em;
    margin-top: 0.3em;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #2d6dad;
    transition: background 0.18s, color 0.18s;
}
.read-more:hover {
    background: #2d6dad;
    color: #fff;
}

/* Custom site footer */
.site-footer {
    background: #262b38;
    color: #fff;
    padding: 2.2em 0 1.4em 0;
    text-align: center;
    font-size: 1.04em;
    border-top: 4px solid #ff9200;
    box-shadow: 0 -2px 14px rgba(70,70,100,0.08);
    margin-top: 2em;
}
.site-footer a {
    color: #ff9200;
    text-decoration: underline;
    transition: color 0.17s;
}
.site-footer a:hover {
    color: #2d6dad;
    text-decoration: none;
}
