-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
761 lines (688 loc) · 27.4 KB
/
index.html
File metadata and controls
761 lines (688 loc) · 27.4 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
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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alexander Royal - Portfolio</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:wght@400;500;600&family=Great+Vibes&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* Import all CSS frameworks */
@import url('text.css');
@import url('buttons.css');
@import url('cards.css');
@import url('forms.css');
/* Additional Portfolio Styles */
:root {
--primary-gold: #D4AF37;
--primary-dark: #2C1810;
--primary-light: #F5F5DC;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--font-sans);
background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #2D2D2D 100%);
color: var(--form-white);
line-height: 1.6;
overflow-x: hidden;
}
/* Navigation */
.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(15, 15, 15, 0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(212, 175, 55, 0.3);
z-index: 1000;
padding: 1rem 0;
transition: var(--transition-normal);
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-family: var(--font-display);
font-size: 1.8rem;
font-weight: 600;
color: var(--primary-gold);
text-decoration: none;
}
.nav-links {
display: flex;
gap: 2rem;
list-style: none;
}
.nav-links a {
color: var(--form-white);
text-decoration: none;
font-weight: 500;
transition: var(--transition-fast);
position: relative;
}
.nav-links a:hover {
color: var(--primary-gold);
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--primary-gold);
transition: var(--transition-normal);
}
.nav-links a:hover::after {
width: 100%;
}
/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 6rem 2rem 2rem;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
pointer-events: none;
}
.hero-content {
max-width: 800px;
z-index: 2;
}
.hero-badge {
display: inline-block;
background: rgba(212, 175, 55, 0.1);
color: var(--primary-gold);
padding: 0.5rem 1rem;
border-radius: var(--radius-full);
border: 1px solid rgba(212, 175, 55, 0.3);
margin-bottom: 1.5rem;
font-size: 0.9rem;
font-weight: 500;
}
.hero-image {
width: 200px;
height: 200px;
border-radius: 50%;
border: 4px solid var(--primary-gold);
margin: 0 auto 2rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 4rem;
color: white;
}
/* Sections */
.section {
padding: 5rem 2rem;
max-width: 1200px;
margin: 0 auto;
}
.section-header {
text-align: center;
margin-bottom: 3rem;
}
.section-title {
font-family: var(--font-display);
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--primary-gold);
}
.section-subtitle {
font-size: 1.1rem;
color: var(--form-gray-400);
max-width: 600px;
margin: 0 auto;
}
/* About Section */
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}
.about-text {
font-size: 1.1rem;
line-height: 1.8;
}
.skills-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.skill-item {
background: rgba(255, 255, 255, 0.05);
padding: 1rem;
border-radius: var(--radius-md);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: var(--transition-normal);
}
.skill-item:hover {
transform: translateY(-5px);
border-color: var(--primary-gold);
}
/* Projects Section */
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
}
/* Services Section */
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
/* Contact Section */
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.contact-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem;
background: rgba(255, 255, 255, 0.05);
border-radius: var(--radius-md);
transition: var(--transition-normal);
}
.contact-item:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateX(10px);
}
.contact-icon {
width: 50px;
height: 50px;
background: var(--primary-gold);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-dark);
font-size: 1.2rem;
}
/* Footer */
.footer {
background: rgba(15, 15, 15, 0.95);
border-top: 1px solid rgba(212, 175, 55, 0.3);
padding: 3rem 2rem;
text-align: center;
}
.social-links {
display: flex;
justify-content: center;
gap: 1rem;
margin: 2rem 0;
}
.social-link {
width: 50px;
height: 50px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--form-white);
text-decoration: none;
transition: var(--transition-normal);
}
.social-link:hover {
background: var(--primary-gold);
color: var(--primary-dark);
transform: translateY(-5px);
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in-up {
animation: fadeInUp 0.8s ease-out;
}
/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.about-content,
.contact-content {
grid-template-columns: 1fr;
}
.skills-grid {
grid-template-columns: 1fr;
}
.hero-image {
width: 150px;
height: 150px;
font-size: 3rem;
}
.section-title {
font-size: 2rem;
}
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
background: var(--primary-gold);
border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
background: var(--btn-gold-light);
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<a href="#" class="logo">Alexander Royal</a>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="hero-content animate-fade-in-up">
<div class="hero-badge">Premium Web Developer & Designer</div>
<div class="hero-image">
<i class="fas fa-crown"></i>
</div>
<h1 class="text-royal text-5xl text-center text-shadow-glow mb-4">
Alexander Royal
</h1>
<p class="text-silver text-xl text-center mb-8 leading-relaxed">
Crafting digital experiences with royal elegance and modern sophistication.
I create websites that combine historical beauty with cutting-edge technology.
</p>
<div class="flex gap-4 justify-center flex-wrap">
<button class="btn btn-gold btn-lg btn-shine">
View My Work
</button>
<button class="btn btn-outline-gold btn-lg">
Contact Me
</button>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="section">
<div class="section-header">
<h2 class="section-title">About Me</h2>
<p class="section-subtitle">Discover the journey of a modern digital craftsman</p>
</div>
<div class="about-content">
<div class="about-text">
<p class="text-lg leading-relaxed mb-6">
With over 8 years of experience in web development and design, I specialize in creating
premium digital experiences that blend historical elegance with modern functionality.
My work is characterized by attention to detail, royal aesthetics, and cutting-edge technology.
</p>
<p class="text-lg leading-relaxed mb-8">
I believe that every website should tell a story and create an emotional connection
with its audience. My approach combines traditional design principles with innovative
solutions to deliver exceptional results.
</p>
<button class="btn btn-gold btn-pulse">
Download Resume
</button>
</div>
<div class="skills-grid">
<div class="card card-royal skill-item">
<h4 class="text-gold font-display mb-2">Web Development</h4>
<p class="text-sm">HTML5, CSS3, JavaScript, React, Vue.js</p>
</div>
<div class="card card-silver skill-item">
<h4 class="text-charcoal font-display mb-2">UI/UX Design</h4>
<p class="text-sm">Figma, Adobe XD, User Research, Prototyping</p>
</div>
<div class="card card-bronze skill-item">
<h4 class="text-white font-display mb-2">Backend Development</h4>
<p class="text-sm">Node.js, Python, PHP, Database Design</p>
</div>
<div class="card card-parchment skill-item">
<h4 class="text-primary font-display mb-2">Digital Strategy</h4>
<p class="text-sm">SEO, Analytics, Conversion Optimization</p>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="section" style="background: rgba(15, 15, 15, 0.7);">
<div class="section-header">
<h2 class="section-title">Featured Projects</h2>
<p class="section-subtitle">A showcase of my premium digital creations</p>
</div>
<div class="projects-grid">
<!-- Project 1 -->
<div class="card card-business card-animate-fade">
<div class="card-badge card-badge-royal">Premium</div>
<img src="https://images.unsplash.com/photo-1556656793-08538906a9f8?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80"
alt="Royal Estate Website" class="card-img-top">
<div class="card-body">
<h3 class="text-xl font-display mb-2">Royal Estate Website</h3>
<p class="text-gray-600 mb-4">A luxurious property website with royal aesthetics and modern functionality.</p>
<div class="flex gap-2">
<span class="text-xs bg-gold text-primary px-2 py-1 rounded">React</span>
<span class="text-xs bg-silver text-primary px-2 py-1 rounded">Node.js</span>
<span class="text-xs bg-bronze text-white px-2 py-1 rounded">MongoDB</span>
</div>
</div>
<div class="card-footer">
<button class="btn btn-outline-gold btn-sm">View Project</button>
</div>
</div>
<!-- Project 2 -->
<div class="card card-crest card-animate-fade">
<div class="card-body">
<h3 class="text-2xl font-display mb-4">Heritage Museum</h3>
<p class="mb-6">An interactive digital museum experience preserving historical artifacts with modern technology.</p>
<button class="btn btn-silver">Explore Museum</button>
</div>
</div>
<!-- Project 3 -->
<div class="card card-product card-animate-fade">
<img src="https://images.unsplash.com/photo-1556740758-90de374c12ad?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80"
alt="Luxury E-commerce" class="card-img-top">
<div class="card-product-overlay">
<h4 class="text-lg font-display mb-2">Luxury E-commerce</h4>
<p class="text-sm mb-4">Premium shopping experience with royal customer service.</p>
<button class="btn btn-gold btn-sm">View Details</button>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="section">
<div class="section-header">
<h2 class="section-title">My Services</h2>
<p class="section-subtitle">Premium solutions for discerning clients</p>
</div>
<div class="services-grid">
<!-- Service 1 -->
<div class="card card-pricing">
<div class="card-header">
<h3 class="text-lg font-display">Web Development</h3>
</div>
<div class="card-body">
<div class="card-pricing-price">$5,000<span class="card-pricing-period">/project</span></div>
<ul class="card-pricing-features">
<li>Custom Website Development</li>
<li>Responsive Design</li>
<li>Performance Optimization</li>
<li>SEO Implementation</li>
<li>3 Months Support</li>
</ul>
<button class="btn btn-gold btn-full-width">Get Started</button>
</div>
</div>
<!-- Service 2 -->
<div class="card card-pricing card-pricing-featured">
<div class="card-badge card-badge-gold">Popular</div>
<div class="card-header">
<h3 class="text-lg font-display">UI/UX Design</h3>
</div>
<div class="card-body">
<div class="card-pricing-price">$3,500<span class="card-pricing-period">/project</span></div>
<ul class="card-pricing-features">
<li>User Research & Analysis</li>
<li>Wireframing & Prototyping</li>
<li>Visual Design System</li>
<li>Interactive Prototypes</li>
<li>Design Handoff</li>
</ul>
<button class="btn btn-gold btn-full-width">Get Started</button>
</div>
</div>
<!-- Service 3 -->
<div class="card card-pricing">
<div class="card-header">
<h3 class="text-lg font-display">Consultation</h3>
</div>
<div class="card-body">
<div class="card-pricing-price">$200<span class="card-pricing-period">/hour</span></div>
<ul class="card-pricing-features">
<li>Strategy Development</li>
<li>Technical Consultation</li>
<li>Code Review</li>
<li>Performance Audit</li>
<li>Best Practices</li>
</ul>
<button class="btn btn-outline-gold btn-full-width">Book Session</button>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section" style="background: rgba(15, 15, 15, 0.7);">
<div class="section-header">
<h2 class="section-title">Get In Touch</h2>
<p class="section-subtitle">Let's create something extraordinary together</p>
</div>
<div class="contact-content">
<div class="contact-info">
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-display text-gold">Email</h4>
<p>alexander@royal.dev</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-phone"></i>
</div>
<div>
<h4 class="font-display text-gold">Phone</h4>
<p>+1 (555) 123-ROYAL</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4 class="font-display text-gold">Location</h4>
<p>New York, NY</p>
</div>
</div>
<div class="card card-royal">
<div class="card-body">
<h4 class="font-display mb-4">Why Work With Me?</h4>
<ul class="space-y-2">
<li class="flex items-center gap-2">
<i class="fas fa-check text-gold"></i>
<span>Premium Quality Guarantee</span>
</li>
<li class="flex items-center gap-2">
<i class="fas fa-check text-gold"></i>
<span>Royal Attention to Detail</span>
</li>
<li class="flex items-center gap-2">
<i class="fas fa-check text-gold"></i>
<span>Timely Delivery</span>
</li>
<li class="flex items-center gap-2">
<i class="fas fa-check text-gold"></i>
<span>Ongoing Support</span>
</li>
</ul>
</div>
</div>
</div>
<div class="form-section form-section-royal">
<form class="form-stacked">
<div class="form-floating form-floating-royal">
<input type="text" class="form-input form-input-royal" id="contactName" placeholder=" " required>
<label for="contactName" class="form-label">Full Name</label>
</div>
<div class="form-floating form-floating-royal">
<input type="email" class="form-input form-input-royal" id="contactEmail" placeholder=" " required>
<label for="contactEmail" class="form-label">Email Address</label>
</div>
<div class="form-floating form-floating-royal">
<input type="text" class="form-input form-input-royal" id="contactSubject" placeholder=" " required>
<label for="contactSubject" class="form-label">Subject</label>
</div>
<div class="form-group">
<label for="contactMessage" class="form-label">Message</label>
<textarea class="form-input form-textarea form-textarea-royal" id="contactMessage" rows="5" placeholder="Tell me about your project..."></textarea>
</div>
<button type="submit" class="btn btn-gold btn-lg btn-full-width btn-shine">
Send Message
</button>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="logo text-center mb-4">Alexander Royal</div>
<p class="text-gray-400 mb-8">Crafting digital excellence with royal precision</p>
<div class="social-links">
<a href="#" class="social-link">
<i class="fab fa-github"></i>
</a>
<a href="#" class="social-link">
<i class="fab fa-linkedin"></i>
</a>
<a href="#" class="social-link">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="social-link">
<i class="fab fa-dribbble"></i>
</a>
<a href="#" class="social-link">
<i class="fab fa-behance"></i>
</a>
</div>
<div class="text-center text-gray-500 text-sm">
<p>© 2024 Alexander Royal. All rights reserved. | Crafted with <i class="fas fa-heart text-gold"></i> and royal precision</p>
</div>
</footer>
<!-- Floating Action Button -->
<button class="btn btn-gold btn-fab">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Navbar background on scroll
window.addEventListener('scroll', function() {
const navbar = document.querySelector('.navbar');
if (window.scrollY > 100) {
navbar.style.background = 'rgba(15, 15, 15, 0.98)';
navbar.style.backdropFilter = 'blur(20px)';
} else {
navbar.style.background = 'rgba(15, 15, 15, 0.95)';
navbar.style.backdropFilter = 'blur(20px)';
}
});
// Fade in animation on scroll
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, observerOptions);
// Observe all sections for animation
document.querySelectorAll('.section').forEach(section => {
section.style.opacity = '0';
section.style.transform = 'translateY(50px)';
section.style.transition = 'all 0.8s ease-out';
observer.observe(section);
});
// Form submission
document.querySelector('form').addEventListener('submit', function(e) {
e.preventDefault();
const submitBtn = this.querySelector('button[type="submit"]');
const originalText = submitBtn.textContent;
submitBtn.textContent = 'Sending...';
submitBtn.classList.add('btn-loading');
// Simulate form submission
setTimeout(() => {
submitBtn.textContent = 'Message Sent!';
submitBtn.classList.remove('btn-loading');
submitBtn.classList.add('btn-success');
setTimeout(() => {
submitBtn.textContent = originalText;
submitBtn.classList.remove('btn-success');
this.reset();
}, 3000);
}, 2000);
});
// Floating action button scroll to top
document.querySelector('.btn-fab').addEventListener('click', function() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
</script>
</body>
</html>