File size: 35,887 Bytes
48e6698 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MUHAMMAD SAFO STUDIO - Professional Photography</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
background-color: #0f172a;
color: #f8fafc;
}
.hero-section {
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
height: 100vh;
position: relative;
overflow: hidden;
}
.camera-container {
position: absolute;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.camera {
width: 400px;
height: 300px;
background: #111827;
border-radius: 20px;
position: relative;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
transform-style: preserve-3d;
animation: float 6s ease-in-out infinite;
}
.camera:before {
content: '';
position: absolute;
width: 100%;
height: 30px;
background: #1f2937;
bottom: -15px;
left: 0;
border-radius: 10px;
transform: rotateX(60deg);
filter: blur(15px);
opacity: 0.5;
}
.lens {
position: absolute;
width: 120px;
height: 120px;
background: linear-gradient(135deg, #334155, #1e293b);
border-radius: 50%;
top: 60px;
left: 50%;
transform: translateX(-50%);
border: 10px solid #0f172a;
box-shadow: 0 0 0 10px #1e293b;
}
.lens-inner {
position: absolute;
width: 80px;
height: 80px;
background: linear-gradient(135deg, #0f172a, #1e293b);
border-radius: 50%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border: 5px solid #334155;
}
.lens-reflect {
position: absolute;
width: 20px;
height: 20px;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
top: 20px;
right: 20px;
}
.brand {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
color: #f8fafc;
font-size: 24px;
font-weight: bold;
letter-spacing: 2px;
}
.shutter {
position: absolute;
width: 60px;
height: 60px;
background: #1e293b;
border-radius: 50%;
top: 180px;
right: 50px;
border: 5px solid #334155;
cursor: pointer;
transition: all 0.3s ease;
}
.shutter:hover {
background: #334155;
transform: scale(1.05);
}
@keyframes float {
0% { transform: translateY(0px) rotateY(0deg); }
50% { transform: translateY(-20px) rotateY(5deg); }
100% { transform: translateY(0px) rotateY(0deg); }
}
.floating-text {
position: absolute;
font-size: 5rem;
font-weight: 800;
color: rgba(255, 255, 255, 0.05);
white-space: nowrap;
animation: floatText 30s linear infinite;
}
@keyframes floatText {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.section-title {
position: relative;
display: inline-block;
margin-bottom: 3rem;
}
.section-title:after {
content: '';
position: absolute;
width: 50%;
height: 3px;
background: #3b82f6;
bottom: -10px;
left: 25%;
border-radius: 3px;
}
.gallery-item {
transition: all 0.3s ease;
overflow: hidden;
border-radius: 10px;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}
.gallery-item:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}
.gallery-item img {
transition: all 0.5s ease;
}
.gallery-item:hover img {
transform: scale(1.05);
}
.social-icon {
width: 50px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
transition: all 0.3s ease;
}
.social-icon:hover {
transform: translateY(-5px);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
background: #3b82f6;
bottom: 0;
left: 0;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.floating-btn {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="fixed w-full bg-gray-900 bg-opacity-90 backdrop-blur-md z-50 shadow-lg">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-20">
<div class="flex items-center">
<div class="flex-shrink-0">
<span class="text-2xl font-bold text-blue-400">MUHAMMAD SAFO STUDIO</span>
</div>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-8">
<a href="#home" class="nav-link text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Home</a>
<a href="#services" class="nav-link text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Services</a>
<a href="#gallery" class="nav-link text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Gallery</a>
<a href="#contact" class="nav-link text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Contact</a>
</div>
</div>
<div class="md:hidden">
<button class="mobile-menu-button p-2 rounded-md text-gray-400 hover:text-white focus:outline-none">
<svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="mobile-menu hidden md:hidden bg-gray-800">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="block px-3 py-2 text-base font-medium text-white">Home</a>
<a href="#services" class="block px-3 py-2 text-base font-medium text-gray-300 hover:text-white">Services</a>
<a href="#gallery" class="block px-3 py-2 text-base font-medium text-gray-300 hover:text-white">Gallery</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-300 hover:text-white">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section with Camera -->
<section id="home" class="hero-section flex items-center justify-center">
<div class="floating-text">MUHAMMAD SAFO STUDIO • PROFESSIONAL PHOTOGRAPHY • CAPTURING MOMENTS •</div>
<div class="camera-container">
<div class="camera">
<div class="lens">
<div class="lens-inner">
<div class="lens-reflect"></div>
</div>
</div>
<div class="shutter"></div>
<div class="brand">SONY α7 III</div>
</div>
</div>
<div class="absolute bottom-20 left-0 right-0 text-center">
<h1 class="text-5xl md:text-7xl font-bold mb-4 text-white">MUHAMMAD SAFO STUDIO</h1>
<p class="text-xl md:text-2xl text-gray-300 mb-8 max-w-2xl mx-auto">Capturing your precious moments with professional photography services</p>
<a href="#contact" class="inline-block bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105 floating-btn">
Book Your Session
</a>
</div>
<div class="absolute bottom-10 left-0 right-0 flex justify-center">
<a href="#services" class="text-white animate-bounce">
<svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3"></path>
</svg>
</a>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="section-title text-4xl font-bold text-white">Our Services</h2>
<p class="text-xl text-gray-300 mt-4 max-w-3xl mx-auto">We offer professional photography services for all your special occasions</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">
<!-- Girls' Parties -->
<div class="bg-gray-800 rounded-xl overflow-hidden transition-all duration-300 hover:shadow-xl hover:shadow-blue-500/20">
<div class="h-48 bg-gradient-to-r from-pink-500 to-purple-600 flex items-center justify-center">
<i class="fas fa-crown text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold text-white mb-3">Girls' Parties</h3>
<p class="text-gray-300 mb-4">Capture the joy and excitement of your special celebrations with our professional photography services tailored for girls' parties.</p>
<ul class="text-gray-300 space-y-2">
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Candid moments</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Group photos</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Themed decorations</li>
</ul>
</div>
</div>
<!-- Birthdays -->
<div class="bg-gray-800 rounded-xl overflow-hidden transition-all duration-300 hover:shadow-xl hover:shadow-blue-500/20">
<div class="h-48 bg-gradient-to-r from-yellow-500 to-red-500 flex items-center justify-center">
<i class="fas fa-birthday-cake text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold text-white mb-3">Birthdays</h3>
<p class="text-gray-300 mb-4">Make your birthday celebrations unforgettable with our professional photography that captures every smile and surprise.</p>
<ul class="text-gray-300 space-y-2">
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Cake cutting ceremony</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Guest interactions</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Decoration highlights</li>
</ul>
</div>
</div>
<!-- Wedding Days -->
<div class="bg-gray-800 rounded-xl overflow-hidden transition-all duration-300 hover:shadow-xl hover:shadow-blue-500/20">
<div class="h-48 bg-gradient-to-r from-rose-500 to-amber-500 flex items-center justify-center">
<i class="fas fa-ring text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold text-white mb-3">Wedding Days</h3>
<p class="text-gray-300 mb-4">Capture the magic of your special day with our professional wedding photography services that preserve your precious memories.</p>
<ul class="text-gray-300 space-y-2">
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Ceremony coverage</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Bride & groom portraits</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Reception highlights</li>
</ul>
</div>
</div>
<!-- Additional Services -->
<div class="bg-gray-800 rounded-xl overflow-hidden transition-all duration-300 hover:shadow-xl hover:shadow-blue-500/20">
<div class="h-48 bg-gradient-to-r from-green-500 to-teal-500 flex items-center justify-center">
<i class="fas fa-camera-retro text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold text-white mb-3">Portrait Photography</h3>
<p class="text-gray-300 mb-4">Professional portrait sessions that highlight your personality and beauty in stunning images.</p>
<ul class="text-gray-300 space-y-2">
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Studio setup</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Outdoor locations</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Professional lighting</li>
</ul>
</div>
</div>
<div class="bg-gray-800 rounded-xl overflow-hidden transition-all duration-300 hover:shadow-xl hover:shadow-blue-500/20">
<div class="h-48 bg-gradient-to-r from-indigo-500 to-blue-500 flex items-center justify-center">
<i class="fas fa-video text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold text-white mb-3">Video Services</h3>
<p class="text-gray-300 mb-4">Capture your events in motion with our professional videography services for a complete memory package.</p>
<ul class="text-gray-300 space-y-2">
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Event coverage</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Highlight reels</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Professional editing</li>
</ul>
</div>
</div>
<div class="bg-gray-800 rounded-xl overflow-hidden transition-all duration-300 hover:shadow-xl hover:shadow-blue-500/20">
<div class="h-48 bg-gradient-to-r from-purple-500 to-pink-500 flex items-center justify-center">
<i class="fas fa-magic text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold text-white mb-3">Photo Editing</h3>
<p class="text-gray-300 mb-4">Professional photo editing services to enhance your images and make them truly stand out.</p>
<ul class="text-gray-300 space-y-2">
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Color correction</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Retouching</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-400 mr-2"></i> Creative effects</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section id="gallery" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto bg-gray-900">
<div class="text-center mb-16">
<h2 class="section-title text-4xl font-bold text-white">Our Gallery</h2>
<p class="text-xl text-gray-300 mt-4 max-w-3xl mx-auto">A glimpse of our recent work and captured moments</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Sample gallery items - replace with your actual images -->
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1529630796983-28e347a5f7c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Birthday party" class="w-full h-64 object-cover">
<div class="bg-gray-800 p-4">
<h3 class="text-xl font-semibold text-white">Birthday Celebration</h3>
<p class="text-gray-300">Capturing the joy of a special day</p>
</div>
</div>
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1519671488599-4f228e582a58?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Girls party" class="w-full h-64 object-cover">
<div class="bg-gray-800 p-4">
<h3 class="text-xl font-semibold text-white">Girls' Night Out</h3>
<p class="text-gray-300">Friendship and fun captured perfectly</p>
</div>
</div>
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1583939003579-730e3918a45a?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Wedding" class="w-full h-64 object-cover">
<div class="bg-gray-800 p-4">
<h3 class="text-xl font-semibold text-white">Wedding Day</h3>
<p class="text-gray-300">The magical moments of a new beginning</p>
</div>
</div>
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Portrait" class="w-full h-64 object-cover">
<div class="bg-gray-800 p-4">
<h3 class="text-xl font-semibold text-white">Portrait Session</h3>
<p class="text-gray-300">Professional portraits that tell a story</p>
</div>
</div>
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1513151233558-d860c5398176?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Event" class="w-full h-64 object-cover">
<div class="bg-gray-800 p-4">
<h3 class="text-xl font-semibold text-white">Special Event</h3>
<p class="text-gray-300">Capturing the essence of your occasion</p>
</div>
</div>
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1496345875659-11f7dd282d1d?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Family" class="w-full h-64 object-cover">
<div class="bg-gray-800 p-4">
<h3 class="text-xl font-semibold text-white">Family Gathering</h3>
<p class="text-gray-300">Precious moments with loved ones</p>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105">
View Full Gallery
</a>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="section-title text-4xl font-bold text-white">Contact Us</h2>
<p class="text-xl text-gray-300 mt-4 max-w-3xl mx-auto">Get in touch to book your session or ask any questions</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div class="bg-gray-800 rounded-xl p-8 shadow-xl">
<h3 class="text-2xl font-bold text-white mb-6">Send Us a Message</h3>
<form class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-300 mb-1">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:ring-blue-500 focus:border-blue-500 text-white placeholder-gray-400" placeholder="Enter your name">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-300 mb-1">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:ring-blue-500 focus:border-blue-500 text-white placeholder-gray-400" placeholder="Enter your email">
</div>
<div>
<label for="phone" class="block text-sm font-medium text-gray-300 mb-1">Phone Number</label>
<input type="tel" id="phone" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:ring-blue-500 focus:border-blue-500 text-white placeholder-gray-400" placeholder="Enter your phone number">
</div>
<div>
<label for="service" class="block text-sm font-medium text-gray-300 mb-1">Service Interested In</label>
<select id="service" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:ring-blue-500 focus:border-blue-500 text-white">
<option value="">Select a service</option>
<option value="girls-party">Girls' Party</option>
<option value="birthday">Birthday</option>
<option value="wedding">Wedding</option>
<option value="portrait">Portrait Photography</option>
<option value="video">Video Services</option>
<option value="editing">Photo Editing</option>
</select>
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-300 mb-1">Your Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:ring-blue-500 focus:border-blue-500 text-white placeholder-gray-400" placeholder="Tell us about your event..."></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-4 rounded-lg transition duration-300 transform hover:scale-105">
Send Message
</button>
</form>
</div>
<div class="space-y-8">
<div class="bg-gray-800 rounded-xl p-8 shadow-xl">
<h3 class="text-2xl font-bold text-white mb-6">Contact Information</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-500 rounded-lg p-3">
<i class="fas fa-map-marker-alt text-white text-xl"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-semibold text-white">Studio Location</h4>
<p class="text-gray-300">123 Photography Street, City Center</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-500 rounded-lg p-3">
<i class="fas fa-phone-alt text-white text-xl"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-semibold text-white">Phone Number</h4>
<p class="text-gray-300">+123 456 7890</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-500 rounded-lg p-3">
<i class="fas fa-envelope text-white text-xl"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-semibold text-white">Email Address</h4>
<p class="text-gray-300">[email protected]</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-500 rounded-lg p-3">
<i class="fas fa-clock text-white text-xl"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-semibold text-white">Working Hours</h4>
<p class="text-gray-300">Monday - Saturday: 9AM - 8PM</p>
<p class="text-gray-300">Sunday: By appointment only</p>
</div>
</div>
</div>
</div>
<div class="bg-gray-800 rounded-xl p-8 shadow-xl">
<h3 class="text-2xl font-bold text-white mb-6">Connect With Us</h3>
<p class="text-gray-300 mb-6">Follow us on social media to see more of our work and stay updated with our latest offers.</p>
<div class="flex justify-center space-x-6">
<a href="https://t.me/yourtelegram" target="_blank" class="social-icon bg-blue-500 hover:bg-blue-600">
<i class="fab fa-telegram text-white text-2xl"></i>
</a>
<a href="https://instagram.com/yourinstagram" target="_blank" class="social-icon bg-gradient-to-r from-purple-500 to-pink-500 hover:from-purple-600 hover:to-pink-600">
<i class="fab fa-instagram text-white text-2xl"></i>
</a>
<a href="https://youtube.com/youryoutube" target="_blank" class="social-icon bg-red-600 hover:bg-red-700">
<i class="fab fa-youtube text-white text-2xl"></i>
</a>
<a href="https://facebook.com/yourfacebook" target="_blank" class="social-icon bg-blue-600 hover:bg-blue-700">
<i class="fab fa-facebook-f text-white text-2xl"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<span class="text-2xl font-bold text-blue-400">MUHAMMAD SAFO STUDIO</span>
<p class="text-gray-400 mt-2">Capturing your precious moments with professional photography</p>
</div>
<div class="grid grid-cols-2 gap-8 sm:grid-cols-3">
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase mb-4">Services</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Girls' Parties</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Birthdays</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Weddings</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white">Home</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white">Services</a></li>
<li><a href="#gallery" class="text-gray-400 hover:text-white">Gallery</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase mb-4">Legal</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Cookie Policy</a></li>
</ul>
</div>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm">© 2023 Muhammad Safo Studio. All rights reserved.</p>
<div class="mt-4 md:mt-0 flex space-x-6">
<a href="https://t.me/yourtelegram" target="_blank" class="text-gray-400 hover:text-white">
<i class="fab fa-telegram text-xl"></i>
</a>
<a href="https://instagram.com/yourinstagram" target="_blank" class="text-gray-400 hover:text-white">
<i class="fab fa-instagram text-xl"></i>
</a>
<a href="https://youtube.com/youryoutube" target="_blank" class="text-gray-400 hover:text-white">
<i class="fab fa-youtube text-xl"></i>
</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const mobileMenuButton = document.querySelector('.mobile-menu-button');
const mobileMenu = document.querySelector('.mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
// Close mobile menu if open
mobileMenu.classList.add('hidden');
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Camera shutter click effect
const shutter = document.querySelector('.shutter');
if (shutter) {
shutter.addEventListener('click', () => {
// Create flash effect
const flash = document.createElement('div');
flash.style.position = 'fixed';
flash.style.top = '0';
flash.style.left = '0';
flash.style.width = '100%';
flash.style.height = '100%';
flash.style.backgroundColor = 'white';
flash.style.opacity = '0.8';
flash.style.zIndex = '1000';
flash.style.transition = 'opacity 0.5s';
document.body.appendChild(flash);
// Animate flash
setTimeout(() => {
flash.style.opacity = '0';
setTimeout(() => {
document.body.removeChild(flash);
}, 500);
}, 100);
// Play shutter sound (optional)
// const audio = new Audio('shutter-sound.mp3');
// audio.play();
});
}
// Floating text animation
const floatingText = document.querySelector('.floating-text');
if (floatingText) {
// Clone the text element to create seamless looping
const clone = floatingText.cloneNode(true);
clone.style.left = '100%';
floatingText.parentNode.appendChild(clone);
}
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Meszod/muhammads" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |