-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
276 lines (239 loc) · 9.89 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Rhystic Study is a game and app development studio focused on creating immersive and innovative experiences. Join us on a creative journey.">
<meta name="keywords" content="Rhystic Study, game development, app development, creative studio, immersive experiences">
<meta name="author" content="Rhystic Studio">
<title>The Rhystic Study | Welcome</title>
<link rel="stylesheet" href="styles.css">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3920209036805773" crossorigin="anonymous"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
<style>
html {
scroll-behavior: smooth;
}
.hero-title {
animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* General Styles */
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #121212; /* Dark background */
color: #f4f4f4; /* Light text color */
}
/* Title Styling */
.section-title,
.values-title {
text-align: center;
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 20px;
color: #f4f4f4; /* Light text color */
text-transform: uppercase;
letter-spacing: 1px;
}
.mission-title {
font-size: 1.8rem;
color: #f4f4f4; /* Light text color */
margin-bottom: 10px;
}
/* Mission & Vision Container */
.mission-vision-container {
display: flex;
justify-content: space-between;
gap: 30px;
margin-bottom: 50px;
}
.mission-vision-box {
flex: 1;
background-color: #2d2d2d; /* Dark background for the box */
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Dark shadow for better contrast */
border-radius: 8px;
transition: all 0.3s ease;
}
.mission-vision-box:hover {
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7); /* Darker shadow on hover */
}
.mission-vision-box p {
font-size: 1rem;
color: #d1d1d1; /* Lighter text color inside boxes */
line-height: 1.4;
}
/* Values Section */
.values-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-bottom: 50px;
}
.value-box {
background-color: #2d2d2d; /* Dark background for the box */
padding: 25px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Dark shadow for better contrast */
border-radius: 8px;
transition: all 0.3s ease;
}
.value-box:hover {
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7); /* Darker shadow on hover */
}
.value-box h4 {
font-size: 1.5rem;
font-weight: bold;
color: #f4f4f4; /* Light text color */
margin-bottom: 15px;
}
.value-box p {
font-size: 1rem;
color: #d1d1d1; /* Lighter text color inside boxes */
line-height: 1.6;
}
/* Add more padding and margin for better spacing */
.content-container {
padding: 40px;
background-color: #181818; /* Dark background for the content section */
border-radius: 10px;
}
.hero-title {
font-size: 3rem;
text-align: center;
margin: 50px 0;
color: #f4f4f4; /* Light text color */
text-transform: uppercase;
}
.hero-subtitle {
text-align: center;
font-size: 1.2rem;
color: #bbb; /* Light gray text */
margin-bottom: 40px;
}
.scroll-indicator {
text-align: center;
font-size: 1.2rem;
color: #777; /* Darker gray for the scroll indicator */
}
footer {
background-color: #121212; /* Dark background for footer */
color: #888; /* Light gray text */
text-align: center;
padding: 20px;
}
footer a {
color: #f4f4f4; /* Light color for links */
text-decoration: none;
}
footer a:hover {
color: #ff9900; /* Highlight color on hover */
}
</style>
</head>
<body>
<header>
<div class="nav-container">
<nav class="left-nav">
<img src="RhysticStudyLogo.png" alt="Rhystic Study Logo" class="logo">
</nav>
<!-- Centered Navigation Links -->
<nav class="center-nav">
<a href="index.html" class="nav-link active">Home</a> <!-- Active class added here -->
<a href="about.html" class="nav-link">About</a>
<a href="services.html" class="nav-link">Portfolio</a>
<a href="contact.html" class="nav-link">Contact</a>
</nav>
<!-- Right-side Navigation Links -->
<nav class="right-nav">
<a href="shop.html" class="nav-link">Shop</a>
<a href="cart.html" class="nav-link"><i class="fas fa-shopping-cart"></i></a>
<a href="profile.html" class="nav-link"><i class="fas fa-user"></i></a>
</nav>
</div>
</header>
<main>
<section class="header-section">
<div class="hero-container">
<h1 class="hero-title">Welcome to The Rhystic Study</h1>
<p class="hero-subtitle">Innovative development studio dedicated to creating immersive and thought-provoking experiences.</p>
<div class="scroll-indicator">
<p>Scroll Down to Explore</p>
<div class="scroll-arrow">↓</div>
</div>
</div>
</section>
<section class="content-section">
<div class="content-container">
<h2 class="section-title">Our Mission & Vision</h2>
<div class="mission-vision-container">
<div class="mission-vision-box">
<h3 class="mission-title">Mission</h3>
<p>At Rhystic Studio, our mission is to develop games and apps that are accessible, engaging, and provoking. We believe in creating experiences that challenge conventions, spark curiosity, and invite players to explore new worlds.</p>
</div>
<div class="mission-vision-box">
<h3 class="mission-title">Vision</h3>
<p>Our vision is to redefine interactive entertainment by blending cutting-edge technology with creativity. We strive to craft immersive worlds that spark new ways of thinking, feeling, and connecting, inspiring a global community to engage with storytelling.</p>
</div>
</div>
<h3 class="values-title">Our Values: We Care</h3>
<div class="values-container">
<div class="value-box">
<h4>Community</h4>
<p>We foster inclusive, supportive, and collaborative spaces where players and creators come together to share, learn, and grow.</p>
</div>
<div class="value-box">
<h4>Accessibility</h4>
<p>We strive to make our games and apps accessible to all, ensuring that everyone, regardless of ability, can engage with and enjoy our experiences.</p>
</div>
<div class="value-box">
<h4>Respect</h4>
<p>We value the unique perspectives and voices of everyone, ensuring that our products reflect diversity and are created with empathy.</p>
</div>
<div class="value-box">
<h4>Environment</h4>
<p>We are committed to sustainable practices in both our development processes and the stories we tell, ensuring that our impact on the world is positive and lasting.</p>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<div class="footer-top">
<div class="social-icons">
<a href="https://facebook.com/RhysticStudios" target="_blank"><i class="fab fa-facebook"></i></a>
<a href="https://www.youtube.com/@RhysticStudios" target="_blank"><i class="fab fa-youtube"></i></a>
<a href="https://discord.gg/w2vTMUYvaH" target="_blank"><i class="fab fa-discord"></i></a>
<a href="https://github.com/MilitantMom/" target="_blank"><i class="fab fa-github"></i></a>
</div>
<a href="#top" class="back-to-top" aria-label="Back to Top">
<i class="fa-solid fa-arrow-up"></i>
</a>
</div>
<div class="footer-bottom">
<div class="policies">
<a href="terms.html" target="_blank">Terms of Service</a>
<a href="privacy.html" target="_blank">Privacy Policy</a>
<a href="refunds.html" target="_blank">Refund Policy</a>
</div>
<div class="logo">
<img src="RhysticStudyLogo.png" alt="Rhystic Study Logo">
</div>
</div>
<div class="footer-text">
<p>© 2024 The Rhystic Study | All rights reserved.</p>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>