forked from aeoess/aeoess_web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathamplifier-agency.html
More file actions
78 lines (78 loc) · 5.07 KB
/
amplifier-agency.html
File metadata and controls
78 lines (78 loc) · 5.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amplifier Entertainment Agency - Tymofii Pidlisnyi</title>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --bg: #0F0E0D; --bg-secondary: #1A1715; --text: #F5F3F0; --text-muted: #8B9199; --border: #262320; --accent-cyan: #5DADE2; --accent-yellow: #F4D03F; }
[data-theme="bright"] { --bg: #FDFCFA; --bg-secondary: #F9F7F4; --text: #2B2622; --text-muted: #6B7280; --border: #E8E4DF; --accent-cyan: #3498DB; --accent-yellow: #B8E6D5; }
body { font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; transition: background-color 0.5s ease, color 0.5s ease; }
.container { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; }
.back-link { display: inline-block; color: var(--accent-cyan); text-decoration: none; font-size: 0.9rem; margin-bottom: 2rem; transition: all 0.3s ease; }
.back-link:hover { transform: translateX(-5px); }
.header { margin-bottom: 3rem; }
.company-name { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; background: linear-gradient(135deg, var(--accent-cyan), var(--accent-yellow)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.role { font-size: 1.5rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.dates { font-size: 1rem; color: var(--text-muted); letter-spacing: 0.05em; }
.section { margin-bottom: 3rem; }
h2 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--accent-cyan); }
p { font-family: 'Inter', sans-serif; color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; }
ul { list-style: none; margin-left: 0; }
li { font-family: 'Inter', sans-serif; color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1rem; padding-left: 1.5rem; position: relative; }
li::before { content: '→'; position: absolute; left: 0; color: var(--accent-cyan); }
.highlight { color: var(--accent-cyan); font-weight: 500; }
.theme-toggle { position: fixed; top: 2rem; right: 2rem; z-index: 1001; width: 60px; height: 30px; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 30px; cursor: pointer; padding: 3px; transition: all 0.3s ease; }
.theme-toggle-slider { width: 24px; height: 24px; background: var(--accent-cyan); border-radius: 50%; transition: transform 0.3s ease; display: flex; align-items: center; justify-content: center; font-size: 12px; }
[data-theme="bright"] .theme-toggle-slider { transform: translateX(30px); background: var(--accent-yellow); }
@media (max-width: 768px) { .container { padding: 2rem 1.5rem; } }
</style>
</head>
<body data-theme="dark">
<div class="theme-toggle" onclick="toggleTheme()"><div class="theme-toggle-slider"><span id="theme-icon">🌙</span></div></div>
<div class="container">
<a href="../index.html" class="back-link">← Back to Home</a>
<div class="header">
<h1 class="company-name">Amplifier Entertainment Agency</h1>
<p class="role">Founder & Event Organizer</p>
<p class="dates">2008 — 2013 • Kyiv, Ukraine</p>
</div>
<div class="section">
<h2>Overview</h2>
<p>Organized <span class='highlight'>UNICEF, USAID, and ICRC</span> conferences and major entertainment events.</p>
</div>
<div class="section">
<h2>Key Achievements</h2>
<ul>
<li>Organized international conferences for <span class='highlight'>UNICEF, USAID, ICRC</span></li>
<li>Produced major entertainment events</li>
<li>Managed teams of 20+ staff and vendors</li>
<li>Built network of government and NGO contacts</li>
</ul>
</div>
</div>
<script>
function toggleTheme() {
const body = document.body;
const themeIcon = document.getElementById('theme-icon');
const currentTheme = body.getAttribute('data-theme');
if (currentTheme === 'dark') {
body.setAttribute('data-theme', 'bright');
themeIcon.textContent = '☀️';
localStorage.setItem('theme', 'bright');
} else {
body.setAttribute('data-theme', 'dark');
themeIcon.textContent = '🌙';
localStorage.setItem('theme', 'dark');
}
}
window.addEventListener('load', () => {
const savedTheme = localStorage.getItem('theme') || 'dark';
document.body.setAttribute('data-theme', savedTheme);
document.getElementById('theme-icon').textContent = savedTheme === 'dark' ? '🌙' : '☀️';
});
</script>
</body>
</html>