/* ============================================================
   site_additions.css — new elements only.
   Does NOT touch templatemo_main.css or bootstrap.min.css,
   so the original Nature template design stays untouched.
   Adds: language switch, cookie bar, contact form, reCAPTCHA note.
   Styled to match the template (Raleway, rgba black/white panels).
   ============================================================ */

/* ---------- Language switch ---------- */

#lang-switch {
    position: fixed;
    top: 35px;
    right: 20px;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 18px;
    display: block;
}

#lang-switch:hover,
#lang-switch:focus {
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 991px) {
    /* keep clear of the mobile menu button */
    #lang-switch {
        top: 12px;
        right: 70px;
    }
}

/* ---------- Contact form ---------- */

#contact-form label {
    font-family: 'Raleway', sans-serif;
    color: #000;
    font-weight: 600;
}

#contact-form .form-control {
    font-family: 'Raleway', sans-serif;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #999;
}

#contact-form .form-control:focus {
    border-color: #000;
    box-shadow: none;
}

.site-btn {
    font-family: 'Raleway', sans-serif;
    border-radius: 0;
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
    padding: 8px 28px;
}

.site-btn:hover,
.site-btn:focus {
    background-color: #fff;
    color: #000;
    border-color: #000;
}

.form-status {
    margin-top: 12px;
    font-size: 15px;
    display: none;
}
.form-status.success { display: block; color: #2f6f4f; }
.form-status.error { display: block; color: #b3261e; }

/* Honeypot field: keep invisible to humans */
.botcheck { display: none !important; }

/* ---------- Cookie bar ---------- */

.cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 16px 30px;
    display: none;
}

.cookie-bar.visible { display: block; }

.cookie-bar p {
    font-family: 'Raleway', sans-serif;
    color: #fff;
    font-size: 14px;
    margin: 0 0 10px 0;
}

.cookie-actions {
    display: block;
}

.cookie-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    padding: 7px 22px;
    border: 1px solid #fff;
    cursor: pointer;
    margin-right: 8px;
}

.cookie-btn-accept {
    background-color: #fff;
    color: #000;
}
.cookie-btn-accept:hover { background-color: #ddd; }

.cookie-btn-decline {
    background-color: transparent;
    color: #fff;
}
.cookie-btn-decline:hover { background-color: rgba(255, 255, 255, 0.2); }
