|
|
|
@ -99,6 +99,7 @@ header { |
|
|
|
color: var(--text-primary); |
|
|
|
color: var(--text-primary); |
|
|
|
font-weight: 600; |
|
|
|
font-weight: 600; |
|
|
|
font-size: 1.25rem; |
|
|
|
font-size: 1.25rem; |
|
|
|
|
|
|
|
margin-right: 3rem; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.logo-icon { |
|
|
|
.logo-icon { |
|
|
|
@ -348,27 +349,29 @@ a:focus { |
|
|
|
outline-offset: 2px; |
|
|
|
outline-offset: 2px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Buttons */ |
|
|
|
/* Buttons - Consolidated styles */ |
|
|
|
.btn { |
|
|
|
.btn { |
|
|
|
display: inline-block; |
|
|
|
display: inline-flex; |
|
|
|
|
|
|
|
align-items: center; |
|
|
|
|
|
|
|
gap: 0.5rem; |
|
|
|
padding: 0.75rem 1.5rem; |
|
|
|
padding: 0.75rem 1.5rem; |
|
|
|
background: var(--accent-color); |
|
|
|
background: var(--accent-color); |
|
|
|
color: #ffffff; |
|
|
|
color: #1a1a1a; |
|
|
|
border: none; |
|
|
|
border: none; |
|
|
|
border-radius: 4px; |
|
|
|
border-radius: 4px; |
|
|
|
|
|
|
|
font-size: 1rem; |
|
|
|
|
|
|
|
font-weight: 600; |
|
|
|
cursor: pointer; |
|
|
|
cursor: pointer; |
|
|
|
text-decoration: none; |
|
|
|
text-decoration: none; |
|
|
|
font-weight: 600; |
|
|
|
transition: background-color 0.2s, transform 0.1s; |
|
|
|
transition: background 0.2s; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.btn:hover { |
|
|
|
.btn:hover { |
|
|
|
background: var(--link-hover); |
|
|
|
background: var(--link-hover); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.btn:focus { |
|
|
|
.btn:active { |
|
|
|
outline: var(--focus-outline); |
|
|
|
transform: scale(0.98); |
|
|
|
outline-offset: var(--focus-offset); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.btn:focus:not(:focus-visible) { |
|
|
|
.btn:focus:not(:focus-visible) { |
|
|
|
@ -449,7 +452,7 @@ a:focus { |
|
|
|
gap: 0.5rem; |
|
|
|
gap: 0.5rem; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.feature-card p { |
|
|
|
.feature-card > p { |
|
|
|
margin-bottom: 1.5rem; |
|
|
|
margin-bottom: 1.5rem; |
|
|
|
color: var(--text-secondary); |
|
|
|
color: var(--text-secondary); |
|
|
|
flex-grow: 1; |
|
|
|
flex-grow: 1; |
|
|
|
@ -527,7 +530,7 @@ a:focus { |
|
|
|
.feature-image-wrapper { |
|
|
|
.feature-image-wrapper { |
|
|
|
position: relative; |
|
|
|
position: relative; |
|
|
|
width: 100%; |
|
|
|
width: 100%; |
|
|
|
aspect-ratio: 16 / 9; |
|
|
|
aspect-ratio: 1 / 1; |
|
|
|
overflow: hidden; |
|
|
|
overflow: hidden; |
|
|
|
border-radius: 8px; |
|
|
|
border-radius: 8px; |
|
|
|
background: var(--bg-primary); |
|
|
|
background: var(--bg-primary); |
|
|
|
@ -545,13 +548,13 @@ a:focus { |
|
|
|
bottom: 0; |
|
|
|
bottom: 0; |
|
|
|
left: 0; |
|
|
|
left: 0; |
|
|
|
right: 0; |
|
|
|
right: 0; |
|
|
|
background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%); |
|
|
|
background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%); |
|
|
|
padding: 1.5rem 1rem 1rem; |
|
|
|
padding: 1.5rem 1rem 1rem; |
|
|
|
color: #ffffff; |
|
|
|
color: #ffffff; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.feature-image-title { |
|
|
|
.feature-image-title { |
|
|
|
margin: 0; |
|
|
|
margin: 0 0 0.5rem 0; |
|
|
|
font-size: 1.1rem; |
|
|
|
font-size: 1.1rem; |
|
|
|
font-weight: 600; |
|
|
|
font-weight: 600; |
|
|
|
color: #ffffff; |
|
|
|
color: #ffffff; |
|
|
|
@ -559,6 +562,30 @@ a:focus { |
|
|
|
line-height: 1.3; |
|
|
|
line-height: 1.3; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.feature-image-summary { |
|
|
|
|
|
|
|
margin: 0; |
|
|
|
|
|
|
|
font-size: 0.9rem; |
|
|
|
|
|
|
|
color: rgba(255, 255, 255, 0.95); |
|
|
|
|
|
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); |
|
|
|
|
|
|
|
line-height: 1.4; |
|
|
|
|
|
|
|
display: -webkit-box; |
|
|
|
|
|
|
|
-webkit-line-clamp: 3; |
|
|
|
|
|
|
|
-webkit-box-orient: vertical; |
|
|
|
|
|
|
|
overflow: hidden; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.feature-card-content { |
|
|
|
|
|
|
|
margin-top: auto; |
|
|
|
|
|
|
|
display: flex; |
|
|
|
|
|
|
|
flex-direction: column; |
|
|
|
|
|
|
|
gap: 1rem; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.feature-card-content p { |
|
|
|
|
|
|
|
margin: 0; |
|
|
|
|
|
|
|
color: var(--text-secondary); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Articles and Pages */ |
|
|
|
/* Articles and Pages */ |
|
|
|
article { |
|
|
|
article { |
|
|
|
background: var(--bg-secondary); |
|
|
|
background: var(--bg-secondary); |
|
|
|
@ -1015,7 +1042,7 @@ textarea:focus-visible { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.contact-links li { |
|
|
|
.contact-links li { |
|
|
|
margin-bottom: 0.5rem; |
|
|
|
margin-bottom: 1rem; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.contact-links a { |
|
|
|
.contact-links a { |
|
|
|
@ -1185,23 +1212,11 @@ textarea:focus-visible { |
|
|
|
margin-top: 2rem; |
|
|
|
margin-top: 2rem; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.btn { |
|
|
|
/* .btn styles are defined above - consolidated */ |
|
|
|
padding: 0.75rem 1.5rem; |
|
|
|
|
|
|
|
border: none; |
|
|
|
|
|
|
|
border-radius: 4px; |
|
|
|
|
|
|
|
font-size: 1rem; |
|
|
|
|
|
|
|
font-weight: 600; |
|
|
|
|
|
|
|
cursor: pointer; |
|
|
|
|
|
|
|
transition: background-color 0.2s, transform 0.1s; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.btn:active { |
|
|
|
|
|
|
|
transform: scale(0.98); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.btn-primary { |
|
|
|
.btn-primary { |
|
|
|
background: var(--accent-color); |
|
|
|
background: var(--accent-color); |
|
|
|
color: #ffffff; |
|
|
|
color: #1a1a1a; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.btn-primary:hover { |
|
|
|
.btn-primary:hover { |
|
|
|
|