File size: 31,652 Bytes
9ceb5a9 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Williams AME Church</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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#1a3a6d',
secondary: '#e63946',
accent: '#f4a261',
light: '#f8f9fa',
dark: '#212529'
},
fontFamily: {
sans: ['Georgia', 'serif'],
heading: ['"Playfair Display"', 'serif']
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;700&display=swap');
body {
font-family: 'Roboto', sans-serif;
scroll-behavior: smooth;
line-height: 1.6;
}
h1, h2, h3, h4 {
font-family: 'Playfair Display', serif;
}
.loading-screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #1a3a6d, #e63946, #f4a261);
z-index: 9999;
display: flex;
justify-content: center;
align-items: center;
opacity: 1;
transition: opacity 1.5s ease-in-out;
}
.loading-content {
text-align: center;
z-index: 10;
animation: fadeIn 2s ease-in-out;
}
.loading-logo {
font-size: 4rem;
margin-bottom: 1rem;
color: white;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.loading-title {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: white;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
margin-bottom: 0.5rem;
}
.loading-subtitle {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.9);
max-width: 800px;
margin: 0 auto;
}
.loading-screen.hidden {
opacity: 0;
pointer-events: none;
}
.light-leak {
position: absolute;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
opacity: 0;
animation: lightLeak 4s ease-in-out infinite;
}
.light-leak:nth-child(2) {
animation-delay: 1s;
}
.light-leak:nth-child(3) {
animation-delay: 2s;
}
.light-leak:nth-child(4) {
animation-delay: 3s;
}
@keyframes lightLeak {
0% { opacity: 0; transform: scale(0.5); }
50% { opacity: 0.8; transform: scale(1.2); }
100% { opacity: 0; transform: scale(1.5); }
}
.logo {
animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
.nav-link {
position: relative;
transition: all 0.3s ease;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 0;
background-color: #e63946;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.service-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.event-card {
transition: all 0.3s ease;
}
.event-card:hover {
transform: scale(1.02);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.appear {
opacity: 1;
transform: translateY(0);
}
.parallax {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.btn-primary {
background-color: #1a3a6d;
color: white;
padding: 12px 24px;
border-radius: 4px;
transition: all 0.3s ease;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
}
.btn-primary:hover {
background-color: #e63946;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.btn-secondary {
background-color: #e63946;
color: white;
padding: 12px 24px;
border-radius: 4px;
transition: all 0.3s ease;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
}
.btn-secondary:hover {
background-color: #1a3a6d;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.text-shadow {
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.section-title {
position: relative;
display: inline-block;
margin-bottom: 2rem;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 50%;
height: 3px;
background: #e63946;
}
.section-title.center::after {
left: 25%;
}
.gallery-img {
transition: all 0.5s ease;
transform: scale(1);
}
.gallery-img:hover {
transform: scale(1.05);
filter: brightness(1.1);
}
footer {
background-color: #1a3a6d;
}
.social-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
margin: 0 5px;
transition: all 0.3s ease;
}
.social-icon:hover {
background: #e63946;
transform: translateY(-5px);
}
.contact-card {
transition: all 0.3s ease;
}
.contact-card:hover {
transform: translateY(-5px);
}
.map-container {
height: 400px;
}
@media (max-width: 768px) {
.hero {
height: 70vh;
}
}
</style>
</head>
<body class="text-dark">
<!-- Loading Screen -->
<div class="loading-screen" id="loadingScreen">
<div class="absolute inset-0 overflow-hidden">
<div class="light-leak"></div>
<div class="light-leak"></div>
<div class="light-leak"></div>
<div class="light-leak"></div>
</div>
<div class="loading-content">
<div class="logo mb-6">
<i class="fas fa-church loading-logo"></i>
<h1 class="loading-title">Williams AME Church</h1>
<p class="loading-subtitle">A Place of Worship and Community</p>
</div>
</div>
</div>
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-md z-50">
<div class="container mx-auto px-4 py-3 flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center justify-between w-full md:w-auto">
<div class="flex items-center">
<i class="fas fa-church text-primary text-2xl mr-2"></i>
<span class="font-heading text-primary text-xl font-bold">Williams AME Church</span>
</div>
<div class="md:hidden">
<button id="menu-toggle" class="text-primary focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
<div id="menu" class="hidden md:flex flex-col md:flex-row items-center w-full md:w-auto mt-4 md:mt-0">
<a href="#home" class="nav-link px-4 py-2 text-lg">Home</a>
<a href="#about" class="nav-link px-4 py-2 text-lg">About</a>
<a href="#services" class="nav-link px-4 py-2 text-lg">Services</a>
<a href="#events" class="nav-link px-4 py-2 text-lg">Events</a>
<a href="#gallery" class="nav-link px-4 py-2 text-lg">Gallery</a>
<a href="#contact" class="nav-link px-4 py-2 text-lg">Contact</a>
<a href="#donate" class="btn-primary mt-2 md:mt-0 md:ml-4">Donate</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero parallax bg-primary text-white flex items-center justify-center" style="height: 100vh; background-image: url('https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fstatic.vecteezy.com%2Fsystem%2Fresources%2Fpreviews%2F027%2F103%2F360%2Fnon_2x%2Fenergetic-audience-during-a-live-music-performance-free-photo.jpg&f=1&nofb=1&ipt=d2d706363b7b1b9a8fde16165cd4555e12de11fde699e27bc5fce9074582dff3');">
<div class="absolute inset-0 bg-black bg-opacity-50"></div>
<div class="container mx-auto px-4 text-center z-10">
<h1 class="text-4xl md:text-6xl font-heading mb-4 text-shadow">Welcome to Williams AME Church</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">A place of worship, community, and spiritual growth for all ages</p>
<a href="#about" class="btn-primary inline-block">Learn More</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-light">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="section-title center text-3xl md:text-4xl font-heading">Our Story</h2>
<p class="text-xl max-w-3xl mx-auto">Founded in 1872, Williams AME Church has been a cornerstone of our community for over 150 years</p>
</div>
<div class="flex flex-col md:flex-row items-center mb-16 fade-in">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h3 class="text-2xl font-heading mb-4">Our Mission</h3>
<p class="text-lg mb-4">Williams AME Church is dedicated to serving God and our community through worship, education, and outreach. We strive to be a beacon of hope, love, and support for all who enter our doors.</p>
<p class="text-lg">Our mission is to create a welcoming environment where people of all ages can grow in faith, find community, and serve others.</p>
</div>
<div class="md:w-1/2">
<img src="https://images.unsplash.com/photo-1506197603052-3cc9c3a201bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Church interior" class="rounded-lg shadow-lg">
</div>
</div>
<div class="flex flex-col md:flex-row items-center fade-in">
<div class="md:w-1/2 mb-10 md:mb-0 md:order-2 md:pl-10">
<h3 class="text-2xl font-heading mb-4">Our Values</h3>
<ul class="text-lg list-disc pl-6">
<li class="mb-2">Faith in God and His Word</li>
<li class="mb-2">Love and compassion for all people</li>
<li class="mb-2">Community service and outreach</li>
<li class="mb-2">Educational excellence and spiritual growth</li>
<li>Respect for all ages and backgrounds</li>
</ul>
</div>
<div class="md:w-1/2 md:order-1">
<img src="https://images.unsplash.com/photo-1506197603052-3cc9c3a201bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Church community" class="rounded-lg shadow-lg">
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="section-title center text-3xl md:text-4xl font-heading">Our Services</h2>
<p class="text-xl max-w-3xl mx-auto">Join us for worship, fellowship, and spiritual growth</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="service-card bg-light p-8 rounded-lg text-center shadow-md">
<div class="text-primary mb-4">
<i class="fas fa-praying-hands text-5xl"></i>
</div>
<h3 class="text-2xl font-heading mb-4">Sunday Worship</h3>
<p class="mb-4">Sunday School: 9:00 AM</p>
<p class="mb-4">Worship Service: 10:00 AM</p>
<p class="mb-4">Evening Service: 6:00 PM (First Sunday)</p>
</div>
<div class="service-card bg-light p-8 rounded-lg text-center shadow-md">
<div class="text-primary mb-4">
<i class="fas fa-book-open text-5xl"></i>
</div>
<h3 class="text-2xl font-heading mb-4">Weekly Activities</h3>
<p class="mb-4">Bible Study: Wednesday 7:00 PM</p>
<p class="mb-4">Youth Group: Friday 6:30 PM</p>
<p class="mb-4">Prayer Meeting: Thursday 7:00 PM</p>
</div>
<div class="service-card bg-light p-8 rounded-lg text-center shadow-md">
<div class="text-primary mb-4">
<i class="fas fa-users text-5xl"></i>
</div>
<h3 class="text-2xl font-heading mb-4">Special Events</h3>
<p class="mb-4">Monthly Community Dinners</p>
<p class="mb-4">Annual Vacation Bible School</p>
<p class="mb-4">Senior Citizens Ministry</p>
</div>
</div>
</div>
</section>
<!-- Events Section -->
<section id="events" class="py-20 bg-light">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="section-title center text-3xl md:text-4xl font-heading">Upcoming Events</h2>
<p class="text-xl max-w-3xl mx-auto">Join us for special events and community gatherings</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="event-card bg-white p-8 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="bg-primary text-white p-4 rounded-lg mr-4">
<span class="block text-2xl font-bold">15</span>
<span class="block">JUN</span>
</div>
<div>
<h3 class="text-2xl font-heading mb-2">Community Picnic</h3>
<p class="text-secondary"><i class="fas fa-map-marker-alt mr-2"></i> Church Grounds</p>
</div>
</div>
<p class="mb-4">Join us for our annual community picnic with food, games, and fellowship for the whole family.</p>
<a href="#" class="text-primary font-bold">Learn More <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<div class="event-card bg-white p-8 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="bg-primary text-white p-4 rounded-lg mr-4">
<span class="block text-2xl font-bold">22</span>
<span class="block">JUN</span>
</div>
<div>
<h3 class="text-2xl font-heading mb-2">Youth Leadership Conference</h3>
<p class="text-secondary"><i class="fas fa-map-marker-alt mr-2"></i> Fellowship Hall</p>
</div>
</div>
<p class="mb-4">Empowering our young leaders with workshops, discussions, and mentorship opportunities.</p>
<a href="#" class="text-primary font-bold">Learn More <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<div class="event-card bg-white p-8 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="bg-primary text-white p-4 rounded-lg mr-4">
<span class="block text-2xl font-bold">30</span>
<span class="block">JUN</span>
</div>
<div>
<h3 class="text-2xl font-heading mb-2">Senior Citizens Ministry</h3>
<p class="text-secondary"><i class="fas fa-map-marker-alt mr-2"></i> Main Building</p>
</div>
</div>
<p class="mb-4">Monthly gathering for our senior members with special activities and fellowship.</p>
<a href="#" class="text-primary font-bold">Learn More <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<div class="event-card bg-white p-8 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="bg-primary text-white p-4 rounded-lg mr-4">
<span class="block text-2xl font-bold">05</span>
<span class="block">JUL</span>
</div>
<div>
<h3 class="text-2xl font-heading mb-2">Back to School Bash</h3>
<p class="text-secondary"><i class="fas fa-map-marker-alt mr-2"></i> Church Grounds</p>
</div>
</div>
<p class="mb-4">Helping families prepare for the school year with supplies, resources, and community support.</p>
<a href="#" class="text-primary font-bold">Learn More <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section id="gallery" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="section-title center text-3xl md:text-4xl font-heading">Our Community</h2>
<p class="text-xl max-w-3xl mx-auto">Moments of worship, fellowship, and service</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<div class="overflow-hidden rounded-lg shadow-lg">
<img src="https://images.unsplash.com/photo-1506197603052-3cc9c3a201bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Community gathering" class="gallery-img w-full h-64 object-cover">
</div>
<div class="overflow-hidden rounded-lg shadow-lg">
<img src="https://images.unsplash.com/photo-1506197603052-3cc9c3a201bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Worship service" class="gallery-img w-full h-64 object-cover">
</div>
<div class="overflow-hidden rounded-lg shadow-lg">
<img src="https://images.unsplash.com/photo-1506197603052-3cc9c3a201bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Community service" class="gallery-img w-full h-64 object-cover">
</div>
<div class="overflow-hidden rounded-lg shadow-lg">
<img src="https://images.unsplash.com/photo-1506197603052-3cc9c3a201bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Youth group" class="gallery-img w-full h-64 object-cover">
</div>
<div class="overflow-hidden rounded-lg shadow-lg">
<img src="https://images.unsplash.com/photo-1506197603052-3cc9c3a201bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Senior ministry" class="gallery-img w-full h-64 object-cover">
</div>
<div class="overflow-hidden rounded-lg shadow-lg">
<img src="https://images.unsplash.com/photo-1506197603052-3cc9c3a201bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Children's ministry" class="gallery-img w-full h-64 object-cover">
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-light">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="section-title center text-3xl md:text-4xl font-heading">Contact Us</h2>
<p class="text-xl max-w-3xl mx-auto">We'd love to hear from you</p>
</div>
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<div class="contact-card bg-white p-8 rounded-lg shadow-md mb-8">
<h3 class="text-2xl font-heading mb-4">Get In Touch</h3>
<div class="mb-4">
<p class="flex items-center mb-2">
<i class="fas fa-map-marker-alt text-primary mr-4 text-xl"></i>
123 Faith Avenue, Community City, CC 12345
</p>
<p class="flex items-center mb-2">
<i class="fas fa-phone text-primary mr-4 text-xl"></i>
(123) 456-7890
</p>
<p class="flex items-center mb-2">
<i class="fas fa-envelope text-primary mr-4 text-xl"></i>
info@williamsame.org
</p>
</div>
<div class="mt-8">
<h4 class="text-xl font-heading mb-4">Office Hours</h4>
<p class="mb-2">Monday - Friday: 9:00 AM - 5:00 PM</p>
<p class="mb-2">Saturday: 10:00 AM - 2:00 PM</p>
<p>Sunday: Closed (except for services)</p>
</div>
</div>
<div class="contact-card bg-white p-8 rounded-lg shadow-md">
<h3 class="text-2xl font-heading mb-4">Follow Us</h3>
<div class="flex">
<a href="#" class="social-icon">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="social-icon">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="social-icon">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="social-icon">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-white p-8 rounded-lg shadow-md">
<h3 class="text-2xl font-heading mb-6">Send Us a Message</h3>
<form>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="name">Name</label>
<input type="text" id="name" class="w-full p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="email">Email</label>
<input type="email" id="email" class="w-full p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="subject">Subject</label>
<input type="text" id="subject" class="w-full p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="message">Message</label>
<textarea id="message" rows="5" class="w-full p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary"></textarea>
</div>
<button type="submit" class="btn-primary w-full">Send Message</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="text-white">
<div class="container mx-auto px-4 py-12">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-8 md:mb-0">
<div class="flex items-center mb-4">
<i class="fas fa-church text-white text-3xl mr-3"></i>
<span class="font-heading text-2xl">Williams AME Church</span>
</div>
<p class="max-w-md">A place of worship, community, and spiritual growth for all ages.</p>
</div>
<div class="flex flex-col items-center md:items-end">
<div class="mb-4">
<h4 class="text-xl font-heading mb-2">Quick Links</h4>
<ul class="flex flex-wrap justify-center md:justify-end">
<li class="mx-2"><a href="#home" class="hover:text-accent">Home</a></li>
<li class="mx-2"><a href="#about" class="hover:text-accent">About</a></li>
<li class="mx-2"><a href="#services" class="hover:text-accent">Services</a></li>
<li class="mx-2"><a href="#events" class="hover:text-accent">Events</a></li>
<li class="mx-2"><a href="#contact" class="hover:text-accent">Contact</a></li>
</ul>
</div>
<p>© 2023 Williams AME Church. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<script>
// Loading screen
window.addEventListener('load', function() {
setTimeout(function() {
document.getElementById('loadingScreen').classList.add('hidden');
}, 3000);
});
// Mobile menu toggle
document.getElementById('menu-toggle').addEventListener('click', function() {
const menu = document.getElementById('menu');
menu.classList.toggle('hidden');
});
// Fade in animation for sections
function fadeInElements() {
const fadeElements = document.querySelectorAll('.fade-in');
fadeElements.forEach(element => {
const elementTop = element.getBoundingClientRect().top;
const elementVisible = 150;
if (elementTop < window.innerHeight - elementVisible) {
element.classList.add('appear');
}
});
}
window.addEventListener('scroll', fadeInElements);
fadeInElements();
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
window.scrollTo({
top: target.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu after clicking
const menu = document.getElementById('menu');
if (!menu.classList.contains('hidden')) {
menu.classList.add('hidden');
}
}
});
});
</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=SVINT/w-ame" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |