| class CustomFooter extends HTMLElement { |
| connectedCallback() { |
| this.attachShadow({ mode: 'open' }); |
| this.shadowRoot.innerHTML = ` |
| <style> |
| footer { |
| background: rgba(255, 255, 255, 0.8); |
| backdrop-filter: blur(10px); |
| color: #374151; |
| padding: 4rem 2rem; |
| border-top: 1px solid rgba(0,0,0,0.05); |
| } |
| .footer-container { |
| max-width: 1200px; |
| margin: 0 auto; |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); |
| gap: 2rem; |
| } |
| .footer-logo { |
| font-size: 1.25rem; |
| font-weight: 700; |
| background: linear-gradient(90deg, #4f46e5, #7c3aed); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| display: flex; |
| align-items: center; |
| gap: 0.5rem; |
| margin-bottom: 1rem; |
| } |
| .footer-links h3 { |
| font-size: 1rem; |
| font-weight: 600; |
| margin-bottom: 1rem; |
| color: #111827; |
| } |
| .footer-links ul { |
| list-style: none; |
| padding: 0; |
| margin: 0; |
| } |
| .footer-links li { |
| margin-bottom: 0.5rem; |
| } |
| .footer-links a { |
| color: #4b5563; |
| text-decoration: none; |
| transition: color 0.2s; |
| } |
| .footer-links a:hover { |
| color: #4f46e5; |
| } |
| .social-links { |
| display: flex; |
| gap: 1rem; |
| margin-top: 1rem; |
| } |
| .social-links a { |
| color: #4b5563; |
| transition: color 0.2s; |
| } |
| .social-links a:hover { |
| color: #4f46e5; |
| } |
| .copyright { |
| text-align: center; |
| margin-top: 3rem; |
| padding-top: 2rem; |
| border-top: 1px solid rgba(0,0,0,0.05); |
| color: #6b7280; |
| font-size: 0.875rem; |
| } |
| @media (max-width: 768px) { |
| .footer-container { |
| grid-template-columns: 1fr; |
| } |
| } |
| </style> |
| <footer> |
| <div class="footer-container"> |
| <div class="footer-about"> |
| <div class="footer-logo"> |
| <i data-feather="activity"></i> |
| <span>Shine & Shield</span> |
| </div> |
| <p>Premium automotive care services to keep your vehicle looking flawless.</p> |
| </div> |
| |
| <div class="footer-links"> |
| <h3>Services</h3> |
| <ul> |
| <li><a href="/car-wash.html">Car Wash</a></li> |
| <li><a href="/detailing.html">Detailing</a></li> |
| <li><a href="/polarization.html">Polarization</a></li> |
| <li><a href="/carpet-care.html">Carpet Care</a></li> |
| </ul> |
| </div> |
| |
| <div class="footer-links"> |
| <h3>Company</h3> |
| <ul> |
| <li><a href="/about.html">About Us</a></li> |
| <li><a href="/team.html">Our Team</a></li> |
| <li><a href="/locations.html">Locations</a></li> |
| <li><a href="/careers.html">Careers</a></li> |
| </ul> |
| </div> |
| |
| <div class="footer-links"> |
| <h3>Contact</h3> |
| <ul> |
| <li><a href="tel:+1234567890">+1 (234) 567-890</a></li> |
| <li><a href="mailto:info@shineandshield.com">info@shineandshield.com</a></li> |
| <li><a href="/contact.html">Contact Form</a></li> |
| </ul> |
| <div class="social-links"> |
| <a href="#"><i data-feather="facebook"></i></a> |
| <a href="#"><i data-feather="instagram"></i></a> |
| <a href="#"><i data-feather="twitter"></i></a> |
| <a href="#"><i data-feather="youtube"></i></a> |
| </div> |
| </div> |
| </div> |
| |
| <div class="copyright"> |
| © ${new Date().getFullYear()} Shine & Shield Auto Spa. All rights reserved. |
| </div> |
| </footer> |
| `; |
| } |
| } |
| customElements.define('custom-footer', CustomFooter); |