File size: 5,731 Bytes
5ff6b98
c8b7ab5
830e496
 
 
 
 
d096cd1
830e496
d096cd1
 
 
 
c8b7ab5
830e496
 
 
2f4cc31
03928f6
830e496
c8b7ab5
 
830e496
c8b7ab5
d096cd1
c8b7ab5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5ff6b98
c8b7ab5
 
 
d096cd1
c8b7ab5
 
 
 
d096cd1
c8b7ab5
 
 
 
d096cd1
c8b7ab5
5ff6b98
 
 
 
 
 
c8b7ab5
 
5ff6b98
 
c8b7ab5
5ff6b98
2f4cc31
c8b7ab5
 
 
 
5ff6b98
 
2f4cc31
 
 
 
 
 
 
 
 
 
 
 
 
 
c8b7ab5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5ff6b98
c8b7ab5
5ff6b98
c8b7ab5
03928f6
 
c8b7ab5
 
 
5ff6b98
 
 
 
 
c8b7ab5
 
5ff6b98
c8b7ab5
 
 
03928f6
 
5ff6b98
c8b7ab5
 
 
03928f6
 
5ff6b98
c8b7ab5
5ff6b98
 
c8b7ab5
 
5ff6b98
c8b7ab5
5ff6b98
c8b7ab5
 
 
03928f6
ca91988
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c8b7ab5
5ff6b98
c8b7ab5
 
 
03928f6
5ff6b98
 
 
c8b7ab5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
830e496
 
c8b7ab5
 
 
 
830e496
 
c8b7ab5
 
 
830e496
c8b7ab5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
:root {
    --primary: #ec4899;
    --primary-dark: #db2777;
    --secondary: #4f46e5;
    --text: #111827;
    --text-light: #6b7280;
    --bg: #ffffff;
    --card-bg: #f9fafb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.2s ease;
}

.font-noto {
    font-family: 'Noto Sans JP', sans-serif;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    scroll-behavior: smooth;
    font-weight: 400;
}
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Global animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}
/* Card styles */
.card {
    background: var(--card-bg);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    border: 1px solid #e5e5e5;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.subject-card, .language-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    border-radius: 16px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    background: white;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.subject-card:hover, .language-card:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.subject-card i {
    transition: var(--transition);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subject-card:hover i {
    transform: scale(1.1);
}
.subject-card::after, .language-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.subject-card:hover::after, .language-card:hover::after {
    transform: scaleX(1);
}
.language-card .flag {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.language-card:hover .flag {
    transform: scale(1.2);
}
.theme-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    background: var(--card-bg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.theme-option:hover {
    background: var(--bg);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.theme-option:active {
    transform: translateY(2px);
}
.subject-card i {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    transition: var(--transition);
}
.subject-card:hover i {
    color: var(--primary);
    transform: rotate(10deg) scale(1.1);
}

/* Photo upload styles */
.photo-upload {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.photo-upload:hover {
    border-color: var(--primary);
    background-color: rgba(99, 102, 241, 0.05);
}

.photo-preview {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
}

/* Help button styles */
.help-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 90;
    cursor: pointer;
    transition: var(--transition);
}

.help-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}
/* Enhanced animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
    position: relative;
}

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Text styles */
.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/* Button styles */
.btn {
    transition: var(--transition);
    transform-origin: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(1px);
}
/* Section styles */
section {
    padding: 3rem 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(139, 92, 246, 0.03));
    z-index: -1;
    border-radius: 24px;
}