-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
803 lines (730 loc) 路 32.7 KB
/
Copy pathindex.html
File metadata and controls
803 lines (730 loc) 路 32.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
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
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agents - The Voice of Pietricica</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary: #801a1a;
--secondary: #3f0421;
--dark: #1f2937;
--light: #f3f4f6;
}
* {
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
color: var(--dark);
margin: 0;
padding: 0;
overflow-x: hidden;
}
img {
max-width: 100%;
height: auto;
display: block;
}
.navbar {
background: linear-gradient(135deg, var(--primary), var(--secondary));
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 0.75rem 0;
}
.navbar-brand {
font-size: clamp(1.25rem, 4vw, 1.8rem);
font-weight: bold;
color: white !important;
}
.nav-link {
color: rgba(255,255,255,0.9) !important;
padding: 0.5rem 0.75rem !important;
transition: color 0.3s;
}
.nav-link:hover {
color: white !important;
}
@media (min-width: 992px) {
.nav-link {
margin: 0 10px;
}
}
.hero-section {
position: relative;
height: 100vh;
min-height: 400px;
max-height: 800px;
overflow: hidden;
background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.hero-video {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
transform: translateX(-50%) translateY(-50%);
z-index: 0;
object-fit: cover;
}
@media (max-width: 768px) {
.hero-video {
display: none;
}
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
padding: 1rem;
}
.hero-content h1 {
font-size: clamp(2.5rem, 8vw, 4rem);
font-weight: bold;
margin-bottom: 1rem;
}
.hero-content p {
font-size: clamp(1rem, 3vw, 1.5rem);
}
.section-title {
text-align: center;
margin-bottom: clamp(2rem, 5vw, 3rem);
font-size: clamp(1.75rem, 5vw, 2.5rem);
font-weight: bold;
color: var(--primary);
padding: 0 1rem;
}
.counter-section {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
padding: clamp(2rem, 8vw, 5rem) 0;
}
.counter-box {
text-align: center;
padding: 1rem 0.5rem;
}
.counter-number {
font-size: clamp(2rem, 6vw, 3rem);
font-weight: bold;
margin-bottom: 0.5rem;
}
.counter-box p {
font-size: clamp(0.875rem, 2.5vw, 1rem);
margin: 0;
}
.card {
border: none;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
transition: transform 0.3s;
height: 100%;
}
.card:hover {
transform: translateY(-10px);
}
.card-img-top {
height: 250px;
object-fit: cover;
}
@media (max-width: 576px) {
.card-img-top {
height: 200px;
}
}
.gallery-img {
width: 100%;
height: 250px;
object-fit: cover;
cursor: pointer;
transition: transform 0.3s;
}
@media (max-width: 768px) {
.gallery-img {
height: 200px;
}
}
.gallery-img:hover {
transform: scale(1.05);
}
.testimonial-card {
background: var(--light);
padding: clamp(1.25rem, 4vw, 2rem);
border-radius: 10px;
margin: 1rem 0;
height: 100%;
}
.social-feed {
background: var(--light);
padding: clamp(1.25rem, 4vw, 2rem);
border-radius: 10px;
min-height: 300px;
}
footer {
background: var(--dark);
color: white;
padding: clamp(2rem, 5vw, 3rem) 0;
}
.social-icons a {
color: white;
font-size: clamp(1.25rem, 3vw, 1.5rem);
margin: 0 0.5rem;
transition: color 0.3s;
display: inline-block;
}
.social-icons a:hover {
color: var(--secondary);
}
.countdown-section {
background: var(--light);
padding: clamp(2rem, 6vw, 4rem) 0;
}
.countdown-box {
text-align: center;
padding: 1rem 0.5rem;
}
.countdown-number {
font-size: clamp(2rem, 6vw, 3rem);
font-weight: bold;
color: var(--primary);
}
.countdown-label {
font-size: clamp(0.875rem, 2.5vw, 1rem);
color: var(--dark);
}
.carousel-item img {
height: 400px;
object-fit: cover;
}
@media (max-width: 768px) {
.carousel-item img {
height: 250px;
}
}
.py-5 {
padding-top: clamp(2rem, 5vw, 3rem) !important;
padding-bottom: clamp(2rem, 5vw, 3rem) !important;
}
.btn {
padding: 0.75rem 1.5rem;
font-size: clamp(0.875rem, 2.5vw, 1rem);
}
iframe {
width: 100%;
height: 300px;
border: 0;
}
@media (max-width: 576px) {
iframe {
height: 250px;
}
}
.accordion-button {
font-size: clamp(0.875rem, 2.5vw, 1rem);
}
.social-feed img {
max-width: 100%;
height: auto;
}
@media (prefers-reduced-motion: reduce) {
* {
animation: none !important;
transition: none !important;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="#home"><i class="fas fa-guitar"></i> AGENTS</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#gallery">Gallery</a></li>
<li class="nav-item"><a class="nav-link" href="#tour">Tour</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero with Video -->
<section id="home" class="hero-section">
<video autoplay muted loop playsinline class="hero-video" aria-hidden="true">
<source src="https://assets.mixkit.co/videos/17630/17630-720.mp4" type="video/mp4">
</video>
<div class="hero-overlay"></div>
<div class="hero-content">
<div>
<h1>Agents</h1>
<p class="lead">The German Rock Stone of Moldova</p>
<button class="btn btn-light btn-lg mt-3">Listen Now</button>
</div>
</div>
</section>
<!-- Counters -->
<section class="counter-section">
<div class="container">
<div class="row g-3">
<div class="col-6 col-md-3">
<div class="counter-box">
<div class="counter-number" data-target="100">0</div>
<p>Concerts</p>
</div>
</div>
<div class="col-6 col-md-3">
<div class="counter-box">
<div class="counter-number" data-target="3">0</div>
<p>Albums</p>
</div>
</div>
<div class="col-6 col-md-3">
<div class="counter-box">
<div class="counter-number" data-target="125000">0</div>
<p>Fans</p>
</div>
</div>
<div class="col-6 col-md-3">
<div class="counter-box">
<div class="counter-number" data-target="2">0</div>
<p>Awards</p>
</div>
</div>
</div>
</div>
</section>
<!-- Countdown to Next Concert -->
<section class="countdown-section">
<div class="container">
<h2 class="section-title">Next Concert In</h2>
<div class="row g-3" id="countdown">
<div class="col-6 col-md-3">
<div class="countdown-box">
<div class="countdown-number" id="days">0</div>
<div class="countdown-label">Days</div>
</div>
</div>
<div class="col-6 col-md-3">
<div class="countdown-box">
<div class="countdown-number" id="hours">0</div>
<div class="countdown-label">Hours</div>
</div>
</div>
<div class="col-6 col-md-3">
<div class="countdown-box">
<div class="countdown-number" id="minutes">0</div>
<div class="countdown-label">Minutes</div>
</div>
</div>
<div class="col-6 col-md-3">
<div class="countdown-box">
<div class="countdown-number" id="seconds">0</div>
<div class="countdown-label">Seconds</div>
</div>
</div>
</div>
</div>
</section>
<!-- Carousel Section -->
<section class="py-5">
<div class="container">
<h2 class="section-title">Latest Releases</h2>
<div id="albumCarousel" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#albumCarousel" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#albumCarousel" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#albumCarousel" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=800&h=400&fit=crop" class="d-block w-100" alt="Midnight Thunder Album" loading="lazy">
<div class="carousel-caption d-none d-md-block">
<h5>Midnight Thunder</h5>
<p>Our latest album featuring 12 powerful tracks</p>
</div>
</div>
<div class="carousel-item">
<img src="https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?w=800&h=400&fit=crop" class="d-block w-100" alt="Electric Dreams Album" loading="lazy">
<div class="carousel-caption d-none d-md-block">
<h5>Electric Dreams</h5>
<p>Chart-topping single now available</p>
</div>
</div>
<div class="carousel-item">
<img src="https://images.unsplash.com/photo-1514320291840-2e0a9bf2a9ae?w=800&h=400&fit=crop" class="d-block w-100" alt="Live at Madison Square" loading="lazy">
<div class="carousel-caption d-none d-md-block">
<h5>Live at Pietricica</h5>
<p>Experience our epic live performance</p>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#albumCarousel" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#albumCarousel" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<!-- Band Members Cards -->
<section id="about" class="py-5 bg-light">
<div class="container">
<h2 class="section-title">Meet The Band</h2>
<div class="row g-4">
<div class="col-sm-6 col-lg-3">
<div class="card">
<img src="https://i.imgur.com/cCcYLNf.png" class="card-img-top" alt="Alex Storm - Lead Vocals" loading="lazy">
<div class="card-body text-center">
<h5 class="card-title">Axel Lexa</h5>
<p class="card-text">Lead Vocals</p>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-3">
<div class="card">
<img src="https://images.unsplash.com/photo-1571330735066-03aaa9429d89?w=400&h=400&fit=crop" class="card-img-top" alt="Jake Rivers - Lead Guitar" loading="lazy">
<div class="card-body text-center">
<h5 class="card-title">Snake Ekans</h5>
<p class="card-text">Lead Guitar</p>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-3">
<div class="card">
<img src="https://images.unsplash.com/photo-1519058082700-08a0b56da9b4?w=400&h=400&fit=crop" class="card-img-top" alt="Mike Thunder - Bass Guitar" loading="lazy">
<div class="card-body text-center">
<h5 class="card-title">Mike Ekimr</h5>
<p class="card-text">Bass Guitar</p>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-3">
<div class="card">
<img src="https://images.unsplash.com/photo-1522069169874-c58ec4b76be5?w=400&h=400&fit=crop" class="card-img-top" alt="Chris Blaze - Drums" loading="lazy">
<div class="card-body text-center">
<h5 class="card-title">John Nhoj</h5>
<p class="card-text">Drums</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section id="gallery" class="py-5">
<div class="container">
<h2 class="section-title">Photo Gallery</h2>
<div class="row g-3">
<div class="col-sm-6 col-md-4">
<img src="https://images.unsplash.com/photo-1501612780327-45045538702b?w=600&h=400&fit=crop" class="gallery-img rounded" alt="Concert Photo 1" loading="lazy">
</div>
<div class="col-sm-6 col-md-4">
<img src="https://images.unsplash.com/photo-1524368535928-5b5e00ddc76b?w=600&h=400&fit=crop" class="gallery-img rounded" alt="Concert Photo 2" loading="lazy">
</div>
<div class="col-sm-6 col-md-4">
<img src="https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?w=600&h=400&fit=crop" class="gallery-img rounded" alt="Concert Photo 3" loading="lazy">
</div>
<div class="col-sm-6 col-md-4">
<img src="https://images.unsplash.com/photo-1459749411175-04bf5292ceea?w=600&h=400&fit=crop" class="gallery-img rounded" alt="Concert Photo 4" loading="lazy">
</div>
<div class="col-sm-6 col-md-4">
<img src="https://images.unsplash.com/photo-1510915361894-db8b60106cb1?w=600&h=400&fit=crop" class="gallery-img rounded" alt="Concert Photo 5" loading="lazy">
</div>
<div class="col-sm-6 col-md-4">
<img src="https://images.unsplash.com/photo-1506157786151-b8491531f063?w=600&h=400&fit=crop" class="gallery-img rounded" alt="Concert Photo 6" loading="lazy">
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-5 bg-light">
<div class="container">
<h2 class="section-title">Fans' Opinion - Defo not paid</h2>
<div class="row g-4">
<div class="col-md-4">
<div class="testimonial-card">
<p><i class="fas fa-quote-left"></i> Best concert I've ever been to! The energy was incredible and the band's performance was absolutely phenomenal.</p>
<p class="text-end mb-0"><strong>- Sarah J.</strong></p>
</div>
</div>
<div class="col-md-4">
<div class="testimonial-card">
<p><i class="fas fa-quote-left"></i> Agents never disappoints! Their new album is a masterpiece. Can't stop listening to it on repeat.</p>
<p class="text-end mb-0"><strong>- Marcus T.</strong></p>
</div>
</div>
<div class="col-md-4">
<div class="testimonial-card">
<p><i class="fas fa-quote-left"></i> These guys are the real deal. Amazing musicianship and stage presence that keeps you hooked from start to finish.</p>
<p class="text-end mb-0"><strong>- Emily R.</strong></p>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Accordion Section -->
<section class="py-5">
<div class="container">
<h2 class="section-title">Frequently Asked Questions</h2>
<div class="accordion" id="faqAccordion">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#faq1" aria-expanded="true" aria-controls="faq1">
How can I buy tickets for upcoming concerts?
</button>
</h2>
<div id="faq1" class="accordion-collapse collapse show" data-bs-parent="#faqAccordion">
<div class="accordion-body">
Tickets can be purchased through our official website or authorized ticketing partners. Check our Tour section for upcoming dates and venue information.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq2" aria-expanded="false" aria-controls="faq2">
Where can I listen to your music?
</button>
</h2>
<div id="faq2" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
<div class="accordion-body">
Our music is available on all major streaming platforms including Spotify, Apple Music, YouTube Music, Amazon Music, and more.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq3" aria-expanded="false" aria-controls="faq3">
Do you offer VIP packages?
</button>
</h2>
<div id="faq3" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
<div class="accordion-body">
Yes! VIP packages include meet and greet opportunities, exclusive merchandise, and premium seating. Details are available during ticket purchase.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq4" aria-expanded="false" aria-controls="faq4">
How can I book Agents for a private event?
</button>
</h2>
<div id="faq4" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
<div class="accordion-body">
For booking inquiries, please contact our management team at booking@Agentsband.com with event details, date, and location.
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Social Media Feed Section -->
<section id="tour" class="py-5 bg-light">
<div class="container">
<h2 class="section-title">Follow Us</h2>
<div class="row g-4">
<div class="col-md-6">
<div class="social-feed">
<h4><i class="fab fa-twitter"></i> Twitter Feed</h4>
<div class="mt-3">
<p><strong>@AgentsOfPN</strong> 路 2h</p>
<p>Can't wait for tonight's show in Los Angeles! Who's coming? 馃幐馃敟 #AgentsTour2025</p>
<hr>
<p><strong>@AgentsOfPN</strong> 路 5h</p>
<p>New single "Storm Chaser" drops this Friday! Pre-save now 馃幍</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="social-feed">
<h4><i class="fab fa-instagram"></i> Instagram Feed</h4>
<div class="mt-3">
<img src="https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=300&h=200&fit=crop" class="img-fluid rounded mb-2" alt="Instagram post - Backstage vibes" loading="lazy">
<p><strong>AgentsOfPN</strong> Backstage vibes before the show! 馃摳</p>
<hr>
<p><strong>AgentsOfPN</strong> Studio sessions for our next album 馃帳</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact & Map Section -->
<section id="contact" class="py-5">
<div class="container">
<h2 class="section-title">Visit Our Studio</h2>
<div class="row g-4">
<div class="col-md-6">
<h4>Contact Information</h4>
<p><i class="fas fa-map-marker-alt"></i> Strada Schitului 17, Piatra Neam葲</p>
<p><i class="fas fa-phone"></i> +40 755 994 340</p>
<p><i class="fas fa-envelope"></i> info@agentsteam.com</p>
<div class="social-icons mt-4">
<a href="#" aria-label="Facebook"><i class="fab fa-facebook"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="#" aria-label="YouTube"><i class="fab fa-youtube"></i></a>
<a href="#" aria-label="Spotify"><i class="fab fa-spotify"></i></a>
</div>
</div>
<div class="col-md-6">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d19125.54343720665!2d26.36927136668468!3d46.93063028542808!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x473555b190b2a7ed%3A0x7ff72036c5ddc010!2s%22Pietricica%22%20Hill!5e1!3m2!1sen!2sro!4v1761558256690!5m2!1sen!2sro"
allowfullscreen=""
loading="lazy"
title="Studio Location Map">
</iframe>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="row g-4">
<div class="col-md-4">
<h5>About Agents</h5>
<p>A rock band pushing boundaries and creating unforgettable experiences since 2015.</p>
</div>
<div class="col-md-4">
<h5>Quick Links</h5>
<ul class="list-unstyled">
<li><a href="#" class="text-white text-decoration-none">Privacy Policy</a></li>
<li><a href="#" class="text-white text-decoration-none">Terms of Service</a></li>
<li><a href="#" class="text-white text-decoration-none">Merchandise</a></li>
</ul>
</div>
<div class="col-md-4">
<h5>Newsletter</h5>
<p>Subscribe for updates and exclusive content</p>
<div class="input-group">
<input type="email" class="form-control" placeholder="Your email" aria-label="Email address">
<button class="btn btn-light" type="button">Subscribe</button>
</div>
</div>
</div>
<hr class="bg-white my-4">
<div class="text-center">
<p class="mb-0">© 2025 Agents Band. All rights reserved.</p>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script>
// Counter Animation with Intersection Observer for performance
const counters = document.querySelectorAll('.counter-number');
let hasAnimated = false;
const animateCounters = () => {
if (hasAnimated) return;
hasAnimated = true;
counters.forEach(counter => {
const target = +counter.getAttribute('data-target');
const increment = target / 100;
let current = 0;
const updateCount = () => {
if (current < target) {
current += increment;
counter.innerText = Math.ceil(current).toLocaleString();
requestAnimationFrame(updateCount);
} else {
counter.innerText = target.toLocaleString();
}
};
updateCount();
});
};
// Observe counter section
const counterSection = document.querySelector('.counter-section');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
animateCounters();
}
});
}, { threshold: 0.5 });
if (counterSection) {
observer.observe(counterSection);
}
// Countdown Timer
const countdownDate = new Date('Mar 06, 2026 20:00:00').getTime();
const updateCountdown = () => {
const now = new Date().getTime();
const distance = countdownDate - now;
if (distance < 0) {
document.getElementById('countdown').innerHTML = '<div class="col-12"><h2 class="text-center">Concert Started!</h2></div>';
return;
}
const days = Math.floor(distance / (1000 * 60 * 60 * 24));
const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((distance % (1000 * 60)) / 1000);
const daysEl = document.getElementById('days');
const hoursEl = document.getElementById('hours');
const minutesEl = document.getElementById('minutes');
const secondsEl = document.getElementById('seconds');
if (daysEl) daysEl.innerText = days;
if (hoursEl) hoursEl.innerText = hours;
if (minutesEl) minutesEl.innerText = minutes;
if (secondsEl) secondsEl.innerText = seconds;
};
updateCountdown();
setInterval(updateCountdown, 1000);
// Smooth scroll for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
const href = this.getAttribute('href');
if (href !== '#' && href.length > 1) {
e.preventDefault();
const target = document.querySelector(href);
if (target) {
const navHeight = document.querySelector('.navbar').offsetHeight;
const targetPosition = target.offsetTop - navHeight;
window.scrollTo({
top: targetPosition,
behavior: 'smooth'
});
// Close mobile menu if open
const navbarCollapse = document.getElementById('navbarNav');
if (navbarCollapse && navbarCollapse.classList.contains('show')) {
const bsCollapse = new bootstrap.Collapse(navbarCollapse);
bsCollapse.hide();
}
}
}
});
});
// Lazy load video on mobile for performance
if (window.innerWidth <= 768) {
const video = document.querySelector('.hero-video');
if (video) {
video.pause();
video.removeAttribute('autoplay');
}
}
</script>
</body>
</html>