-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
171 lines (155 loc) · 5.85 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Room Recordings | Professional Recording Studio</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);
}
.cta-button {
background: var(--primary-color);
color: white;
transition: var(--transition);
}
.cta-button:hover {
background: var(--primary-hover);
}
.feature-card:hover {
border-color: var(--primary-color);
}
.feature-icon {
color: var(--primary-color);
}
.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);
}
</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="#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>
</nav>
<header class="hero">
<div class="hero-content">
<h1>Professional Recording<br>Made Simple</h1>
<p>Experience studio-quality sound in a comfortable, creative environment</p>
<div class="hero-cta">
<a href="booking.html" class="cta-button">Book Studio Time</a>
<a href="#services" class="secondary-button">View Services</a>
</div>
</div>
</header>
<section id="services" class="cards-section">
<div class="section-header">
<h2>Our Services</h2>
<p class="section-subtitle">Professional recording, mixing, and mastering services</p>
</div>
<div class="cards-container">
<div class="card">
<i class="fas fa-microphone"></i>
<h3>Recording</h3>
<p>State-of-the-art recording equipment and acoustically treated spaces for pristine audio capture.</p>
<a href="booking.html" class="cta-button">Book Recording</a>
</div>
<div class="card">
<i class="fas fa-sliders-h"></i>
<h3>Mixing</h3>
<p>Professional mixing services to blend and balance your tracks to perfection.</p>
<a href="booking.html" class="cta-button">Book Mixing</a>
</div>
<div class="card">
<i class="fas fa-compact-disc"></i>
<h3>Mastering</h3>
<p>Final polish and optimization for commercial-ready sound across all platforms.</p>
<a href="booking.html" class="cta-button">Book Mastering</a>
</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="#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>