diff --git a/weather_dashboard.html b/weather_dashboard.html index 7ca18f20..3026e765 100644 --- a/weather_dashboard.html +++ b/weather_dashboard.html @@ -166,11 +166,103 @@ grid-template-columns: 1fr; } } + + .navbar { + background: var(--primary); + color: #fff; + display: flex; + justify-content: space-between; + align-items: center; + padding: 0.75rem 2rem; + box-shadow: var(--shadow); + position: sticky; + top: 0; + z-index: 1000; + } + + .nav-logo img { + height: 40px; + /* adjust size */ + width: auto; + display: block; + } + + .nav-links { + list-style: none; + display: flex; + gap: 1.5rem; + margin: 0; + padding: 0; + } + + .nav-links li a { + color: #fff; + text-decoration: none; + font-weight: 500; + transition: color 0.3s ease; + } + + .nav-links li a:hover { + color: var(--accent); + } + + .logo { + display: flex; + align-items: center; + gap: 0.5rem; + text-decoration: none; + } + + .logo img { + height: 40px; + width: auto; + display: block; + } + + .logo-text { + font-weight: 700; + font-size: 1.2rem; + color: var(--accent); + } + + + + /* Mobile responsive */ + @media (max-width: 768px) { + .nav-links { + flex-direction: column; + background: var(--primary); + position: absolute; + top: 100%; + right: 0; + width: 200px; + padding: 1rem; + display: none; + } + + .nav-links.show { + display: flex; + } + }
+ + + +Consulting Intelligence Engine...