-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudio.html
507 lines (452 loc) · 17.5 KB
/
studio.html
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Studio | Home Room Recordings</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
:root {
--primary-color: #C41E3A; /* Rich Red - classic recording studio color */
--primary-hover: #A01830;
--secondary-color: #1DB954; /* Spotify Green for success states */
--accent-color: #FFD700; /* Gold for accents */
--danger-color: #FF4444; /* Bright Red for warnings */
--background-color: #ffffff;
--card-background: #ffffff;
--text-color: #1F2937;
--text-secondary: #6B7280;
--border-color: rgba(0, 0, 0, 0.1);
--card-radius: 8px;
--button-radius: 6px;
--transition: all 0.2s ease;
}
nav {
background: var(--primary-color);
width: 100%;
}
.nav-container {
background: var(--primary-color);
color: white;
}
.logo {
color: white;
}
.nav-links a {
color: rgba(255, 255, 255, 0.8);
transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
color: white;
background: var(--primary-hover);
}
.gallery-item:hover {
border-color: var(--primary-color);
}
.equipment-item:hover {
border-color: var(--primary-color);
}
.cta-button {
background: var(--primary-color);
color: white;
transition: var(--transition);
}
.cta-button:hover {
background: var(--primary-hover);
}
.social-links a {
color: var(--primary-color);
transition: var(--transition);
}
.social-links a:hover {
color: var(--primary-hover);
}
.hero {
background-color: var(--background-color);
}
.hero-content {
color: var(--text-color);
}
.about-section {
padding: 6rem 2rem;
background: var(--background-color);
}
.producers-container {
max-width: 1200px;
margin: 0 auto;
}
.producer-card {
background: var(--card-background);
border-radius: var(--card-radius);
padding: 3rem;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
margin-bottom: 4rem;
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 4rem;
}
.producer-image-container {
position: relative;
}
.producer-image {
position: relative;
border-radius: var(--card-radius);
overflow: hidden;
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
aspect-ratio: 3/4;
}
.producer-photo {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.image-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}
.producer-quick-info {
display: flex;
justify-content: space-around;
margin-top: 2rem;
text-align: center;
}
.info-item {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.info-number {
font-size: 2rem;
font-weight: 700;
color: var(--primary-color);
}
.info-label {
font-size: 0.9rem;
color: var(--text-secondary);
}
.producer-header {
margin-bottom: 2rem;
}
.producer-info h3 {
font-size: 3rem;
margin-bottom: 0.5rem;
color: var(--text-color);
font-weight: 700;
}
.producer-title {
font-size: 1.3rem;
color: var(--primary-color);
font-weight: 500;
}
.producer-bio p {
font-size: 1.1rem;
line-height: 1.7;
color: var(--text-secondary);
margin-bottom: 2rem;
}
.achievements {
margin: 2.5rem 0;
}
.achievements h4,
.genre-expertise h4 {
font-size: 1.4rem;
margin-bottom: 1rem;
color: var(--text-color);
}
.artist-collaborations,
.expertise-areas {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1rem;
}
.collab-artist,
.expertise-tag {
padding: 0.6rem 1.2rem;
border-radius: 2rem;
font-size: 1rem;
font-weight: 500;
transition: var(--transition);
}
.collab-artist {
background: var(--primary-color);
color: white;
}
.expertise-tag {
background: var(--secondary-color);
color: white;
}
.collab-artist:hover,
.expertise-tag:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(196, 30, 58, 0.2);
}
.genre-tags {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1rem;
}
.genre-tag {
background: rgba(196, 30, 58, 0.1);
color: var(--primary-color);
padding: 0.8rem 1.5rem;
border-radius: 2rem;
font-size: 1rem;
font-weight: 500;
display: flex;
align-items: center;
gap: 0.5rem;
transition: var(--transition);
}
.genre-tag:hover {
background: var(--primary-color);
color: white;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(196, 30, 58, 0.2);
}
@media (max-width: 1024px) {
.producer-card {
grid-template-columns: 1fr;
gap: 3rem;
padding: 2rem;
}
.producer-image {
max-height: 500px;
aspect-ratio: 16/9;
}
}
@media (max-width: 768px) {
.about-section {
padding: 4rem 1rem;
}
.producer-info h3 {
font-size: 2.5rem;
}
.producer-bio p {
font-size: 1rem;
}
.genre-tag,
.collab-artist,
.expertise-tag {
padding: 0.6rem 1rem;
font-size: 0.9rem;
}
}
</style>
</head>
<body>
<nav>
<div class="nav-container">
<div class="logo">
<img src="images/logo.png" alt="Homeroom Recordings Logo">
</div>
<ul class="nav-links">
<li><a href="index.html#services">Services</a></li>
<li><a href="studio.html" class="active">Studio</a></li>
<li><a href="beats.html">Beats</a></li>
<li><a href="booking.html">Book Now</a></li>
</ul>
</div>
</nav>
<header class="hero">
<div class="hero-content">
<h1>Studio</h1>
</div>
</header>
<section class="about-section">
<div class="section-header">
<h2>Meet Our Producers</h2>
<p class="section-subtitle">The talent behind Home Room Recordings</p>
</div>
<div class="producers-container">
<!-- DJ Jail//Break Card -->
<div class="producer-card">
<div class="producer-image-container">
<div class="producer-image">
<img src="images/djjailbreak.jpeg" alt="DJ Jail//Break in purple lighting" class="producer-photo">
<div class="image-overlay"></div>
</div>
<div class="producer-quick-info">
<div class="info-item">
<span class="info-number">10+</span>
<span class="info-label">Years Experience</span>
</div>
<div class="info-item">
<span class="info-number">5+</span>
<span class="info-label">Music Genres</span>
</div>
</div>
</div>
<div class="producer-info">
<div class="producer-header">
<h3>DJ Jail//Break</h3>
<div class="producer-title">Founder & Lead Producer</div>
</div>
<div class="producer-bio">
<p>As one of the founding visionaries of Home Room Recordings, DJ Jail//Break brings over a decade of music industry expertise and passion to every project. His journey in the music scene has been marked by collaborations with some of the industry's biggest names.</p>
<div class="achievements">
<h4>Career Highlights</h4>
<p>Shared stages with legendary artists including:</p>
<div class="artist-collaborations">
<span class="collab-artist">Tech N9ne</span>
<span class="collab-artist">Snoop Dogg</span>
<span class="collab-artist">E-40</span>
<span class="collab-artist">Vaio</span>
<span class="collab-artist">+ Many More</span>
</div>
</div>
<div class="genre-expertise">
<h4>Production Expertise</h4>
<div class="genre-tags">
<span class="genre-tag"><i class="fas fa-music"></i> Hip Hop</span>
<span class="genre-tag"><i class="fas fa-wave-square"></i> Bass House</span>
<span class="genre-tag"><i class="fas fa-record-vinyl"></i> House</span>
<span class="genre-tag"><i class="fas fa-bolt"></i> Dubstep</span>
<span class="genre-tag"><i class="fas fa-fire"></i> Trap</span>
</div>
</div>
</div>
</div>
</div>
<!-- DMidd Card -->
<div class="producer-card">
<div class="producer-image-container">
<div class="producer-image">
<img src="images/dmidd.jpg" alt="DMidd recording in the studio" class="producer-photo">
<div class="image-overlay"></div>
</div>
<div class="producer-quick-info">
<div class="info-item">
<span class="info-number">3+</span>
<span class="info-label">Years Experience</span>
</div>
<div class="info-item">
<span class="info-number">4+</span>
<span class="info-label">Music Genres</span>
</div>
</div>
</div>
<div class="producer-info">
<div class="producer-header">
<h3>$DMIDD$</h3>
<div class="producer-title">Founder & Lead Vocal Specialist</div>
</div>
<div class="producer-bio">
<p>As the 2nd founder of Home Room Recordings, $DMIDD$ has established himself as the go-to producer for vocal recording and production. His expertise in capturing the perfect vocal take has made him an essential part of the studio's success.</p>
<div class="achievements">
<h4>Specialties</h4>
<p>Known for his exceptional vocal recording techniques and production skills across multiple genres.</p>
<div class="expertise-areas">
<span class="expertise-tag">Vocal Recording</span>
<span class="expertise-tag">Mix Engineering</span>
<span class="expertise-tag">Production</span>
</div>
</div>
<div class="genre-expertise">
<h4>Production Expertise</h4>
<div class="genre-tags">
<span class="genre-tag"><i class="fas fa-bolt"></i> EDM</span>
<span class="genre-tag"><i class="fas fa-fire"></i> Trap</span>
<span class="genre-tag"><i class="fas fa-music"></i> Hip Hop</span>
<span class="genre-tag"><i class="fas fa-heart"></i> R&B</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="cards-section dark-section">
<div class="section-header">
<h2>Our Services</h2>
<p class="section-subtitle">Professional recording solutions</p>
</div>
<div class="cards-container">
<div class="card">
<i class="fas fa-microphone"></i>
<h3>Recording Session</h3>
<p class="price">$20/hour</p>
<ul class="feature-list">
<li><i class="fas fa-check"></i> Professional Equipment</li>
<li><i class="fas fa-check"></i> Studio Space</li>
<li><i class="fas fa-check"></i> Engineer Included</li>
<li><i class="fas fa-check"></i> Basic Mix Included</li>
</ul>
</div>
<div class="card">
<i class="fas fa-sliders-h"></i>
<h3>Emailed Mixdowns</h3>
<p class="price">$30/track</p>
<ul class="feature-list">
<li><i class="fas fa-check"></i> Send Your Tracks</li>
<li><i class="fas fa-check"></i> Professional Mix</li>
<li><i class="fas fa-check"></i> Quick Turnaround</li>
<li><i class="fas fa-check"></i> Digital Delivery</li>
</ul>
</div>
<div class="card">
<i class="fas fa-headphones"></i>
<h3>In Studio Mixdowns</h3>
<p class="price">$25/track</p>
<ul class="feature-list">
<li><i class="fas fa-check"></i> Professional Mix</li>
<li><i class="fas fa-check"></i> In Person Session</li>
<li><i class="fas fa-check"></i> Real-time Feedback</li>
<li><i class="fas fa-check"></i> Studio Monitors</li>
</ul>
</div>
</div>
</section>
<section class="cards-section">
<div class="cards-container">
<div class="card cta-card">
<i class="fas fa-music"></i>
<h2>Ready to Record?</h2>
<p>Book your session today and bring your music to life</p>
<div class="cta-buttons">
<a href="booking.html" class="cta-button">Book Now</a>
<a href="booking.html#rates" class="secondary-button">View Rates</a>
</div>
</div>
</div>
</section>
<footer>
<div class="footer-content">
<div class="footer-grid">
<div class="footer-section">
<h3>Home Room Recordings</h3>
<p>Professional Recording Studio</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html#services">Services</a></li>
<li><a href="studio.html">Studio</a></li>
<li><a href="beats.html">Beats</a></li>
<li><a href="booking.html">Book Now</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<div class="social-links">
<a href="#" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="Facebook"><i class="fab fa-facebook"></i></a>
<a href="#" aria-label="YouTube"><i class="fab fa-youtube"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Home Room Recordings. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>