Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Pleiadian Collective | Starseed Apparel</title> | |
| <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Space+Mono&display=swap" rel="stylesheet"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> | |
| <style> | |
| :root { | |
| --purple: #5a2d82; | |
| --teal: #2bb3b3; | |
| --deep-space: #0a0a1a; | |
| --starlight: #fffae6; | |
| } | |
| body { | |
| font-family: 'Montserrat', sans-serif; | |
| margin: 0; | |
| padding: 0; | |
| background-color: var(--deep-space); | |
| color: var(--starlight); | |
| background-image: radial-gradient(circle at 50% 50%, rgba(90, 45, 130, 0.1) 0%, transparent 20%); | |
| } | |
| .navbar { | |
| display: flex; | |
| justify-content: space-between; | |
| padding: 20px 5%; | |
| align-items: center; | |
| border-bottom: 1px solid var(--teal); | |
| } | |
| .logo { | |
| font-family: 'Space Mono', monospace; | |
| font-size: 1.8rem; | |
| color: var(--teal); | |
| } | |
| .nav-links a { | |
| margin: 0 15px; | |
| color: var(--starlight); | |
| text-decoration: none; | |
| transition: color 0.3s; | |
| } | |
| .nav-links a:hover { | |
| color: var(--teal); | |
| } | |
| .hero { | |
| height: 80vh; | |
| display: flex; | |
| flex-direction: column; | |
| justify-content: center; | |
| align-items: center; | |
| text-align: center; | |
| padding: 0 5%; | |
| background-image: url('http://static.photos/space/1200x630/42'), linear-gradient(to bottom, rgba(10,10,26,0.5), rgba(10,10,26,1)); | |
| background-blend-mode: overlay; | |
| background-size: cover; | |
| } | |
| .hero h1 { | |
| font-size: 3.5rem; | |
| margin-bottom: 20px; | |
| text-shadow: 0 0 10px var(--teal); | |
| } | |
| .cta-button { | |
| background: transparent; | |
| border: 2px solid var(--teal); | |
| color: var(--teal); | |
| padding: 12px 30px; | |
| font-size: 1.2rem; | |
| cursor: pointer; | |
| transition: all 0.3s; | |
| margin-top: 20px; | |
| } | |
| .cta-button:hover { | |
| background: var(--teal); | |
| color: var(--deep-space); | |
| } | |
| footer { | |
| text-align: center; | |
| padding: 30px 0; | |
| border-top: 1px solid var(--teal); | |
| margin-top: 50px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <nav class="navbar"> | |
| <div class="logo">Pleiadian Collective</div> | |
| <div class="nav-links"> | |
| <a href="index.html">Home</a> | |
| <a href="products.html">Shop</a> | |
| <a href="mission.html">Mission</a> | |
| <a href="contact.html">Contact</a> | |
| <a href="#"><i class="fas fa-shopping-cart"></i></a> | |
| </div> | |
| </nav> | |
| <section class="hero"> | |
| <h1>Awaken Your Cosmic Essence</h1> | |
| <p>Wear your starseed heritage with pride through our high-vibration apparel and sacred accessories</p> | |
| <a href="products.html" class="cta-button">Explore Collection</a> | |
| </section> | |
| <section class="featured-products"> | |
| <h2 class="section-title">Featured Galactic Designs</h2> | |
| <div class="products-grid"> | |
| <div class="product-card"> | |
| <img src="http://static.photos/abstract/640x360/111" alt="Pleiadian T-Shirt" class="product-image"> | |
| <h3 class="product-title">Pleiadian Activation Tee</h3> | |
| <p>Channel higher frequencies with sacred geometry</p> | |
| <div class="product-price">$34.99</div> | |
| <a href="products.html" class="add-to-cart">View Collection</a> | |
| </div> | |
| <div class="product-card"> | |
| <img src="http://static.photos/abstract/640x360/222" alt="Orion Hoodie" class="product-image"> | |
| <h3 class="product-title">Orion Energy Hoodie</h3> | |
| <p>Carry Orion's wisdom in your energy field</p> | |
| <div class="product-price">$59.99</div> | |
| <a href="products.html" class="add-to-cart">View Collection</a> | |
| </div> | |
| <div class="product-card"> | |
| <img src="http://static.photos/abstract/640x360/333" alt="Sirius Tank" class="product-image"> | |
| <h3 class="product-title">Sirius Star Tank</h3> | |
| <p>Connect with your Sirius lineage</p> | |
| <div class="product-price">$29.99</div> | |
| <a href="products.html" class="add-to-cart">View Collection</a> | |
| </div> | |
| </div> | |
| </section> | |
| <style> | |
| .featured-products { | |
| padding: 50px 5%; | |
| text-align: center; | |
| } | |
| .section-title { | |
| font-size: 2rem; | |
| color: var(--teal); | |
| margin-bottom: 40px; | |
| text-shadow: 0 0 5px rgba(43, 179, 179, 0.5); | |
| } | |
| .products-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | |
| gap: 30px; | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| } | |
| .product-card { | |
| background: rgba(10, 10, 26, 0.7); | |
| border: 1px solid var(--teal); | |
| border-radius: 8px; | |
| padding: 20px; | |
| transition: transform 0.3s, box-shadow 0.3s; | |
| } | |
| .product-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(43, 179, 179, 0.3); | |
| } | |
| .product-image { | |
| width: 100%; | |
| height: 300px; | |
| object-fit: cover; | |
| border-radius: 5px; | |
| margin-bottom: 15px; | |
| } | |
| .product-title { | |
| color: var(--teal); | |
| font-size: 1.3rem; | |
| margin-bottom: 10px; | |
| } | |
| .product-price { | |
| font-weight: bold; | |
| margin: 15px 0; | |
| font-size: 1.2rem; | |
| } | |
| .add-to-cart { | |
| display: inline-block; | |
| background: var(--teal); | |
| color: var(--deep-space); | |
| padding: 10px 25px; | |
| text-decoration: none; | |
| border-radius: 4px; | |
| transition: background 0.3s; | |
| } | |
| .add-to-cart:hover { | |
| background: #1d9d9d; | |
| } | |
| </style> | |
| <footer> | |
| <p>© 2023 Pleiadian Collective. All rights reserved.</p> | |
| </footer> | |
| </body> | |
| </html> | |