-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
427 lines (400 loc) · 16 KB
/
Copy pathindex.html
File metadata and controls
427 lines (400 loc) · 16 KB
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Murphy Langa - Creative AI, Music & Consulting</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&display=swap" rel="stylesheet">
<style>
html {
scroll-behavior: smooth;
}
body {
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
background-image: url('Hintergrund.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
color: #ffffff;
min-height: 100vh;
}
.overlay {
background: rgba(0, 0, 0, 0.45);
min-height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
padding: 40px 0;
box-sizing: border-box;
}
.container {
max-width: 650px;
width: 90%;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
}
.profile-avatar {
width: 130px;
height: 130px;
border-radius: 50%;
border: 3px solid rgba(255, 255, 255, 0.2);
margin-bottom: 12px;
box-shadow: 0 8px 25px rgba(0,0,0,0.7);
object-fit: cover;
}
.lang-switch-prominent {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 25px;
background: rgba(15, 15, 20, 0.75);
backdrop-filter: blur(10px);
padding: 6px 16px;
border-radius: 25px;
border: 2px solid rgba(0, 255, 136, 0.4);
box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.lang-btn {
color: #ffffff;
text-decoration: none;
font-size: 0.95em;
font-weight: 800;
opacity: 0.5;
letter-spacing: 1px;
padding: 2px 8px;
border-radius: 6px;
transition: all 0.3s ease;
}
.lang-btn.active {
opacity: 1;
color: #000000;
background: #00ff88;
}
.lang-btn:hover:not(.active) {
opacity: 0.9;
color: #00ff88;
}
.lang-divider {
color: rgba(255, 255, 255, 0.3);
font-size: 0.9em;
font-weight: bold;
}
h1 {
font-weight: 800;
font-size: 2.3em;
text-align: center;
margin-top: 0;
margin-bottom: 5px;
letter-spacing: 2px;
text-shadow: 0px 4px 15px rgba(0,0,0,0.8);
}
p.subtitle {
font-weight: 400;
font-size: 1.05em;
color: #00ff88;
text-align: center;
margin-bottom: 25px;
letter-spacing: 2px;
text-shadow: 0px 2px 10px rgba(0,0,0,0.8);
}
.section {
background: rgba(15, 15, 20, 0.65);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 20px;
padding: 30px;
margin-bottom: 35px;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
width: 100%;
box-sizing: border-box;
}
.section h2 {
margin-top: 0;
margin-bottom: 25px;
font-weight: 600;
font-size: 1.25em;
color: #ffffff;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
padding-bottom: 12px;
text-align: center;
text-transform: uppercase;
letter-spacing: 3px;
}
/* Neue Unterzeile direkt unter der H2 */
.section-subline {
display: block; /* Garantiert eine eigene Zeile */
text-align: center;
font-size: 0.85em;
color: #00ff88;
margin-top: -15px; /* Zieht den Text etwas näher an die Trennlinie */
margin-bottom: 25px;
font-weight: 400;
letter-spacing: 0.5px;
opacity: 0.9;
}
.button-grid {
display: flex;
flex-direction: column;
gap: 15px;
}
.link-button {
display: flex;
align-items: center;
background: rgba(255, 255, 255, 0.05);
color: #ffffff;
text-decoration: none;
padding: 15px 20px;
border-radius: 12px;
transition: all 0.4s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.link-button:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateY(-3px);
border-color: rgba(0, 255, 136, 0.6);
box-shadow: 0 8px 20px rgba(0, 255, 136, 0.25);
}
.link-button.featured-lab {
background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(147, 51, 234, 0.25));
border: 1.5px solid #00ff88;
box-shadow: 0 0 18px rgba(0, 255, 136, 0.35);
position: relative;
overflow: hidden;
}
.link-button.featured-lab:hover {
background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(147, 51, 234, 0.4));
box-shadow: 0 0 28px rgba(0, 255, 136, 0.65);
transform: translateY(-3px) scale(1.01);
}
.badge-lab {
position: absolute;
top: 10px;
right: 15px;
background: #00ff88;
color: #000000;
font-size: 0.65em;
font-weight: 800;
padding: 2px 8px;
border-radius: 10px;
letter-spacing: 1px;
text-transform: uppercase;
}
.img-round {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 2px 10px rgba(0,0,0,0.5);
margin-right: 20px;
flex-shrink: 0;
}
.img-wide {
height: 32px;
width: auto;
max-width: 100px;
object-fit: contain;
margin-right: 20px;
flex-shrink: 0;
}
.link-text {
display: flex;
flex-direction: column;
align-items: flex-start;
padding-right: 40px;
}
.link-title {
font-weight: 600;
font-size: 1.1em;
margin-bottom: 3px;
}
.link-desc {
font-weight: 300;
font-size: 0.85em;
color: #cbd5e1;
}
.algorithm-hint {
background: rgba(0, 255, 136, 0.07);
border: 1.5px solid rgba(0, 255, 136, 0.4);
border-radius: 16px;
padding: 20px;
margin-top: 5px;
font-size: 0.88em;
line-height: 1.5;
color: #e2e8f0;
text-align: center;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.algorithm-hint .hint-header {
font-weight: 800;
font-size: 1.05em;
color: #ffffff;
margin-bottom: 10px;
}
.algorithm-hint strong {
color: #00ff88;
}
/* Fiery Amber / Orange Glow Scroll Button */
.scroll-callout-btn {
display: block;
margin-top: 18px;
background: linear-gradient(135deg, rgba(255, 154, 0, 0.25), rgba(255, 75, 0, 0.15));
border: 1.5px solid #ff9d00;
border-radius: 12px;
padding: 14px 18px;
font-weight: 700;
color: #ffffff;
font-size: 0.95em;
text-decoration: none;
box-shadow: 0 0 22px rgba(255, 140, 0, 0.45);
letter-spacing: 0.5px;
transition: all 0.3s ease;
text-align: center;
}
.scroll-callout-btn:hover {
background: linear-gradient(135deg, rgba(255, 165, 0, 0.45), rgba(255, 90, 0, 0.3));
border-color: #ffb700;
box-shadow: 0 0 32px rgba(255, 140, 0, 0.85), inset 0 0 12px rgba(255, 165, 0, 0.35);
transform: translateY(-3px) scale(1.01);
color: #ffffff;
}
.scroll-callout-btn span {
color: #ffaa00;
text-decoration: underline;
text-underline-offset: 3px;
}
.scroll-callout-btn:hover span {
color: #ffd000;
}
.footer-nav {
margin-top: 15px;
text-align: center;
}
.footer-nav a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
font-size: 0.9em;
letter-spacing: 1px;
transition: color 0.3s;
border-bottom: 1px dashed rgba(255,255,255,0.4);
padding-bottom: 2px;
}
/* Fix für das LAB-Badge: Greift jetzt auch auf mittleren Bildschirmgrößen */
@media (max-width: 680px) {
.featured-lab {
padding-top: 50px !important; /* Schafft oben Platz für das Badge */
}
}
</style>
</head>
<body>
<div class="overlay">
<div class="container">
<img src="Rap.jpg" alt="Murphy" class="profile-avatar">
<div class="lang-switch-prominent">
<a href="index.html" class="lang-btn active">EN</a>
<span class="lang-divider">|</span>
<a href="index-de.html" class="lang-btn">DE</a>
</div>
<h1>MURPHY LANGA</h1>
<p class="subtitle">CREATIVE AI • MUSIC • TUTORIALS • CONSULTING</p>
<div class="section">
<h2>🎵 AI Music & Releases</h2>
<p class="section-subline">Explore all artist profiles on Spotify, Apple Music & YouTube Music 👇</p>
<div class="button-grid">
<a href="playlists-en.html" class="link-button featured-lab">
<span class="badge-lab">LAB / EXPERIMENTS</span>
<img src="Logo_Murphy_und_Ziggys_rund.png" class="img-round" alt="Murphy and the Ziggys">
<div class="link-text">
<span class="link-title">Murphy & the Ziggys Playlists</span>
<span class="link-desc">AI Experiments, Unreleased Albums & Exclusive Playlists</span>
</div>
</a>
<div class="algorithm-hint">
<div class="hint-header">✨ Murphy & the AI Crew look forward to your support! 💕</div>
All lyrics, sound design, and visual prompts are originally conceived, written, and fine-tuned by Murphy. Our virtual AI crew then brings them to life using various tools and models.<br><br>
<strong>Like what you hear?</strong> We’d love it if you left a like or comment on the streaming platforms! We read every single message. And let's be honest: without your interaction, the stubborn algorithm will completely ignore us nowadays... 😉❤️
<a href="#tutorials" class="scroll-callout-btn">
👇 Scroll down for <span>ComfyUI tutorials</span> & <span>custom music projects for you</span>
</a>
</div>
<a href="https://open.spotify.com/intl-de/artist/1DnjGcZxZzxjtpQvjeErGi" target="_blank" class="link-button">
<img src="Spotify_Full_Logo_RGB_Green.png" class="img-wide" alt="Spotify">
<div class="link-text">
<span class="link-title">Murphy & The Ziggys</span>
<span class="link-desc">Indie Pop & Rock • Artist Profile (Spotify)</span>
</div>
</a>
<a href="https://music.apple.com/us/artist/murphy-the-ziggys/1837896994" target="_blank" class="link-button">
<img src="DE_Apple_Music_Listen_on_Badge_RGB_083120.svg" class="img-wide" alt="Apple Music">
<div class="link-text">
<span class="link-title">Murphy & The Ziggys</span>
<span class="link-desc">Indie Pop & Rock • Artist Profile (Apple Music)</span>
</div>
</a>
<a href="https://music.youtube.com/channel/UCiNaJy7pScb2UhJXYNrQ5og" target="_blank" class="link-button">
<img src="yt_logo_fullcolor_white_digital.png" class="img-wide" alt="YouTube Music">
<div class="link-text">
<span class="link-title">The Ziggys</span>
<span class="link-desc">Indie Pop & Rock • Artist Profile (YouTube Music)</span>
</div>
</a>
<a href="https://open.spotify.com/intl-de/artist/2ToGIFnYhiMPeODjZAumJr" target="_blank" class="link-button">
<img src="Spotify_Full_Logo_RGB_Green.png" class="img-wide" alt="Spotify">
<div class="link-text">
<span class="link-title">The Cyrus Protocol</span>
<span class="link-desc">Soul & Funk • Artist Profile (Spotify)</span>
</div>
</a>
<a href="https://music.apple.com/us/artist/the-cyrus-protocol/1875877240" target="_blank" class="link-button">
<img src="DE_Apple_Music_Listen_on_Badge_RGB_083120.svg" class="img-wide" alt="Apple Music">
<div class="link-text">
<span class="link-title">The Cyrus Protocol</span>
<span class="link-desc">Soul & Funk • Artist Profile (Apple Music)</span>
</div>
</a>
<a href="https://music.youtube.com/channel/UCqf8dz_b0GHA1HkWCcha2MA" target="_blank" class="link-button">
<img src="yt_logo_fullcolor_white_digital.png" class="img-wide" alt="YouTube Music">
<div class="link-text">
<span class="link-title">The Cyrus Protocol</span>
<span class="link-desc">Soul & Funk • Artist Profile (YouTube Music)</span>
</div>
</a>
</div>
</div>
<div class="section" id="tutorials">
<h2>🧠 AI Knowledge & Tutorials</h2>
<div class="button-grid">
<a href="https://www.youtube.com/@murphylanga" target="_blank" class="link-button">
<img src="Logo_Murphylanga_rund.png" class="img-round" alt="YouTube Tutorials">
<div class="link-text">
<span class="link-title">Murphy Langa (YouTube Channel)</span>
<span class="link-desc">Tutorials, ComfyUI Workflows & Generative AI Insights</span>
</div>
</a>
</div>
</div>
<div class="section" style="border-color: rgba(0, 255, 136, 0.4);">
<h2>🚀 AI Consulting & Custom Projects</h2>
<div class="button-grid">
<a href="impressum-en.html" class="link-button">
<div class="link-text" style="padding-right:0;">
<span class="link-title">💼 Custom Music & Consulting Services</span>
<span class="link-desc">Your custom AI song, unique AI visuals, plus expert ComfyUI consulting & training.</span>
</div>
</a>
</div>
</div>
<div class="footer-nav">
<a href="impressum-en.html">Imprint, Legal & Project Inquiries / Contact</a>
</div>
</div>
</div>
</body>
</html>