/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

@font-face {
  font-family: "Aeonik Pro";
  src: url("/upload/themes/survey/outreach_twentythree/css/fonts/aeonik-pro/AeonikPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/upload/themes/survey/outreach_twentythree/css/fonts/inter/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


.navbar {
    background-color: #46086a !important;
}

#survey-nav .navbar-toggler .ri-more-fill{
    color: #ff595d !important;
}
.progress-bar {
    background-color:#65bace;
}

.progress {
    background-color: #9d45d1;
}

body {
  font-family: "Inter" !important;
  font-weight:400;
  color: #f9e6ce !important;
  background-color: #46086a;
}


a {
    color:#65beca;
}

h1 {
    color: #ff595d;
    font-family:"Aeonik Pro" !important;
    font-size:5rem !important;
    font-weight: 500;
    line-height:120% !important;
}

.question-text {
    color: #ff595d;
    font-family:"Aeonik Pro" !important;
    font-size:3rem !important;
    font-weight: 500;
}

.asterisk {
    color: #ff595d;
}

.text-info, .checkbox-label, .radio-label, .question-container .ls-question-message{
    color:#f9e6ce !important;
    font-family:"Inter" !important;
    font-weight: 400 !important;
    font-size:1rem !important;
    margin-top:0px;
}

.question-container .ls-question-message, .question-container .question-valid-container {
    margin-top:0px;
    color:#ff595d !important;
}

/* default */
.stars-list .star-rating i {color:#f9e6ce !important; }

/* selected */
.stars-list .star-rated-on i,
.stars-list .star-thisrated i { color:#65beca !important; }

/* hover preview (LimeSurvey adds .star-hover on the stars to highlight) */
.stars-list .star-hover i { color:#65beca !important; text-shadow:none;}


.btn-primary {
    background-color:#65beca;
    border-color:#65beca;
    border-radius: 100px;
    padding: 10px 40px 10px 40px;
    font-family: "Inter" !important;
    font-weight:400;
    color:#46086a;
}

.btn-primary:hover, .btn-primary:active {
    background-color:#f9e6ce;
    border-color:#f9e6ce;
    color:#46086a;
}

.btn-outline-secondary {
    background-color:#46086a;
    border-color:#65beca;
    border-radius: 100px;
    padding: 10px 40px 10px 40px;
    font-family: "Inter" !important;
    font-weight:400;
    color:#65beca;
}
.btn-outline-secondary:hover, .btn-outline-secondary:active {
    background-color:#f9e6ce;
    border-color:#f9e6ce;
    color:#46086a;
}

.text-item input, .text-item input:active{
    background:none;
    border:none;
    border-bottom:2px solid;
    border-color:#f9e6ce;
    border-radius:0px;
    width:40%;
    padding:0px !important;
    padding-bottom: 10px !important;
    color: #ff595d;
    font-family:"Inter" !important;
    font-size:1rem !important;
}

.checkbox-item input[type="checkbox"]:checked + label::before, .checkbox-item input[type="checkbox"]:checked + label::after {
    border-color:#f9e6ce;
    color:#46086a;
    background:solid;
    background-color:#f9e6ce;
}

.checkbox-item label::before, .radio-item label::before{
    border-color:#f9e6ce;
    background:none;
    border:2px solid;
}

.radio-item input[type="radio"]:checked + label::before {
    border-color:#f9e6ce;
    color:#46086a;
}
.radio-item input[type="radio"]:checked + label::after {
 background-color:#f9e6ce !important;
}

.question-container {
    margin-bottom:2rem;
}

.survey-name {
    margin-bottom:50px;
}

.ls-privacy-body, .ls-privacy-head{
    color:#9d45d1;
} 

textarea.form-control {
    background-color:#9d45d1 !important;
    border:none;
}

.completed-Content{
    color:#f9e6ce !important;
    font-family:"Inter" !important;
    font-size:1rem !important;
    font-weight: 400 !important;
}
.completed-heading{
    color:#ff595d !important;
    font-family:"Aeonik Pro" !important;
    font-size:5rem !important;
    font-weight: 500 !important;
    margin-bottom:2rem !important;
}

body .top-container {
    margin-top:0px !important;
}

.navbar-brand img {
    max-height: 50px !important;
}

.brand-logo .top-container .top-content {
    padding-top:0px !important;
}

/* ==========================================
   Welcome screen animated background (CSS only)
========================================== */

#welcome-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding:2rem !important;
}

/* Background layer */
#welcome-container::before {
  content: "";
  position: absolute;
  inset: -200px; /* bleed beyond container */
  z-index: -1;

  background-image:
    url("https://www.heroandoutreach.com/wp-content/uploads/2025/05/outreach-arrow_light.svg");
  background-repeat: repeat;
  background-position: center;
  background-size: 100px 100px;
  animation: welcomeArrowDrift 10s ease-in-out infinite alternate;
  pointer-events: none;
  opacity:0.6;
}

/* Motion */
@keyframes welcomeArrowDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200px -160px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  #welcome-container::before {
    animation: none;
  }
}
