-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
234 lines (200 loc) · 4.82 KB
/
Copy pathstyle.css
File metadata and controls
234 lines (200 loc) · 4.82 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background: #121212; /* Dark background for the whole site */
color: #f0f0f0; /* Light text for better contrast */
}
/* Header */
header {
background: linear-gradient(180deg, #ff0000, #990000); /* Red to dark red gradient */
padding: 20px 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo h1 {
font-size: 2.5em;
}
nav ul {
list-style: none;
display: flex;
}
nav ul li {
margin: 0 20px;
}
nav a {
color: white;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}
nav a:hover {
color: #ffdd57; /* Highlight color on hover */
}
/* Hero Section */
#hero {
background: linear-gradient(180deg, rgba(255, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1200x600') no-repeat center center/cover;
color: white;
height: 600px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
}
.hero-content {
z-index: 2;
text-align: center;
}
.colorful-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
}
/* About Section */
#about {
background: #2b2b2b; /* Darker background for about */
color: white;
padding: 40px 0;
}
.about-box {
background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
border-radius: 10px;
padding: 20px;
margin: 10px 0;
}
.about-content {
display: flex;
flex-direction: column;
align-items: center;
}
/* Services Section */
#services {
background: #282828; /* Darker background for services */
color: white;
padding: 40px 0;
}
.service-grid {
display: flex;
justify-content: space-around; /* Center the items */
flex-wrap: wrap; /* Allow wrapping */
}
.service-item {
background: #444; /* Dark gray background for each service item */
color: white;
padding: 20px;
border-radius: 10px;
margin: 10px;
width: 30%; /* Fixed width for service items */
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
.service-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.service-item h3 {
margin: 10px 0;
color: #ffdd57; /* Highlight service titles */
}
.service-item p {
color: #ddd; /* Softer text color for descriptions */
}
/* Testimonials */
#testimonials {
background: linear-gradient(180deg, #3b3b3b, #1a1a1a);
color: white;
padding: 40px 0;
}
.testimonial-slider {
display: flex;
justify-content: space-around;
max-width: 1200px;
margin: 0 auto;
}
/* Contact Section */
#contact {
background: linear-gradient(180deg, #8b0000, #4b0000);
color: white;
padding: 40px 0;
}
form {
max-width: 600px;
margin: 0 auto;
}
form input, form textarea, form select {
width: 100%;
padding: 10px;
margin: 10px 0;
border: none;
border-radius: 5px;
background: rgba(255, 255, 255, 0.1); /* Semi-transparent for inputs */
color: white; /* White text for better readability */
}
/* Book a Session Section */
#book {
background: linear-gradient(180deg, #3f3f3f, #1c1c1c); /* Darker gradient for booking */
color: white;
padding: 40px 0;
}
.booking-form {
max-width: 600px;
margin: 0 auto;
background: rgba(255, 0, 0, 0.2); /* Slightly transparent red background */
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
/* Buttons */
.btn, .cta {
background: red;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s, transform 0.3s;
}
.btn:hover, .cta:hover {
background: darkred;
transform: scale(1.05);
}
/* Footer */
footer {
background: black;
color: white;
text-align: center;
padding: 20px 0;
}
.footer-links a {
color: white;
margin: 0 10px;
text-decoration: none;
transition: color 0.3s;
}
.footer-links a:hover {
color: #ffdd57; /* Highlight color for footer links */
}
/* Adjustments for Mobile Responsiveness */
@media (max-width: 768px) {
.about-box, .service-item {
width: 90%; /* Full width on smaller screens */
margin: 10px auto; /* Center the items */
}
.about-content {
flex-direction: column; /* Stack boxes vertically */
align-items: center; /* Center align */
}
}