File size: 4,200 Bytes
e47a16a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
class CustomHeader extends HTMLElement {
  connectedCallback() {
    this.attachShadow({ mode: 'open' });
    this.shadowRoot.innerHTML = `
      <style>
        :host {
          display: block;
        }
        
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
        
        header {
          background-color: rgba(17, 24, 39, 0.9);
          backdrop-filter: blur(10px);
          position: sticky;
          top: 0;
          z-index: 50;
          border-bottom: 1px solid rgba(55, 65, 81, 0.5);
        }
        
        .container {
          max-width: 1280px;
          margin: 0 auto;
          padding: 0 1rem;
        }
        
        nav {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 1.5rem 0;
        }
        
        .logo {
          display: flex;
          align-items: center;
          font-weight: 700;
          font-size: 1.5rem;
          color: #f9fafb;
          text-decoration: none;
        }
        
        .logo span {
          color: #818cf8;
        }
        
        .nav-links {
          display: flex;
          gap: 2rem;
          align-items: center;
        }
        
        .nav-link {
          color: #9ca3af;
          text-decoration: none;
          font-weight: 500;
          transition: color 0.3s ease;
        }
        
        .nav-link:hover {
          color: #e5e7eb;
        }
        
        .nav-button {
          background-color: transparent;
          color: #c7d2fe;
          border: 1px solid #4f46e5;
          padding: 0.5rem 1.5rem;
          border-radius: 0.5rem;
          font-weight: 500;
          transition: all 0.3s ease;
        }
        
        .nav-button:hover {
          background-color: #4f46e5;
          color: white;
        }
        
        .mobile-menu-button {
          display: none;
          background: none;
          border: none;
          color: #9ca3af;
        }
        
        .mobile-menu {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background-color: #1f2937;
          padding: 1rem;
          border-top: 1px solid #374151;
        }
        
        .mobile-nav-links {
          display: flex;
          flex-direction: column;
          gap: 1rem;
        }
        
        @media (max-width: 768px) {
          .nav-links {
            display: none;
          }
          
          .mobile-menu-button {
            display: block;
          }
          
          .mobile-menu-button:hover {
            color: #e5e7eb;
          }
        }
      </style>
      
      <header>
        <div class="container">
          <nav>
            <a href="#" class="logo">Orbit<span>Premium</span></a>
            
            <div class="nav-links">
              <a href="#" class="nav-link">Home</a>
              <a href="#" class="nav-link">Features</a>
              <a href="#" class="nav-link">Pricing</a>
              <a href="#" class="nav-link">About</a>
              <a href="#" class="nav-button">Sign In</a>
            </div>
            
            <button id="mobile-menu-button" class="mobile-menu-button">
              <i data-feather="menu" class="w-6 h-6"></i>
            </button>
          </nav>
          
          <div id="mobile-menu" class="mobile-menu hidden">
            <div class="mobile-nav-links">
              <a href="#" class="nav-link">Home</a>
              <a href="#" class="nav-link">Features</a>
              <a href="#" class="nav-link">Pricing</a>
              <a href="#" class="nav-link">About</a>
              <a href="#" class="nav-button">Sign In</a>
            </div>
          </div>
        </div>
      </header>
    `;
    
    // Initialize feather icons in shadow DOM
    const featherScript = document.createElement('script');
    featherScript.src = 'https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js';
    featherScript.onload = () => {
      feather.replace();
    };
    this.shadowRoot.appendChild(featherScript);
  }
}

customElements.define('custom-header', CustomHeader);