Spaces:
Running
Running
Design a website for the paranormal research team named White Sage Paranormal. The website should feature a dark, macabre, or spooky theme to it. The website should include a page for contact information, a page for blogs and updates about the research team and our projects, as well as a gallery to post evidence and a media page for uploaded videos of our investigations and other content.
c19288b verified | <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>White Sage Paranormal | Gallery</title> | |
| <link rel="icon" type="image/x-icon" href="favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| eerie: { | |
| 100: '#d8d8d8', | |
| 200: '#b0b0b0', | |
| 300: '#898989', | |
| 400: '#616161', | |
| 500: '#3a3a3a', | |
| 600: '#2e2e2e', | |
| 700: '#232323', | |
| 800: '#171717', | |
| 900: '#0c0c0c', | |
| }, | |
| sage: { | |
| 100: '#f0f7e8', | |
| 200: '#e1efd1', | |
| 300: '#d2e8ba', | |
| 400: '#c3e0a3', | |
| 500: '#b4d88c', | |
| 600: '#90ad70', | |
| 700: '#6c8254', | |
| 800: '#485638', | |
| 900: '#242b1c', | |
| } | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Creepster&family=EB+Garamond:ital,wght@0,400;0,700;1,400&display=swap'); | |
| .font-creepster { | |
| font-family: 'Creepster', cursive; | |
| } | |
| .font-garamond { | |
| font-family: 'EB Garamond', serif; | |
| } | |
| .parallax { | |
| background-attachment: fixed; | |
| background-position: center; | |
| background-repeat: no-repeat; | |
| background-size: cover; | |
| } | |
| .text-shadow { | |
| text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); | |
| } | |
| .text-glow { | |
| text-shadow: 0 0 10px rgba(180, 216, 140, 0.7); | |
| } | |
| .hover-glow:hover { | |
| box-shadow: 0 0 15px rgba(180, 216, 140, 0.7); | |
| } | |
| .gallery-item { | |
| transition: transform 0.3s ease; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .gallery-item:hover { | |
| transform: scale(1.03); | |
| } | |
| .gallery-item::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: 0; | |
| left: 0; | |
| right: 0; | |
| height: 50%; | |
| background: linear-gradient(to top, rgba(12, 12, 12, 0.8), transparent); | |
| opacity: 0; | |
| transition: opacity 0.3s ease; | |
| } | |
| .gallery-item:hover::after { | |
| opacity: 1; | |
| } | |
| .gallery-caption { | |
| position: absolute; | |
| bottom: -50px; | |
| left: 0; | |
| right: 0; | |
| padding: 1rem; | |
| color: white; | |
| transition: bottom 0.3s ease; | |
| z-index: 2; | |
| } | |
| .gallery-item:hover .gallery-caption { | |
| bottom: 0; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-eerie-900 text-sage-100 font-garamond min-h-screen"> | |
| <!-- Navigation --> | |
| <nav class="bg-eerie-800 bg-opacity-90 border-b border-sage-700 sticky top-0 z-50"> | |
| <div class="container mx-auto px-4 py-3"> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <i data-feather="wind" class="text-sage-500"></i> | |
| <a href="index.html" class="text-2xl font-creepster text-sage-400 hover:text-sage-300 transition duration-300">WHITE SAGE PARANORMAL</a> | |
| </div> | |
| <div class="hidden md:flex space-x-6"> | |
| <a href="index.html" class="text-sage-300 hover:text-sage-100 text-lg transition duration-300">Home</a> | |
| <a href="blog.html" class="text-sage-300 hover:text-sage-100 text-lg transition duration-300">Blog</a> | |
| <a href="gallery.html" class="text-sage-400 hover:text-sage-100 text-lg transition duration-300">Gallery</a> | |
| <a href="media.html" class="text-sage-300 hover:text-sage-100 text-lg transition duration-300">Media</a> | |
| <a href="contact.html" class="text-sage-300 hover:text-sage-100 text-lg transition duration-300">Contact</a> | |
| </div> | |
| <button class="md:hidden text-sage-300 focus:outline-none" id="mobile-menu-button"> | |
| <i data-feather="menu"></i> | |
| </button> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div class="md:hidden hidden pt-4" id="mobile-menu"> | |
| <div class="flex flex-col space-y-2"> | |
| <a href="index.html" class="block px-3 py-2 rounded hover:bg-eerie-700 text-sage-300">Home</a> | |
| <a href="blog.html" class="block px-3 py-2 rounded hover:bg-eerie-700 text-sage-300">Blog</a> | |
| <a href="gallery.html" class="block px-3 py-2 rounded hover:bg-eerie-700 text-sage-400">Gallery</a> | |
| <a href="media.html" class="block px-3 py-2 rounded hover:bg-eerie-700 text-sage-300">Media</a> | |
| <a href="contact.html" class="block px-3 py-2 rounded hover:bg-eerie-700 text-sage-300">Contact</a> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Gallery Header --> | |
| <section class="relative py-20 bg-eerie-900 bg-opacity-90"> | |
| <div class="absolute inset-0 bg-[url('http://static.photos/black/1024x576/22')] bg-cover bg-center opacity-30"></div> | |
| <div class="container mx-auto px-4 relative z-10 text-center"> | |
| <h1 class="text-5xl md:text-7xl font-creepster text-sage-400 mb-6 text-shadow">EVIDENCE GALLERY</h1> | |
| <p class="text-xl md:text-2xl text-sage-200 mb-8 max-w-3xl mx-auto text-shadow"> | |
| Photographic, audio, and video evidence collected during our investigations. | |
| </p> | |
| </div> | |
| </section> | |
| <!-- Gallery Filters --> | |
| <section class="py-8 bg-eerie-800 bg-opacity-80 border-y border-sage-700 sticky top-16 z-40"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-wrap justify-center gap-4"> | |
| <button class="px-4 py-2 bg-sage-600 text-eerie-900 font-bold rounded-full">All Evidence</button> | |
| <button class="px-4 py-2 border border-sage-600 text-sage-300 rounded-full hover:bg-sage-800 hover:bg-opacity-30 transition duration-300">Photos</button> | |
| <button class="px-4 py-2 border border-sage-600 text-sage-300 rounded-full hover:bg-sage-800 hover:bg-opacity-30 transition duration-300">EVPs</button> | |
| <button class="px-4 py-2 border border-sage-600 text-sage-300 rounded-full hover:bg-sage-800 hover:bg-opacity-30 transition duration-300">Thermal</button> | |
| <button class="px-4 py-2 border border-sage-600 text-sage-300 rounded-full hover:bg-sage-800 hover:bg-opacity-30 transition duration-300">EMF</button> | |
| <button class="px-4 py-2 border border-sage-600 text-sage-300 rounded-full hover:bg-sage-800 hover:bg-opacity-30 transition duration-300">Most Recent</button> | |
| <button class="px-4 py-2 border border-sage-600 text-sage-300 rounded-full hover:bg-sage-800 hover:bg-opacity-30 transition duration-300">Most Active</button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Gallery Content --> | |
| <section class="py-16 bg-eerie-900 bg-opacity-90"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6"> | |
| <!-- Gallery Item 1 --> | |
| <div class="gallery-item rounded-lg overflow-hidden shadow-lg relative"> | |
| <img src="http://static.photos/black/640x360/31" alt="Paranormal evidence" class="w-full h-64 object-cover"> | |
| <div class="gallery-caption"> | |
| <h3 class="font-bold text-sage-300">Figure in Doorway</h3> | |
| <p class="text-sm text-sage-200">Willowbrook Asylum - 10/2023</p> | |
| </div> | |
| <div class="absolute top-2 right-2 bg-eerie-800 bg-opacity-70 px-2 py-1 rounded-full text-xs text-sage-300"> | |
| <i data-feather="image" class="w-3 h-3 inline mr-1"></i> Photo | |
| </div> | |
| </div> | |
| <!-- Gallery Item 2 --> | |
| <div class="gallery-item rounded-lg overflow-hidden shadow-lg relative"> | |
| <img src="http://static.photos/black/640x360/64" alt="Paranormal evidence" class="w-full h-64 object-cover"> | |
| <div class="gallery-caption"> | |
| <h3 class="font-bold text-sage-300">Thermal Anomaly</h3> | |
| <p class="text-sm text-sage-200">Blackwood Farm - 09/2023</p> | |
| </div> | |
| <div class="absolute top-2 right-2 bg-eerie-800 bg-opacity-70 px-2 py-1 rounded-full text-xs text-sage-300"> | |
| <i data-feather="thermometer" class="w-3 h-3 inline mr-1"></i> Thermal | |
| </div> | |
| </div> | |
| <!-- Gallery Item 3 --> | |
| <div class="gallery-item rounded-lg overflow-hidden shadow-lg relative"> | |
| <img src="http://static.photos/black/640x360/77" alt="Paranormal evidence" class="w-full h-64 object-cover"> | |
| <div class="gallery-caption"> | |
| <h3 class="font-bold text-sage-300">Orb Cluster</h3> | |
| <p class="text-sm text-sage-200">Holloway Bridge - 08/2023</p> | |
| </div> | |
| <div class="absolute top-2 right-2 bg-eerie-800 bg-opacity-70 px-2 py-1 rounded-full text-xs text-sage-300"> | |
| <i data-feather="camera" class="w-3 h-3 inline mr-1"></i> Full Spec | |
| </div> | |
| </div> | |
| <!-- Gallery Item 4 --> | |
| <div class="gallery-item rounded-lg overflow-hidden shadow-lg relative"> | |
| <img src="http://static.photos/black/640x360/88" alt="Paranormal evidence" class="w-full h-64 object-cover"> | |
| <div class="gallery-caption"> | |
| <h3 class="font-bold text-sage-300">Shadow Figure</h3> | |
| <p class="text-sm text-sage-200">Riverside Sanatorium - 07/2023</p> | |
| </div> | |
| <div class="absolute top-2 right-2 bg-eerie-800 bg-opacity-70 px-2 py-1 rounded-full text-xs text-sage-300"> | |
| <i data-feather="video" class="w-3 h-3 inline mr-1"></i> Video Still | |
| </div> | |
| </div> | |
| <!-- Gallery Item 5 --> | |
| <div class="gallery-item rounded-lg overflow-hidden shadow-lg relative"> | |
| <img src="http://static.photos/black/640x360/95" alt="Paranormal evidence" class="w-full h-64 object-cover"> | |
| <div class="gallery-caption"> | |
| <h3 class="font-bold text-sage-300">EMF Spike</h3> | |
| <p class="text-sm text-sage-200">Old City Morgue - 06/2023</p> | |
| </div> | |
| <div class="absolute top-2 right-2 bg-eerie-800 bg-opacity-70 px-2 py-1 rounded-full text-xs text-sage-300"> | |
| <i data-feather="activity" class="w-3 h-3 inline mr-1"></i> EMF | |
| </div> | |
| </div> | |
| <!-- Gallery Item 6 --> | |
| <div class="gallery-item rounded-lg overflow-hidden shadow-lg relative"> | |
| <img src="http://static.photos/black/640x360/13" alt="Paranormal evidence" class="w-full h-64 object-cover"> | |
| <div class="gallery-caption"> | |
| <h3 class="font-bold text-sage-300">Apparition</h3> | |
| <p class="text-sm text-sage-200">Lakeside Hotel - 05/2023</p> | |
| </div> | |
| <div class="absolute top-2 right-2 bg-eerie-800 bg-opacity-70 px-2 py-1 rounded-full text-xs text-sage-300"> | |
| <i data-feather="image" class="w-3 h-3 inline mr-1"></i> Photo | |
| </div> | |
| </div> | |
| <!-- Gallery Item 7 --> | |
| <div class="gallery-item rounded-lg overflow-hidden shadow-lg relative"> | |
| <img src="http://static.photos/black/640x360/26" alt="Paranormal evidence" class="w-full h-64 object-cover"> | |
| <div class="gallery-caption"> | |
| <h3 class="font-bold text-sage-300">Cold Spot</h3> | |
| <p class="text-sm text-sage-200">Blackwood Farm - 04/2023</p> | |
| </div> | |
| <div class="absolute top-2 right-2 bg-eerie-800 bg-opacity-70 px-2 py-1 rounded-full text-xs text-sage-300"> | |
| <i data-feather="thermometer" class="w-3 h-3 inline mr-1"></i> Thermal | |
| </div> | |
| </div> | |
| <!-- Gallery Item 8 --> | |
| <div class="gallery-item rounded-lg overflow-hidden shadow-lg relative"> | |
| <img src="http://static.photos/black/640x360/39" alt="Paranormal evidence" class="w-full h-64 object-cover"> | |
| <div class="gallery-caption"> | |
| <h3 class="font-bold text-sage-300">Disembodied Voice</h3> | |
| <p class="text-sm text-sage-200">Willowbrook Asylum - 03/2023</p> | |
| </div> | |
| <div class="absolute top-2 right-2 bg-eerie-800 bg-opacity-70 px-2 py-1 rounded-full text-xs text-sage-300"> | |
| <i data-feather="mic" class="w-3 h-3 inline mr-1"></i> EVP | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Load More --> | |
| <div class="text-center mt-16"> | |
| <button class="px-6 py-3 border-2 border-sage-600 text-sage-300 font-bold rounded-lg hover:bg-sage-800 hover:bg-opacity-30 transition duration-300 hover-glow"> | |
| Load More Evidence | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Evidence Categories --> | |
| <section class="py-16 bg-eerie-800 bg-opacity-80"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl font-creepster text-sage-400 mb-4 text-shadow">TYPES OF EVIDENCE</h2> | |
| <div class="w-24 h-1 bg-sage-500 mx-auto"></div> | |
| </div> | |
| <div class="grid md:grid-cols-4 gap-8"> | |
| <!-- Category 1 --> | |
| <div class="bg-eerie-700 p-6 rounded-lg text-center hover-glow transition duration-500"> | |
| <div class="bg-eerie-600 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4"> | |
| <i data-feather="camera" class="w-8 h-8 text-sage-400"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-sage-300 mb-2">Photographic</h3> | |
| <p class="text-sage-200"> | |
| Unexplained figures, orbs, mists, and other anomalies captured in still images. | |
| </p> | |
| </div> | |
| <!-- Category 2 --> | |
| <div class="bg-eerie-700 p-6 rounded-lg text-center hover-glow transition duration-500"> | |
| <div class="bg-eerie-600 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4"> | |
| <i data-feather="mic" class="w-8 h-8 text-sage-400"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-sage-300 mb-2">EVP</h3> | |
| <p class="text-sage-200"> | |
| Electronic Voice Phenomena - disembodied voices captured on audio recordings. | |
| </p> | |
| </div> | |
| <!-- Category 3 --> | |
| <div class="bg-eerie-700 p-6 rounded-lg text-center hover-glow transition duration-500"> | |
| <div class="bg-eerie-600 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4"> | |
| <i data-feather="video" class="w-8 h-8 text-sage-400"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-sage-300 mb-2">Video</h3> | |
| <p class="text-sage-200"> | |
| Moving apparitions, object manipulation, and other activity captured on video. | |
| </p> | |
| </div> | |
| <!-- Category 4 --> | |
| <div class="bg-eerie-700 p-6 rounded-lg text-center hover-glow transition duration-500"> | |
| <div class="bg-eerie-600 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4"> | |
| <i data-feather="activity" class="w-8 h-8 text-sage-400"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-sage-300 mb-2">EMF/Environmental</h3> | |
| <p class="text-sage-200"> | |
| Electromagnetic field readings, temperature fluctuations, and other environmental data. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-eerie-800 border-t border-sage-800 py-12"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-xl font-creepster text-sage-400 mb-4">WHITE SAGE PARANORMAL</h3> | |
| <p class="text-sage-300"> | |
| Documenting the paranormal with respect, integrity, and scientific methodology since 2010. | |
| </p> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold text-sage-300 mb-4">QUICK LINKS</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="index.html" class="text-sage-400 hover:text-sage-200 transition duration-300">Home</a></li> | |
| <li><a href="blog.html" class="text-sage-400 hover:text-sage-200 transition duration-300">Blog</a></li> | |
| <li><a href="gallery.html" class="text-sage-400 hover:text-sage-200 transition duration-300">Gallery</a></li> | |
| <li><a href="media.html" class="text-sage-400 hover:text-sage-200 transition duration-300">Media</a></li> | |
| <li><a href="contact.html" class="text-sage-400 hover:text-sage-200 transition duration-300">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold text-sage-300 mb-4">EVIDENCE TYPES</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-sage-400 hover:text-sage-200 transition duration-300">Photographic</a></li> | |
| <li><a href="#" class="text-sage-400 hover:text-sage-200 transition duration-300">EVP Recordings</a></li> | |
| <li><a href="#" class="text-sage-400 hover:text-sage-200 transition duration-300">Video Evidence</a></li> | |
| <li><a href="#" class="text-sage-400 hover:text-sage-200 transition duration-300">Environmental Data</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold text-sage-300 mb-4">FOLLOW US</h4> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-sage-400 hover:text-sage-200 transition duration-300"> | |
| <i data-feather="facebook" class="w-6 h-6"></i> | |
| </a> | |
| <a href="#" class="text-sage-400 hover:text-sage-200 transition duration-300"> | |
| <i data-feather="instagram" class="w-6 h-6"></i> | |
| </a> | |
| <a href="#" class="text-sage-400 hover:text-sage-200 transition duration-300"> | |
| <i data-feather="youtube" class="w-6 h-6"></i> | |
| </a> | |
| <a href="#" class="text-sage-400 hover:text-sage-200 transition duration-300"> | |
| <i data-feather="twitter" class="w-6 h-6"></i> | |
| </a> | |
| </div> | |
| <div class="mt-6"> | |
| <p class="text-sm text-sage-500"> | |
| Submit your own evidence for analysis | |
| </p> | |
| <a href="contact.html" class="inline-block mt-2 px-4 py-2 bg-sage-600 hover:bg-sage-700 text-eerie-900 rounded transition duration-300"> | |
| Contact Us | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="border-t border-sage-800 mt-12 pt-8 text-center text-sage-500"> | |
| <p>© 2023 White Sage Paranormal. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Mobile menu toggle | |
| document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
| const menu = document.getElementById('mobile-menu'); | |
| menu.classList.toggle('hidden'); | |
| }); | |
| // Initialize feather icons | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> | |