cleanup and cms migration
Some checks failed
Build and Deploy / build-and-deploy (push) Has been cancelled

This commit is contained in:
2026-03-23 20:45:24 -04:00
parent 2ba6f43489
commit 5121ba1852
47 changed files with 1275 additions and 3411 deletions

View File

@@ -99,139 +99,6 @@
}
}
/* Component layer */
@layer components {
.btn-primary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.75rem 1.75rem;
background-color: var(--color-brand-600);
color: #ffffff;
font-family: var(--font-body);
font-weight: 700;
font-size: 0.9375rem;
letter-spacing: 0.02em;
border-radius: 4px;
border: 2px solid transparent;
transition: background-color 0.2s ease, transform 0.1s ease;
cursor: pointer;
text-decoration: none;
}
.btn-primary:hover {
background-color: var(--color-brand-700);
transform: translateY(-1px);
}
.btn-primary:active {
transform: translateY(0);
}
.btn-outline {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.75rem 1.75rem;
background-color: transparent;
color: var(--color-brand-600);
font-family: var(--font-body);
font-weight: 700;
font-size: 0.9375rem;
letter-spacing: 0.02em;
border-radius: 4px;
border: 2px solid var(--color-brand-600);
transition: background-color 0.2s ease, color 0.2s ease;
cursor: pointer;
text-decoration: none;
}
.btn-outline:hover {
background-color: var(--color-brand-600);
color: #ffffff;
}
.btn-outline-white {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.75rem 1.75rem;
background-color: transparent;
color: #ffffff;
font-family: var(--font-body);
font-weight: 700;
font-size: 0.9375rem;
letter-spacing: 0.02em;
border-radius: 4px;
border: 2px solid rgba(255, 255, 255, 0.8);
transition: background-color 0.2s ease, border-color 0.2s ease;
cursor: pointer;
text-decoration: none;
}
.btn-outline-white:hover {
background-color: rgba(255, 255, 255, 0.15);
border-color: #ffffff;
}
.section-title {
font-family: var(--font-display);
font-size: clamp(1.75rem, 4vw, 2.5rem);
color: var(--color-brand-600);
font-weight: 500;
}
.section-subtitle {
font-family: var(--font-body);
font-size: 1.125rem;
color: var(--color-gray-dark);
opacity: 0.8;
margin-top: 0.5rem;
}
.container-site {
max-width: 1200px;
margin-left: auto;
margin-right: auto;
padding-left: 1.5rem;
padding-right: 1.5rem;
}
.form-label {
display: block;
font-weight: 700;
font-size: 0.875rem;
color: var(--color-brand-600);
margin-bottom: 0.375rem;
letter-spacing: 0.02em;
}
.form-input {
width: 100%;
padding: 0.6875rem 1rem;
border: 1.5px solid var(--color-brand-mid);
border-radius: 4px;
font-family: var(--font-body);
font-size: 1rem;
color: var(--color-gray-dark);
background-color: #ffffff;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
outline: none;
}
.form-input:focus {
border-color: var(--color-brand-600);
box-shadow: 0 0 0 3px rgba(49, 71, 50, 0.12);
}
.form-input::placeholder {
color: var(--color-gray-light);
}
}
:root {
--background: oklch(1 0 0);
--foreground: oklch(0.145 0 0);