bolder: Increase visual impact across all sections
- Richer color palette with more chroma and warmer tones - Subtle paper texture background - Stronger shadow scale (sm/md/lg/xl) - Hero: larger typography, decorative ring, enhanced choreography - Trust: star rating row, decorative background rings, bigger scale - Services: card backgrounds with lift-on-hover shadows - Reviews: stronger hover lift, thicker borders - Team: image border, stronger avatar hover effects - SalonPromise: decorative ring, hover states, fixed grid alignment - SiteHeader: frosted glass backdrop-filter, stronger brand mark - FinalCta: decorative ring, stronger radial gradients
This commit is contained in:
@@ -42,10 +42,12 @@ import { siteContent } from "@/content/site-content"
|
||||
}
|
||||
|
||||
.team-image-v2 {
|
||||
margin: clamp(2rem, 4vw, 3.5rem) auto 0;
|
||||
margin: clamp(2.5rem, 5vw, 4rem) auto 0;
|
||||
max-width: 72rem;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
border: 2px solid var(--v2-hairline);
|
||||
border-radius: var(--v2-radius);
|
||||
}
|
||||
|
||||
.team-image-v2 img {
|
||||
@@ -54,76 +56,81 @@ import { siteContent } from "@/content/site-content"
|
||||
aspect-ratio: 21 / 9;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
filter: saturate(0.85) contrast(1.05);
|
||||
transition: transform 0.9s var(--ease-out-quart);
|
||||
filter: saturate(0.82) contrast(1.08);
|
||||
transition: transform 1s var(--ease-out-quart);
|
||||
}
|
||||
|
||||
.team-image-v2:hover img {
|
||||
transform: scale(1.03);
|
||||
transform: scale(1.04);
|
||||
}
|
||||
|
||||
.team-image-v2 figcaption {
|
||||
position: absolute;
|
||||
right: 1.25rem;
|
||||
bottom: 1rem;
|
||||
z-index: 2;
|
||||
padding: 0.4rem 0.85rem;
|
||||
background: oklch(0.1 0.02 28 / 60%);
|
||||
color: oklch(0.95 0.01 84);
|
||||
font-size: 0.78rem;
|
||||
text-shadow: 0 1px 4px oklch(0.1 0.02 28 / 50%);
|
||||
font-size: 0.76rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.team-v2__grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
||||
gap: 0;
|
||||
margin-top: clamp(2rem, 4vw, 4rem);
|
||||
border-top: 1.5px solid var(--v2-hairline);
|
||||
border-left: 1.5px solid var(--v2-hairline);
|
||||
margin-top: clamp(2.5rem, 5vw, 4.5rem);
|
||||
border-top: 2px solid var(--v2-hairline);
|
||||
border-left: 2px solid var(--v2-hairline);
|
||||
}
|
||||
|
||||
.team-v2__card {
|
||||
display: grid;
|
||||
justify-items: start;
|
||||
gap: 0.625rem;
|
||||
border-bottom: 1.5px solid var(--v2-hairline);
|
||||
border-right: 1.5px solid var(--v2-hairline);
|
||||
padding: clamp(2.2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
|
||||
transition: background-color 200ms ease;
|
||||
gap: 0.7rem;
|
||||
border-bottom: 2px solid var(--v2-hairline);
|
||||
border-right: 2px solid var(--v2-hairline);
|
||||
padding: clamp(2.5rem, 4.5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
|
||||
transition: background-color 250ms ease, transform 0.4s var(--ease-out-quart);
|
||||
}
|
||||
|
||||
.team-v2__card:hover {
|
||||
background: color-mix(in oklch, var(--v2-bg) 55%, transparent);
|
||||
background: color-mix(in oklch, var(--v2-bg) 50%, transparent);
|
||||
transform: translateY(-4px);
|
||||
}
|
||||
|
||||
.team-v2__avatar {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
width: 5.5rem;
|
||||
height: 5.5rem;
|
||||
margin-bottom: 0.75rem;
|
||||
width: 6rem;
|
||||
height: 6rem;
|
||||
margin-bottom: 0.9rem;
|
||||
border-radius: 999px;
|
||||
background: var(--v2-surface-dark);
|
||||
font-family: var(--font-heading);
|
||||
font-size: 1.35rem;
|
||||
font-size: 1.4rem;
|
||||
font-weight: 600;
|
||||
color: var(--v2-hero-ink);
|
||||
transition: transform 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart);
|
||||
transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart);
|
||||
}
|
||||
|
||||
.team-v2__card:hover .team-v2__avatar {
|
||||
transform: scale(1.06);
|
||||
transform: scale(1.08);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
|
||||
.team-v2__card h3 {
|
||||
font-family: var(--font-heading);
|
||||
font-size: clamp(1.25rem, 2vw, 1.6rem);
|
||||
line-height: 1.2;
|
||||
font-size: clamp(1.3rem, 2.2vw, 1.7rem);
|
||||
line-height: 1.15;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.team-v2__role {
|
||||
font-size: 0.78rem;
|
||||
font-size: 0.76rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.03em;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
color: var(--v2-primary);
|
||||
margin: 0;
|
||||
|
||||
Reference in New Issue
Block a user