-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
638 lines (567 loc) · 20.7 KB
/
index.html
File metadata and controls
638 lines (567 loc) · 20.7 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> | Bienvenue sur notre site congoweb studio Professionnel</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary: #2c3e50;
--secondary: #3498db;
--accent: #e74c3c;
--light: #ecf0f1;
--dark: #2c3e50;
--text: #333;
--shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
--transition: all 0.3s ease;
}
body {
font-family: 'Poppins', sans-serif;
color: var(--text);
background-color: #f9f9f9;
line-height: 1.6;
}
h1, h2, h3, h4 {
font-family: 'Playfair Display', serif;
margin-bottom: 20px;
color: var(--primary);
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}
/* Header */
header {
background-color: white;
box-shadow: var(--shadow);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
height: 50px;
margin-right: 15px;
}
.logo h1 {
font-size: 1.8rem;
margin-bottom: 0;
color: var(--primary);
}
.nav-links {
display: flex;
list-style: none;
}
.nav-links li {
margin-left: 30px;
}
.nav-links a {
text-decoration: none;
color: var(--dark);
font-weight: 500;
transition: var(--transition);
}
.nav-links a:hover {
color: var(--secondary);
}
.mobile-menu {
display: none;
font-size: 1.5rem;
cursor: pointer;
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
height: 100vh;
display: flex;
align-items: center;
color: white;
text-align: center;
padding-top: 80px;
}
.hero-content {
max-width: 800px;
margin: 0 auto;
}
.hero h2 {
font-size: 3.5rem;
margin-bottom: 20px;
color: white;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 30px;
}
.btn {
display: inline-block;
background: var(--secondary);
color: white;
padding: 12px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: 500;
transition: var(--transition);
border: 2px solid var(--secondary);
margin: 10px;
}
.btn:hover {
background: transparent;
color: var(--secondary);
}
.btn-outline {
background: transparent;
border: 2px solid white;
}
.btn-outline:hover {
background: white;
color: var(--primary);
}
/* Contact Section */
.contact-section {
padding: 100px 0;
background-color: white;
}
.section-title {
text-align: center;
margin-bottom: 60px;
}
.section-title h2 {
font-size: 2.5rem;
position: relative;
display: inline-block;
padding-bottom: 15px;
}
.section-title h2::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: var(--secondary);
}
.contact-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}
.contact-info {
background: var(--light);
padding: 40px;
border-radius: 10px;
box-shadow: var(--shadow);
}
.contact-info h3 {
margin-bottom: 30px;
color: var(--primary);
}
.contact-methods {
list-style: none;
}
.contact-methods li {
margin-bottom: 25px;
display: flex;
align-items: center;
}
.contact-icon {
width: 60px;
height: 60px;
background: var(--secondary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
color: white;
font-size: 1.5rem;
}
.contact-details h4 {
margin-bottom: 5px;
font-size: 1.2rem;
}
.contact-details a {
color: var(--text);
text-decoration: none;
transition: var(--transition);
display: block;
}
.contact-details a:hover {
color: var(--secondary);
}
/* Services Section */
.services-section {
padding: 100px 0;
background-color: var(--light);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.service-card {
background: white;
padding: 40px 30px;
border-radius: 10px;
box-shadow: var(--shadow);
transition: var(--transition);
text-align: center;
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.service-icon {
font-size: 3rem;
color: var(--secondary);
margin-bottom: 20px;
}
.service-card h3 {
margin-bottom: 15px;
}
/* Footer */
footer {
background: var(--primary);
color: white;
padding: 60px 0 30px;
}
.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-col h4 {
color: white;
margin-bottom: 25px;
position: relative;
padding-bottom: 10px;
}
.footer-col h4::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 2px;
background: var(--secondary);
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 15px;
}
.footer-links a {
color: #ddd;
text-decoration: none;
transition: var(--transition);
}
.footer-links a:hover {
color: var(--secondary);
padding-left: 5px;
}
.social-links {
display: flex;
margin-top: 20px;
}
.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: white;
margin-right: 10px;
transition: var(--transition);
}
.social-links a:hover {
background: var(--secondary);
transform: translateY(-5px);
}
.copyright {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.9rem;
color: #aaa;
}
/* Responsive */
@media (max-width: 992px) {
.hero h2 {
font-size: 3rem;
}
}
@media (max-width: 768px) {
.mobile-menu {
display: block;
}
.nav-links {
position: absolute;
top: 80px;
left: 0;
background: white;
width: 100%;
flex-direction: column;
align-items: center;
padding: 20px 0;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
transition: var(--transition);
}
.nav-links.active {
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.nav-links li {
margin: 15px 0;
}
.hero h2 {
font-size: 2.5rem;
}
.section-title h2 {
font-size: 2rem;
}
}
@media (max-width: 576px) {
.hero h2 {
font-size: 2rem;
}
.btn {
display: block;
margin: 10px auto;
max-width: 250px;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<nav class="navbar">
<div class="logo">
<img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSIjMzQ5OGRiIj48cGF0aCBkPSJNMTIsMkExMCwxMCAwIDAsMCAyLDEyQTEwLDEwIDAgMCwwIDEyLDIyQTEwLDEwIDAgMCwwIDIyLDEyQTEwLDEwIDAgMCwwIDEyLDJNMTIsMjBBOCw4IDAgMCwxIDQsMTJBOCw4IDAgMCwxIDEyLDRBOCw4IDAgMCwxIDIwLDEyQTgsOCAwIDAsMSAxMiwyME0xMiw2QTcsNyAwIDAsMCA1LDEyQTcsNyAwIDAsMCAxMiwxOUE3LDcgMCAwLDAgMTksMTJBNyw3IDAgMCwwIDEyLDZNMTIsOEE0LDQgMCAwLDEgMTYsMTJBNCw0IDAgMCwxIDEyLDE2QTQsNCAwIDAsMSA4LDEyQTQsNCAwIDAsMSAxMiw4WiIvPjwvc3ZnPg==" alt="Logo">
<h1>Congoweb studio</h1>
</div>
<ul class="nav-links">
<li><a href="#accueil">Accueil</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#apropos">À Propos</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="mobile-menu">
<i class="fas fa-bars"></i>
</div>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="hero" id="accueil">
<div class="container">
<div class="hero-content">
<h2>Solutions Professionnelles pour Votre Entreprise</h2>
<p>Nous offrons des services de haute qualité adaptés à vos besoins professionnels pour propulser votre entreprise vers de nouveaux sommets.</p>
<div>
<a href="#contact" class="btn">Nous contacter</a>
<a href="#services" class="btn btn-outline">Nos services</a>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact-section" id="contact">
<div class="container">
<div class="section-title">
<h2>Contactez-nous</h2>
<p>Restons connectés, notre équipe est à votre disposition</p>
</div>
<div class="contact-container">
<div class="contact-info">
<h3>Nos coordonnées</h3>
<ul class="contact-methods">
<li>
<div class="contact-icon">
<i class="fab fa-whatsapp"></i>
</div>
<div class="contact-details">
<h4>WhatsApp</h4>
<a href="https://wa.me/+242044307593" target="_blank">+242 04 430 75 93</a>
</div>
</li>
<li>
<div class="contact-icon">
<i class="fas fa-phone-alt"></i>
</div>
<div class="contact-details">
<h4>Téléphone</h4>
<a href="tel:+242044307593">+242 04 430 75 93</a>
</div>
</li>
<li>
<div class="contact-icon">
<i class="far fa-envelope"></i>
</div>
<div class="contact-details">
<h4>Email</h4>
<a href="mailto:congowebstudio@gmail.com">congowebstudio@gmail.com</a>
</div>
</li>
<li>
<div class="contact-icon">
<i class="fab fa-facebook-f"></i>
</div>
<div class="contact-details">
<h4>Facebook</h4>
<a href="https://www.instagram.com/congoweb_studio?igsh=eWQxOWh2cmxoYnhh&utm_source=qr" target="_blank">instagram.com/congoweb_studio</a>
</div>
</li>
</ul>
</div>
<div class="contact-info">
<h3>Horaires d'ouverture</h3>
<p>Notre équipe est disponible pour répondre à vos besoins professionnels aux horaires suivants :</p>
<ul class="footer-links">
<li><strong>Lundi - Vendredi:</strong> 9h00 - 15h00</li>
<li><strong>Samedi:</strong> 10h00 - 14h00</li>
<li><strong>Dimanche:</strong> Fermé</li>
</ul>
<div style="margin-top: 30px;">
<h4>Adresse</h4>
<p>Avenue mayamaya<br>brazzaville, </p>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section class="services-section" id="services">
<div class="container">
<div class="section-title">
<h2>Nos Services</h2>
<p>Découvrez notre gamme de services professionnels</p>
</div>
<div class="services-grid">
<div class="service-card">
<div class="service-icon">
<i class="fas fa-laptop-code"></i>
</div>
<h3>Développement Web</h3>
<p>Création de sites vitrines, e-commerce et applications web sur mesure pour votre entreprise.</p>
</div>
<div class="service-card">
<div class="service-icon">
<i class="fas fa-bullhorn"></i>
</div>
<h3>Marketing Digital</h3>
<p>Stratégies digitales complètes pour augmenter votre visibilité et votre clientèle.</p>
</div>
<div class="service-card">
<div class="service-icon">
<i class="fas fa-palette"></i>
</div>
<h3>Design Graphique</h3>
<p>Créations visuelles professionnelles pour renforcer votre identité de marque.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-container">
<div class="footer-col">
<div class="logo">
<img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSIjZmZmIj48cGF0aCBkPSJNMTIsMkExMCwxMCAwIDAsMCAyLDEyQTEwLDEwIDAgMCwwIDEyLDIyQTEwLDEwIDAgMCwwIDIyLDEyQTEwLDEwIDAgMCwwIDEyLDJNMTIsMjBBOCw4IDAgMCwxIDQsMTJBOCw4IDAgMCwxIDEyLDRBOCw4IDAgMCwxIDIwLDEyQTgsOCAwIDAsMSAxMiwyME0xMiw2QTcsNyAwIDAsMCA1LDEyQTcsNyAwIDAsMCAxMiwxOUE3LDcgMCAwLDAgMTksMTJBNyw3IDAgMCwwIDEyLDZNMTIsOEE0LDQgMCAwLDEgMTYsMTJBNCw0IDAgMCwxIDEyLDE2QTQsNCAwIDAsMSA4LDEyQTQsNCAwIDAsMSAxMiw4WiIvPjwvc3ZnPg==" alt="Logo">
<h1 style="color: white;">congoweb studio</h1>
</div>
<p style="margin-top: 20px;">Des solutions professionnelles pour propulser votre entreprise vers l'excellence.</p>
<div class="social-links">
<a href="https://www.instagram.com/congoweb_studio?igsh=eWQxOWh2cmxoYnhh&utm_source=qr" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://wa.me/+242044307593" target="_blank"><i class="fab fa-whatsapp"></i></a>
<a href="mailto: congowebstudio@gmail.com"><i class="far fa-envelope"></i></a>
<a href="tel:+24206486977"><i class="fas fa-phone-alt"></i></a>
</div>
</div>
<div class="footer-col">
<h4>Liens rapides</h4>
<ul class="footer-links">
<li><a href="#accueil">Accueil</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#apropos">À Propos</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Nos services</h4>
<ul class="footer-links">
<li><a href="#">Développement Web</a></li>
<li><a href="#">Marketing Digital</a></li>
<li><a href="#">Design Graphique</a></li>
<li><a href="#">Consulting</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Contact</h4>
<ul class="footer-links">
<li><i class="fas fa-map-marker-alt"></i> Avenue mayamaya, brazzaville</li>
<li><i class="fas fa-phone"></i> +242 04 430 75 93</li>
<li><i class="far fa-envelope"></i> congowebstudio@gmail.com</li>
</ul>
</div>
</div>
<div class="copyright">
<p>© 2025 congoweb studio. Tous droits réservés.</p>
</div>
</div>
</footer>
<script>
// Mobile Menu Toggle
const mobileMenu = document.querySelector('.mobile-menu');
const navLinks = document.querySelector('.nav-links');
mobileMenu.addEventListener('click', () => {
navLinks.classList.toggle('active');
mobileMenu.querySelector('i').classList.toggle('fa-bars');
mobileMenu.querySelector('i').classList.toggle('fa-times');
});
// Smooth Scrolling
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
navLinks.classList.remove('active');
mobileMenu.querySelector('i').classList.add('fa-bars');
mobileMenu.querySelector('i').classList.remove('fa-times');
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Header scroll effect
window.addEventListener('scroll', () => {
const header = document.querySelector('header');
header.classList.toggle('scrolled', window.scrollY > 100);
});
</script>
</body>
</html>