/* Header */
header#site-header {
background-color: var(--bg-header);
color: var(--text-light);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
position: relative;
z-index: 1;
}
header#site-header .container {
max-width: 800px;
margin: 0 auto;
padding: 1rem 1.5rem;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0.5rem;
position: relative;
}
/* Logo section - positioned above nav */
header#site-header .logo {
display: flex;
align-items: center;
font-size: 1.8rem;
font-weight: bolder;
position: relative;
text-decoration: none;
color: inherit;
gap: 1rem;
margin-left: 10px;
padding-left: 64px; /* Space for the icon */
}
header#site-header .site-title {
color: inherit;
text-decoration: none;
position: relative;
display: inline-block;
}
header#site-header .site-title,
a {
color: inherit;
text-decoration: none;
position: relative;
display: inline-block;
}
header#site-header .site-title a::after {
content: "";
position: absolute;
left: 0;
bottom: -2px;
width: 100%;
height: 2px;
background-color: var(--bg-light-accent);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s ease;
}
header#site-header .site-title a:hover::after {
transform: scaleX(1);
}
.pattern-lambda {
background-image: repeating-linear-gradient(
45deg,
transparent,
transparent 50px,
rgba(236, 240, 241, 0.08) 50px,
rgba(236, 240, 241, 0.08) 52px
);
position: relative;
}
.pattern-lambda::before {
content: "</> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </>";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
font-size: 2rem;
color: rgba(236, 240, 241, 0.05);
letter-spacing: 2rem;
line-height: 3rem;
overflow: hidden;
pointer-events: none;
}