/* ==========================================
PARADISUL VERDE
bbPress Overrides
Version: bbPress 2.6.14
========================================== */

:root {
    --pv-green: #1E5449;
    --pv-beige: #E8CBAB;
    --pv-gold: #C39E76;
    --pv-cream: #FFEEDB;
    --pv-light: #F6F6F6;
}

/* ==========================================
GENERAL
========================================== */

#bbpress-forums {

    font-size: 16px;

    color: #333;
}

#bbpress-forums * {

    box-sizing: border-box;
}

/* ==========================================
FORUM WRAPPER
========================================== */

#bbpress-forums {

    background: transparent;
}

/* ==========================================
MAIN CONTAINERS
========================================== */

.bbp-forums,
.bbp-topics,
.bbp-replies {

    border: none !important;

    background: transparent;
}

/* ==========================================
HEADERS
========================================== */

#bbpress-forums ul.bbp-forums,
#bbpress-forums ul.bbp-topics,
#bbpress-forums ul.bbp-replies {

    border: none;
}

#bbpress-forums li.bbp-header {

    background: var(--pv-green);

    color: white;

    border-radius: 22px;

    padding: 18px 24px;

    margin-bottom: 18px;

    border: none;
}

#bbpress-forums li.bbp-header a {

    color: white;
}

/* ==========================================
FORUM / TOPIC ROWS
========================================== */

#bbpress-forums li.bbp-body ul.forum,
#bbpress-forums li.bbp-body ul.topic {

    background: white;

    border-radius: 24px;

    margin-bottom: 20px;

    padding: 24px;

    box-shadow: 0 10px 28px rgba(0,0,0,0.05);

    border: 1px solid rgba(0,0,0,0.04);

    transition: all 0.3s ease;
}

#bbpress-forums li.bbp-body ul.forum:hover,
#bbpress-forums li.bbp-body ul.topic:hover {

    transform: translateY(-4px);

    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

/* ==========================================
TOPIC TITLES
========================================== */

.bbp-topic-title a,
.bbp-forum-title {

    color: var(--pv-green);

    font-size: 22px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.bbp-topic-title a:hover,
.bbp-forum-title:hover {

    color: var(--pv-gold);
}

/* ==========================================
META
========================================== */

.bbp-topic-meta,
.bbp-forum-content,
.bbp-topic-freshness,
.bbp-author-role {

    color: #777;

    line-height: 1.7;

    font-size: 14px;
}

/* ==========================================
REPLIES
========================================== */

#bbpress-forums div.reply {

    background: white;

    border-radius: 24px;

    padding: 28px;

    margin-bottom: 24px;

    box-shadow: 0 10px 28px rgba(0,0,0,0.05);

    border: 1px solid rgba(0,0,0,0.04);
}

/* ==========================================
REPLY AUTHOR
========================================== */

.bbp-reply-author {

    margin-bottom: 20px;
}

.bbp-reply-author img.avatar {

    border-radius: 50%;
}

/* ==========================================
CONTENT
========================================== */

.bbp-reply-content,
.bbp-topic-content {

    line-height: 1.9;

    color: #444;
}

/* ==========================================
FORMS
========================================== */

#bbpress-forums fieldset.bbp-form {

    background: white;

    border-radius: 28px;

    padding: 35px;

    border: 1px solid rgba(0,0,0,0.05);

    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

#bbpress-forums fieldset.bbp-form legend {

    color: var(--pv-green);

    font-size: 26px;

    font-weight: 700;

    padding: 0 10px;
}

/* ==========================================
INPUTS
========================================== */

#bbpress-forums input[type="text"],
#bbpress-forums input[type="password"],
#bbpress-forums input[type="email"],
#bbpress-forums select,
#bbpress-forums textarea {

    width: 100%;

    background: var(--pv-light);

    border: 1px solid rgba(0,0,0,0.08);

    border-radius: 16px;

    padding: 16px 18px;

    font-size: 15px;

    transition: all 0.3s ease;
}

#bbpress-forums textarea {

    min-height: 220px;
}

#bbpress-forums input:focus,
#bbpress-forums textarea:focus,
#bbpress-forums select:focus {

    outline: none;

    border-color: var(--pv-green);

    box-shadow: 0 0 0 4px rgba(30,84,73,0.08);
}

/* ==========================================
BUTTONS
========================================== */

#bbpress-forums button,
#bbpress-forums input[type="submit"],
#bbpress-forums .button {

    background: var(--pv-green);

    color: white;

    border: none;

    border-radius: 14px;

    padding: 14px 24px;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}

#bbpress-forums button:hover,
#bbpress-forums input[type="submit"]:hover,
#bbpress-forums .button:hover {

    background: #27695b;
}

/* ==========================================
BREADCRUMBS
========================================== */

.bbp-breadcrumb {

    margin-bottom: 30px;

    font-size: 14px;

    color: #777;
}

.bbp-breadcrumb a {

    color: var(--pv-green);

    text-decoration: none;
}

/* ==========================================
SEARCH
========================================== */

#bbp-search-form {

    margin-bottom: 35px;
}

#bbp_search {

    background: white;

    border-radius: 16px;

    padding: 14px 18px;

    border: 1px solid rgba(0,0,0,0.08);
}

/* ==========================================
PAGINATION
========================================== */

.bbp-pagination {

    margin-top: 35px;
}

.bbp-pagination-links a,
.bbp-pagination-links span {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    border-radius: 12px;

    background: white;

    margin-right: 8px;

    text-decoration: none;

    color: var(--pv-green);

    transition: all 0.3s ease;
}

.bbp-pagination-links a:hover {

    background: var(--pv-cream);
}

.bbp-pagination-links .current {

    background: var(--pv-green);

    color: white;
}

/* ==========================================
NOTICE / ALERTS
========================================== */

div.bbp-template-notice {

    border-radius: 18px;

    padding: 18px 22px;

    background: var(--pv-cream);

    border: none;
}

/* ==========================================
MOBILE
========================================== */

@media(max-width: 768px){

    #bbpress-forums li.bbp-body ul.forum,
    #bbpress-forums li.bbp-body ul.topic {

        padding: 20px;

        border-radius: 20px;
    }

    .bbp-topic-title a,
    .bbp-forum-title {

        font-size: 19px;
    }

    #bbpress-forums fieldset.bbp-form {

        padding: 24px;
    }

    #bbpress-forums fieldset.bbp-form legend {

        font-size: 22px;
    }

}