2026-02-02 20:34:35 +00:00
|
|
|
.header {
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 100;
|
2026-02-03 10:11:23 +00:00
|
|
|
background: var(--bg-card, white);
|
|
|
|
|
border-bottom: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
box-shadow: 0 2px 8px rgba(26, 22, 18, 0.06);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
max-width: 1280px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 0 1.5rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: 64px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
text-decoration: none;
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--text-primary, #1a1612);
|
2026-02-02 20:34:35 +00:00
|
|
|
font-size: 1.25rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
transition: color 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo:hover {
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--accent-coral, #e07256);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logoIcon {
|
2026-02-03 10:11:23 +00:00
|
|
|
width: 36px;
|
|
|
|
|
height: 36px;
|
|
|
|
|
color: var(--accent-coral, #e07256);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logoText {
|
2026-02-03 10:11:23 +00:00
|
|
|
font-family: var(--font-playfair), 'Playfair Display', serif;
|
2026-02-02 20:34:35 +00:00
|
|
|
font-weight: 700;
|
2026-02-03 10:11:23 +00:00
|
|
|
letter-spacing: -0.01em;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navLink {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
padding: 0.625rem 1rem;
|
|
|
|
|
font-size: 0.9375rem;
|
|
|
|
|
font-weight: 500;
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--text-secondary, #5c564d);
|
2026-02-02 20:34:35 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navLink:hover {
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navLink.active {
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--accent-coral, #e07256);
|
|
|
|
|
background: rgba(224, 114, 86, 0.1);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.badge {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
min-width: 1.25rem;
|
|
|
|
|
height: 1.25rem;
|
|
|
|
|
padding: 0 0.375rem;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: white;
|
2026-02-03 10:11:23 +00:00
|
|
|
background: var(--accent-coral, #e07256);
|
2026-02-02 20:34:35 +00:00
|
|
|
border-radius: 9999px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
.container {
|
|
|
|
|
padding: 0 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logoText {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav {
|
|
|
|
|
gap: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navLink {
|
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
}
|
|
|
|
|
}
|