/* ============================================================
   LANDING SCREEN (inline on page)
   ============================================================ */

.srs-landing {
    padding: 20px 60px;
}

.srs-landing-title {
    font-size: 70px;
    font-family: 'bold';
    font-weight: 600;
    margin: 0 0 0px;
    line-height: 1.15;
    text-transform: uppercase;
    max-width: 70%;
}

.srs-landing-desc {
    font-family: 'bold';
    font-size: 40px;
    margin: 0 0 48px;
    max-width: 560px;
    line-height: 1.7;
}

.srs-btn-start {
    display: inline-block;
    padding: 18px 56px;
    border: none;
    cursor: pointer;
}

/* Completed state */
.srs-survey-complete {
    text-align: center;
    padding: 48px 32px;
    max-width: 760px;
    margin: 0 auto;
}

.srs-survey-complete h2 {
    text-transform: uppercase;
    font-family: 'bold';
    color: #CDD4FD;
    font-size: 100px;
    margin: 0 0 10px;
}

.srs-survey-complete p {
    font-family: 'medium';
    color: #CDD4FD;
    font-size: 40px;
    margin: 0;
}

/* ---- Thank you screen ---- */


.srs-survey-complete[hidden] {
    display: none;
}

@keyframes completePop {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}



/* ============================================================
   FULLSCREEN SURVEY
   ============================================================ */

.srs-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgb(0,0,35);
    display: flex;
    flex-direction: column;
}

.srs-fullscreen[hidden] {
    display: none !important;
}


/* ---- Top bar ---- */

.srs-fs-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 32px;
    flex-shrink: 0;
}

.srs-fs-survey-title {
    font-size: 2rem;
    font-family: 'light';
    text-align: center;
    font-weight: 300;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
}

.srs-survey-close {
    position: absolute;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    font-size: 70px;
    line-height: 1;
    cursor: pointer;
    color: #CDD4FD;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
    right: 50px;
    top:50px;
}


/* ---- Question area ---- */

.srs-fs-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    overflow: hidden;
}

.srs-question-slide {
    text-align: center;
    max-width: 980px;
    width: 100%;
    animation: srsSlideUp 0.3s ease;
}

.srs-question-slide[hidden] {
    display: none;
}

@keyframes srsSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.srs-question-text {
    font-size: 50px;
    
    font-weight: 700;
    margin: 0 0 52px;
    line-height: 1.35;
}


/* ---- Stars ---- */

.srs-star-rating {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.srs-star {
    width: 64px;
    height: 64px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #CDD4FD;
    transition: transform 0.15s ease, color 0.15s ease;
}

.srs-star svg {
    width: 100%;
    height: 100%;
}

.srs-star:hover,
.srs-star.hover {
    color: #ffc107;
    transform: scale(1.25);
}

.srs-star.selected {
    color: #ffc107;
}

@keyframes starPop {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.35); }
    100% { transform: scale(1); }
}

.srs-star.pop {
    animation: starPop 0.25s ease;
}




/* ---- Bottom navigation ---- */

/* Higher specificity (.srs-fullscreen prefix) + nowrap so the row can
   never be un-flexed or wrapped by leaking theme/global styles, which
   would otherwise drop the "next" button to the bottom-left. The next
   button must always stay in the bottom-right corner. */
.srs-fullscreen .srs-fs-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 32px 50px;
    height: 80px;
    flex-shrink: 0;
}

/* Keep "next" pinned to the far right and "prev" to the far left,
   independent of how many dots sit in between. */
.srs-fullscreen .srs-fs-nav .srs-btn-prev { margin-right: auto; }
.srs-fullscreen .srs-fs-nav .srs-btn-next { margin-left: auto; }

.srs-nav-btn {
    width: auto;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.srs-nav-btn svg {
    width: 33px;
    height: 33px;
    pointer-events: none;
}


.srs-btn-prev {
    background-color: transparent;
    color: #CDD4FD;
    /* Match the "next" button's font-size (it inherits 28px from the
       theme's .button class). */
    font-size: 28px;
    border: none;
}

.srs-nav-btn:disabled {
    opacity: 0.28;
    cursor: not-allowed;
}

.srs-btn-next {   
    border: none;
}


/* Next button: highlight when active */
.srs-btn-next:not(:disabled) {   
    border-color: transparent;
    color: #182153;
}


/* Dots */
.srs-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.srs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CDD4FD;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.srs-dot.active {
    background: white;
    transform: scale(1.4);
}

.bottomLogo {
	position:absolute;
	bottom: 30px;
	left: 60px;
	max-width: 250px;
}