File size: 3,406 Bytes
01704b9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/* questionnaire.css */
body {
    margin: 0;
    padding: 0;
    background-color: #203667;
    /* Navy Blue */
    font-family: 'Cairo', sans-serif;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.q-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 90vh;
    /* Occupy most of screen */
    justify-content: space-between;
}

/* Skip Button */
.skip-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    opacity: 0.9;
}

/* Progress Bar */
.progress-container {
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-bar {
    width: 200px;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: #FDC554;
    width: 20%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.step-indicator {
    font-size: 14px;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Steps */
.step {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.4s ease;
    flex-grow: 1;
    justify-content: center;
}

.step.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.4;
    text-align: center;
}

.options-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.option-btn {
    background: rgba(255, 255, 255, 0.08);
    /* slightly transparent */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    /* Slight rounding, not fully pill shaped per image? Actually images show slightly clearer rounding, maybe 8px */
    padding: 18px;
    font-size: 18px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.option-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.option-btn.selected {
    background: rgba(253, 197, 84, 0.2);
    border-color: #FDC554;
    color: #FDC554;
}

/* Nav Buttons */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 20px;
}

.nav-btn {
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    cursor: pointer;
    min-width: 120px;
    transition: transform 0.1s;
}

.back-btn {
    background: transparent;
    border: 2px solid #FDC554;
    color: #FFFFFF;
}

.continue-btn {
    background: #FDC554;
    border: none;
    color: #203667;
    font-weight: 700;
}

.nav-btn:active {
    transform: scale(0.98);
}