-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlive.html
More file actions
110 lines (102 loc) · 4.16 KB
/
live.html
File metadata and controls
110 lines (102 loc) · 4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Live — Ross Imlach</title>
<meta name="description" content="Live event cinematography - Concerts, performances, and live sessions">
<link rel="icon" href="/favicon.ico">
<link rel="stylesheet" href="/css/tailwind.css">
</head>
<body>
<header class="fixed top-0 left-0 right-0 z-50 bg-brand-dark/90 backdrop-blur-sm">
<nav class="container mx-auto px-6 py-4 flex justify-between items-center">
<div class="text-lg font-bold">
<a href="/" class="hover:text-gray-300 transition-colors">
Ross Imlach<br>
<span class="text-xs text-gray-500 font-normal">Lighting & Sound Engineer</span>
</a>
</div>
<div class="flex gap-6 items-center">
<a href="/film.html" class="hover:text-gray-300 transition-colors text-sm">FILM</a>
<a href="/live.html" class="hover:text-gray-300 transition-colors text-sm border-b-2 border-white">LIVE</a>
</div>
</nav>
</header>
<main class="pt-24 pb-12">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h1 class="text-4xl md:text-6xl font-bold mb-4 tracking-wider">LIVE</h1>
<p class="text-gray-400 tracking-wide">Lighting · Sound · Video</p>
</div>
<div class="max-w-4xl mx-auto mb-12 text-center">
<p class="text-lg text-gray-300 mb-6">
With experience in live events of all scales, designing lighting and video production using tools like GrandMA2/MA3, Resolume, and more.
</p>
<p class="text-lg text-gray-300">
Additionally, offering front-of-house mixing for bands and live performances at venues and events across Scotland.
</p>
</div>
<div class="mb-12">
<img src="/images/liveevents.jpg" alt="Live Events" class="w-full aspect-video object-cover rounded-lg">
</div>
<div class="max-w-4xl mx-auto mb-16 bg-brand-gray/50 border border-gray-800 rounded-lg p-8">
<h2 class="text-2xl md:text-3xl font-bold mb-6 text-center tracking-wide">Equipment Available</h2>
<p class="text-gray-300 mb-6 text-center">
Get in touch to discuss equipment availability for your event. Available gear includes:
</p>
<div class="grid md:grid-cols-2 gap-4 text-gray-300">
<ul class="space-y-2">
<li class="flex items-start">
<span class="text-gray-500 mr-2">•</span>
<span>Lighting consoles</span>
</li>
<li class="flex items-start">
<span class="text-gray-500 mr-2">•</span>
<span>Sound consoles</span>
</li>
<li class="flex items-start">
<span class="text-gray-500 mr-2">•</span>
<span>Professional microphones</span>
</li>
</ul>
<ul class="space-y-2">
<li class="flex items-start">
<span class="text-gray-500 mr-2">•</span>
<span>Stage lighting fixtures</span>
</li>
<li class="flex items-start">
<span class="text-gray-500 mr-2">•</span>
<span>Haze & fog machines</span>
</li>
<li class="flex items-start">
<span class="text-gray-500 mr-2">•</span>
<span>Additional production equipment</span>
</li>
</ul>
</div>
<div class="mt-6 text-center">
<a href="mailto:contactross@imla.ch" class="inline-block bg-white text-black px-6 py-3 rounded hover:bg-gray-200 transition-colors font-medium">
Contact for Availability
</a>
</div>
</div>
<div class="portfolio-grid">
</div>
</div>
</main>
<footer class="bg-brand-dark border-t border-gray-800 py-12 mt-20">
<div class="container mx-auto px-6 text-center">
<p class="text-sm mb-2">Ross Imlach — Lighting & Sound Engineer — Based in Scotland</p>
<p class="text-sm text-gray-500 mb-6">
All enquiries: <a href="mailto:contactross@imla.ch" class="hover:text-white transition-colors">ross@imla.ch</a> or
<a href="tel:+447837310819" class="hover:text-white transition-colors">+44 7837310819</a>
</p>
<div class="flex justify-center gap-6">
<a href="/ig.html" class="hover:text-gray-300 transition-colors">Instagram</a>
<a href="/yt.html" class="hover:text-gray-300 transition-colors">YouTube</a>
</div>
</div>
</footer>
</body>
</html>