/*
    Spielwiese e.V. custom theme overrides for LimeSurvey
    Applies a dark background, white text, magenta accents, modern fonts, and styling
    for headers, content, and buttons.
*/

body {
    background: #18181c !important;
    color: #f7f7f7 !important;
    font-family: 'Montserrat', Arial, sans-serif !important;
    padding-bottom: 10px !important;
    padding-top: 90px !important;
}

a, .btn-link, .navbar-nav > li > a {
    color: #e04b93 !important;
    transition: color 0.2s;
}
a:hover, .btn-link:hover, .navbar-nav > li > a:hover {
    color: #fff !important;
    background-color: #e04b93 !important;
}

header,
.top-container {
    background: #18181c !important;
    color: #fff !important;
    border-bottom: none !important;
}

.navbar,
.navbar-default,
.navbar-fixed-top {
    background: #18181c !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.navbar-brand,
.navbar-header {
    color: #fff !important;
    font-weight: 800 !important;
    font-family: 'Montserrat', Arial, sans-serif !important;
}

.navbar-nav > li > a {
    font-size: 1.15em !important;
    font-weight: 500 !important;
    color: #fff !important;
}

footer,
#surveyListFooter {
    background: #18181c !important;
    color: #c0c0c5 !important;
    border: none !important;
    text-align: center !important;
}

h1, .survey-title, .navbar-brand {
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 2.2em !important;
    text-align: center !important;
}

h2, .subheadline {
    color: #fff !important;
    font-size: 1.5em !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.stars, .highlight {
    color: #e04b93 !important;
    font-weight: 800;
    font-size: 1.8em !important;
    letter-spacing: 0.10em;
}

.question-container,
.question-container-printanswers {
    background: #232329 !important;
    border: 1px solid #35353e !important;
    border-radius: 10px !important;
    color: #f7f7f7 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
}

.question-title-container {
    border-bottom: 1px solid #35353e !important;
    color: #fff !important;
    padding-top: 1.3em !important;
    padding-bottom: 1.3em !important;
    text-align: center !important;
    font-size: 1.4em !important;
    font-weight: 800 !important;
}

.group-title-container {
    background: transparent !important;
    color: #e04b93 !important;
    font-size: 1.3em !important;
    font-weight: 800 !important;
    text-align: center !important;
}

.group-description,
.description {
    color: #bdbdc2 !important;
    font-size: 1.1em !important;
    text-align: center !important;
    font-weight: 400;
}

input,
select,
textarea {
    background: #232329 !important;
    color: #fff !important;
    border: 1px solid #35353e !important;
    border-radius: 5px !important;
    font-size: 1em !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #e04b93 !important;
    outline: none !important;
}

.btn-primary,
.btn-success,
.btn-info {
    background: #e04b93 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    transition: background 0.2s;
}

.btn-primary:hover,
.btn-success:hover,
.btn-info:hover {
    background: #ad2a6b !important;
    color: #fff !important;
}

.ls-questionhelp {
    color: #e04b93 !important;
    font-style: italic;
}

.progress-bar {
    background: #e04b93 !important;
}

::-webkit-input-placeholder { color: #bdbdc2; }
::-moz-placeholder { color: #bdbdc2; }
:-ms-input-placeholder { color: #bdbdc2; }
::placeholder { color: #bdbdc2; }

@media (max-width: 600px) {
    h1, .survey-title { font-size: 1.4em !important; }
    h2, .subheadline { font-size: 1.05em !important; }
    .description, .group-description { font-size: 0.95em !important; }
    .question-title-container { font-size: 1.1em !important; }
}