| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Events | University Christian Fellowship</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=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap'); |
| |
| body { |
| font-family: 'Poppins', sans-serif; |
| } |
| |
| .heading-font { |
| font-family: 'Playfair Display', serif; |
| } |
| |
| .events-hero { |
| background: linear-gradient(135deg, rgba(101, 42, 132, 0.9) 0%, rgba(29, 78, 216, 0.8) 100%); |
| } |
| |
| .event-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15); |
| } |
| |
| .nav-link { |
| position: relative; |
| } |
| |
| .nav-link::after { |
| content: ''; |
| position: absolute; |
| width: 0; |
| height: 2px; |
| bottom: -2px; |
| left: 0; |
| background-color: #1d4ed8; |
| transition: width 0.3s ease; |
| } |
| |
| .nav-link:hover::after { |
| width: 100%; |
| } |
| |
| .category-filter.active { |
| background-color: #1d4ed8; |
| color: white; |
| } |
| |
| .event-date { |
| position: relative; |
| } |
| |
| .event-date::before { |
| content: ''; |
| position: absolute; |
| width: 3px; |
| height: 100%; |
| left: -1rem; |
| top: 0; |
| background-color: #1d4ed8; |
| border-radius: 3px; |
| } |
| </style> |
| </head> |
| <body class="bg-gray-50"> |
| |
| <nav class="bg-white shadow-md sticky top-0 z-50"> |
| <div class="container mx-auto px-6 py-3"> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center space-x-4"> |
| <div class="flex items-center"> |
| <i class="fas fa-cross text-blue-700 text-2xl mr-2"></i> |
| <span class="heading-font text-xl font-bold text-blue-800">UCF</span> |
| </div> |
| <div class="hidden md:flex space-x-8"> |
| <a href="index.html" class="nav-link text-gray-700 hover:text-blue-700">Home</a> |
| <a href="about.html" class="nav-link text-gray-700 hover:text-blue-700">About</a> |
| <a href="#" class="nav-link text-blue-700 hover:text-blue-800 font-medium">Events</a> |
| <a href="sermons.html" class="nav-link text-gray-700 hover:text-blue-700">Sermons</a> |
| <a href="connect.html" class="nav-link text-gray-700 hover:text-blue-700">Connect</a> |
| </div> |
| </div> |
| <div class="flex items-center space-x-4"> |
| <a href="give.html" class="hidden md:block bg-blue-700 hover:bg-blue-800 text-white px-4 py-2 rounded-md transition duration-300">Give</a> |
| <button class="md:hidden focus:outline-none"> |
| <i class="fas fa-bars text-gray-700 text-xl"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <section class="events-hero text-white"> |
| <div class="container mx-auto px-6 py-24 md:py-32"> |
| <div class="max-w-3xl"> |
| <h1 class="heading-font text-4xl md:text-6xl font-bold mb-6">Upcoming Events</h1> |
| <p class="text-xl mb-8 leading-relaxed">Join us for worship, fellowship, and growth opportunities throughout the semester.</p> |
| <div class="flex space-x-4"> |
| <a href="#weekly" class="bg-white text-blue-800 hover:bg-gray-100 px-6 py-3 rounded-md text-center font-medium transition duration-300">Weekly Gatherings</a> |
| <a href="#special" class="border-2 border-white hover:bg-white hover:bg-opacity-10 px-6 py-3 rounded-md text-center font-medium transition duration-300">Special Events</a> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-12 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="flex flex-col md:flex-row justify-between items-center mb-8"> |
| <h2 class="heading-font text-3xl md:text-4xl font-bold text-gray-800 mb-4 md:mb-0">All Events</h2> |
| <div class="flex space-x-2 overflow-x-auto pb-2 w-full md:w-auto"> |
| <button class="category-filter px-4 py-2 rounded-full border border-gray-300 hover:bg-gray-100 transition duration-300 active" data-category="all">All Events</button> |
| <button class="category-filter px-4 py-2 rounded-full border border-gray-300 hover:bg-gray-100 transition duration-300" data-category="worship">Worship</button> |
| <button class="category-filter px-4 py-2 rounded-full border border-gray-300 hover:bg-gray-100 transition duration-300" data-category="bible-study">Bible Study</button> |
| <button class="category-filter px-4 py-2 rounded-full border border-gray-300 hover:bg-gray-100 transition duration-300" data-category="fellowship">Fellowship</button> |
| <button class="category-filter px-4 py-2 rounded-full border border-gray-300 hover:bg-gray-100 transition duration-300" data-category="mission">Mission</button> |
| </div> |
| </div> |
| |
| |
| <div id="weekly" class="mb-16"> |
| <h3 class="heading-font text-2xl md:text-3xl font-bold mb-8 text-gray-800 flex items-center"> |
| <i class="fas fa-calendar-week text-blue-700 mr-4"></i> |
| Weekly Gatherings |
| </h3> |
| |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="event-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="worship"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1508700115892-45ecd05ae2ad?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80" alt="Sunday Worship" class="w-full h-48 object-cover"> |
| <div class="absolute top-4 left-4 bg-blue-700 text-white px-3 py-1 rounded-full text-sm font-medium">Weekly</div> |
| </div> |
| <div class="p-6"> |
| <div class="flex justify-between items-start mb-4"> |
| <h4 class="text-xl font-semibold text-gray-800">Sunday Worship</h4> |
| <div class="event-date pl-4 text-blue-700 font-medium">10:00 AM</div> |
| </div> |
| <p class="text-gray-600 mb-4">Join us for our main weekly worship gathering with live music, biblical teaching, and communion.</p> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center text-gray-500"> |
| <i class="fas fa-map-marker-alt mr-2"></i> |
| <span>UCF Chapel</span> |
| </div> |
| <a href="#" class="text-blue-700 hover:text-blue-800 font-medium">Details <i class="fas fa-arrow-right ml-1"></i></a> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="event-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="bible-study"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1544717305-2787409b809b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1373&q=80" alt="Bible Study" class="w-full h-48 object-cover"> |
| <div class="absolute top-4 left-4 bg-blue-700 text-white px-3 py-1 rounded-full text-sm font-medium">Weekly</div> |
| </div> |
| <div class="p-6"> |
| <div class="flex justify-between items-start mb-4"> |
| <h4 class="text-xl font-semibold text-gray-800">Men's Bible Study</h4> |
| <div class="event-date pl-4 text-blue-700 font-medium">Tue 7:00 PM</div> |
| </div> |
| <p class="text-gray-600 mb-4">A time for men to study Scripture together, pray, and encourage one another in faith.</p> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center text-gray-500"> |
| <i class="fas fa-map-marker-alt mr-2"></i> |
| <span>UCF House</span> |
| </div> |
| <a href="#" class="text-blue-700 hover:text-blue-800 font-medium">Details <i class="fas fa-arrow-right ml-1"></i></a> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="event-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="fellowship"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1524179091875-b4949861b4f7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Community Groups" class="w-full h-48 object-cover"> |
| <div class="absolute top-4 left-4 bg-blue-700 text-white px-3 py-1 rounded-full text-sm font-medium">Weekly</div> |
| </div> |
| <div class="p-6"> |
| <div class="flex justify-between items-start mb-4"> |
| <h4 class="text-xl font-semibold text-gray-800">Community Groups</h4> |
| <div class="event-date pl-4 text-blue-700 font-medium">Wed 7:30 PM</div> |
| </div> |
| <p class="text-gray-600 mb-4">Small groups meeting in homes across campus for fellowship, prayer, and discussion.</p> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center text-gray-500"> |
| <i class="fas fa-map-marker-alt mr-2"></i> |
| <span>Various Locations</span> |
| </div> |
| <a href="#" class="text-blue-700 hover:text-blue-800 font-medium">Details <i class="fas fa-arrow-right ml-1"></i></a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div id="special" class="mb-16"> |
| <h3 class="heading-font text-2xl md:text-3xl font-bold mb-8 text-gray-800 flex items-center"> |
| <i class="fas fa-calendar-star text-blue-700 mr-4"></i> |
| Special Events |
| </h3> |
| |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="event-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="worship"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1475721027785-f74eccf877e2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Night of Worship" class="w-full h-48 object-cover"> |
| <div class="absolute top-4 left-4 bg-purple-700 text-white px-3 py-1 rounded-full text-sm font-medium">Special</div> |
| </div> |
| <div class="p-6"> |
| <div class="flex justify-between items-start mb-4"> |
| <h4 class="text-xl font-semibold text-gray-800">Night of Worship</h4> |
| <div class="event-date pl-4 text-blue-700 font-medium">Oct 15</div> |
| </div> |
| <p class="text-gray-600 mb-4">An extended evening of worship, prayer, and testimony as we seek God together.</p> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center text-gray-500"> |
| <i class="fas fa-map-marker-alt mr-2"></i> |
| <span>Student Union Ballroom</span> |
| </div> |
| <a href="#" class="text-blue-700 hover:text-blue-800 font-medium">Details <i class="fas fa-arrow-right ml-1"></i></a> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="event-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="fellowship"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1547592180-85f173990554?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Fall Retreat" class="w-full h-48 object-cover"> |
| <div class="absolute top-4 left-4 bg-purple-700 text-white px-3 py-1 rounded-full text-sm font-medium">Special</div> |
| </div> |
| <div class="p-6"> |
| <div class="flex justify-between items-start mb-4"> |
| <h4 class="text-xl font-semibold text-gray-800">Fall Retreat</h4> |
| <div class="event-date pl-4 text-blue-700 font-medium">Nov 3-5</div> |
| </div> |
| <p class="text-gray-600 mb-4">A weekend away to grow closer to God and build relationships with other students.</p> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center text-gray-500"> |
| <i class="fas fa-map-marker-alt mr-2"></i> |
| <span>Lakeview Camp</span> |
| </div> |
| <a href="#" class="text-blue-700 hover:text-blue-800 font-medium">Details <i class="fas fa-arrow-right ml-1"></i></a> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="event-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="mission"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1529107386315-e1a2ed3056c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Mission Trip Info" class="w-full h-48 object-cover"> |
| <div class="absolute top-4 left-4 bg-purple-700 text-white px-3 py-1 rounded-full text-sm font-medium">Special</div> |
| </div> |
| <div class="p-6"> |
| <div class="flex justify-between items-start mb-4"> |
| <h4 class="text-xl font-semibold text-gray-800">Mission Trip Info Night</h4> |
| <div class="event-date pl-4 text-blue-700 font-medium">Nov 10</div> |
| </div> |
| <p class="text-gray-600 mb-4">Learn about our upcoming spring break mission trips to Honduras and inner-city Chicago.</p> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center text-gray-500"> |
| <i class="fas fa-map-marker-alt mr-2"></i> |
| <span>UCF Chapel</span> |
| </div> |
| <a href="#" class="text-blue-700 hover:text-blue-800 font-medium">Details <i class="fas fa-arrow-right ml-1"></i></a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="text-center"> |
| <a href="past-events.html" class="inline-block border-2 border-blue-700 text-blue-700 hover:bg-blue-700 hover:text-white px-6 py-3 rounded-md text-center font-medium transition duration-300">View Past Events <i class="fas fa-history ml-2"></i></a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-16 bg-gray-100"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-12"> |
| <h2 class="heading-font text-3xl md:text-4xl font-bold mb-4 text-gray-800">Event Calendar</h2> |
| <p class="max-w-2xl mx-auto text-gray-600">See all our upcoming events at a glance</p> |
| </div> |
| |
| <div class="bg-white rounded-lg shadow-lg overflow-hidden max-w-4xl mx-auto"> |
| <div class="p-6 border-b border-gray-200"> |
| <div class="flex justify-between items-center"> |
| <h3 class="text-xl font-semibold text-gray-800">October 2023</h3> |
| <div class="flex space-x-2"> |
| <button class="p-2 rounded-full hover:bg-gray-100 transition duration-300"> |
| <i class="fas fa-chevron-left text-gray-600"></i> |
| </button> |
| <button class="p-2 rounded-full hover:bg-gray-100 transition duration-300"> |
| <i class="fas fa-chevron-right text-gray-600"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| <div class="p-6"> |
| <div class="grid grid-cols-7 gap-2 mb-4"> |
| <div class="text-center font-medium text-gray-500 text-sm">Sun</div> |
| <div class="text-center font-medium text-gray-500 text-sm">Mon</div> |
| <div class="text-center font-medium text-gray-500 text-sm">Tue</div> |
| <div class="text-center font-medium text-gray-500 text-sm">Wed</div> |
| <div class="text-center font-medium text-gray-500 text-sm">Thu</div> |
| <div class="text-center font-medium text-gray-500 text-sm">Fri</div> |
| <div class="text-center font-medium text-gray-500 text-sm">Sat</div> |
| </div> |
| |
| <div class="grid grid-cols-7 gap-2"> |
| |
| <div class="h-16 p-1 text-right text-gray-400">30</div> |
| <div class="h-16 p-1 text-right">1</div> |
| <div class="h-16 p-1 text-right">2</div> |
| <div class="h-16 p-1 text-right">3</div> |
| <div class="h-16 p-1 text-right">4</div> |
| <div class="h-16 p-1 text-right">5</div> |
| <div class="h-16 p-1 text-right">6</div> |
| |
| <div class="h-16 p-1 text-right">7</div> |
| <div class="h-16 p-1 text-right">8</div> |
| <div class="h-16 p-1 text-right">9</div> |
| <div class="h-16 p-1 text-right">10</div> |
| <div class="h-16 p-1 text-right">11</div> |
| <div class="h-16 p-1 text-right">12</div> |
| <div class="h-16 p-1 text-right">13</div> |
| |
| <div class="h-16 p-1 text-right">14</div> |
| <div class="h-16 p-1 text-right bg-blue-100 rounded-md relative"> |
| <span class="absolute top-1 right-1">15</span> |
| <div class="absolute bottom-1 left-1 right-1 bg-blue-700 text-white text-xs p-1 rounded">Night of Worship</div> |
| </div> |
| <div class="h-16 p-1 text-right">16</div> |
| <div class="h-16 p-1 text-right">17</div> |
| <div class="h-16 p-1 text-right">18</div> |
| <div class="h-16 p-1 text-right">19</div> |
| <div class="h-16 p-1 text-right">20</div> |
| |
| <div class="h-16 p-1 text-right">21</div> |
| <div class="h-16 p-1 text-right">22</div> |
| <div class="h-16 p-1 text-right">23</div> |
| <div class="h-16 p-1 text-right">24</div> |
| <div class="h-16 p-1 text-right">25</div> |
| <div class="h-16 p-1 text-right">26</div> |
| <div class="h-16 p-1 text-right">27</div> |
| |
| <div class="h-16 p-1 text-right">28</div> |
| <div class="h-16 p-1 text-right">29</div> |
| <div class="h-16 p-1 text-right">30</div> |
| <div class="h-16 p-1 text-right">31</div> |
| <div class="h-16 p-1 text-right text-gray-400">1</div> |
| <div class="h-16 p-1 text-right text-gray-400">2</div> |
| <div class="h-16 p-1 text-right text-gray-400">3</div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="text-center mt-12"> |
| <a href="#" class="inline-block bg-blue-700 hover:bg-blue-800 text-white px-6 py-3 rounded-md text-center font-medium transition duration-300">Download Calendar <i class="fas fa-download ml-2"></i></a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-16 bg-blue-800 text-white"> |
| <div class="container mx-auto px-6 text-center"> |
| <h2 class="heading-font text-3xl md:text-4xl font-bold mb-6">Have Questions About Our Events?</h2> |
| <p class="max-w-2xl mx-auto text-blue-200 mb-8">Our team is happy to help you find the right events to connect with our community.</p> |
| <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6"> |
| <a href="contact.html" class="bg-white text-blue-800 hover:bg-gray-100 px-8 py-3 rounded-md text-center font-medium transition duration-300">Contact Us</a> |
| <a href="connect.html" class="border-2 border-white hover:bg-white hover:bg-opacity-10 px-8 py-3 rounded-md text-center font-medium transition duration-300">Get Connected</a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-gray-900 text-white pt-16 pb-8"> |
| <div class="container mx-auto px-6"> |
| <div class="grid md:grid-cols-4 gap-8 mb-12"> |
| <div> |
| <div class="flex items-center mb-6"> |
| <i class="fas fa-cross text-blue-500 text-2xl mr-2"></i> |
| <span class="heading-font text-xl font-bold">UCF</span> |
| </div> |
| <p class="text-gray-400 mb-4">University Christian Fellowship is a campus ministry dedicated to helping students grow in their relationship with Jesus Christ.</p> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"><i class="fab fa-facebook-f"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"><i class="fab fa-instagram"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"><i class="fab fa-twitter"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"><i class="fab fa-youtube"></i></a> |
| </div> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-semibold mb-6">Quick Links</h3> |
| <ul class="space-y-3"> |
| <li><a href="index.html" class="text-gray-400 hover:text-white transition duration-300">Home</a></li> |
| <li><a href="about.html" class="text-gray-400 hover:text-white transition duration-300">About Us</a></li> |
| <li><a href="#" class="text-white font-medium hover:text-white transition duration-300">Events</a></li> |
| <li><a href="sermons.html" class="text-gray-400 hover:text-white transition duration-300">Sermons</a></li> |
| <li><a href="contact.html" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-semibold mb-6">Resources</h3> |
| <ul class="space-y-3"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Bible Studies</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Prayer Requests</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Mission Trips</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Leadership</a></li> |
| <li><a href="give.html" class="text-gray-400 hover:text-white transition duration-300">Give Online</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-semibold mb-6">Contact Us</h3> |
| <ul class="space-y-3"> |
| <li class="flex items-start"> |
| <i class="fas fa-map-marker-alt text-gray-400 mt-1 mr-3"></i> |
| <span class="text-gray-400">123 Campus Way<br>University City, ST 12345</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-phone-alt text-gray-400 mr-3"></i> |
| <span class="text-gray-400">(555) 123-4567</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-envelope text-gray-400 mr-3"></i> |
| <span class="text-gray-400">hello@universitycf.org</span> |
| </li> |
| </ul> |
| </div> |
| </div> |
| |
| <div class="border-t border-gray-800 pt-8"> |
| <div class="flex flex-col md:flex-row justify-between items-center"> |
| <p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 University Christian Fellowship. All rights reserved.</p> |
| <div class="flex space-x-6"> |
| <a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Privacy Policy</a> |
| <a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Terms of Use</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| document.addEventListener('DOMContentLoaded', function() { |
| const mobileMenuButton = document.querySelector('button.md\\:hidden'); |
| const mobileMenu = document.querySelector('.md\\:flex.space-x-8'); |
| |
| mobileMenuButton.addEventListener('click', function() { |
| mobileMenu.classList.toggle('hidden'); |
| mobileMenu.classList.toggle('flex'); |
| mobileMenu.classList.toggle('flex-col'); |
| mobileMenu.classList.toggle('absolute'); |
| mobileMenu.classList.toggle('top-16'); |
| mobileMenu.classList.toggle('left-0'); |
| mobileMenu.classList.toggle('w-full'); |
| mobileMenu.classList.toggle('bg-white'); |
| mobileMenu.classList.toggle('p-4'); |
| mobileMenu.classList.toggle('space-y-4'); |
| mobileMenu.classList.toggle('space-x-0'); |
| mobileMenu.classList.toggle('shadow-md'); |
| }); |
| |
| |
| const filterButtons = document.querySelectorAll('.category-filter'); |
| const eventCards = document.querySelectorAll('.event-card'); |
| |
| filterButtons.forEach(button => { |
| button.addEventListener('click', function() { |
| |
| filterButtons.forEach(btn => btn.classList.remove('active')); |
| this.classList.add('active'); |
| |
| const category = this.getAttribute('data-category'); |
| |
| |
| eventCards.forEach(card => { |
| if (category === 'all' || card.getAttribute('data-category') === category) { |
| card.style.display = 'block'; |
| } else { |
| card.style.display = 'none'; |
| } |
| }); |
| }); |
| }); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function (e) { |
| e.preventDefault(); |
| |
| const targetId = this.getAttribute('href'); |
| if (targetId === '#') return; |
| |
| const targetElement = document.querySelector(targetId); |
| if (targetElement) { |
| targetElement.scrollIntoView({ |
| behavior: 'smooth' |
| }); |
| } |
| }); |
| }); |
| }); |
| </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=KERAAUMA/ucfuw" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |