diff --git a/src/app/styles/theme.css b/src/app/styles/theme.css index fdb9901..14a4d3f 100644 --- a/src/app/styles/theme.css +++ b/src/app/styles/theme.css @@ -52,7 +52,7 @@ /* ===== Layout ===== */ .section-padding { - @apply py-24 sm:py-36; + @apply py-20 sm:py-28; } .section-container { @@ -68,17 +68,17 @@ .section-glow::before { content: ""; position: absolute; - top: -40px; + top: 0; left: 50%; transform: translateX(-50%); - width: min(800px, 100%); - height: 500px; + width: min(600px, 100%); + height: 400px; background: radial-gradient(ellipse, rgba(201, 169, 110, 0.12), transparent 70%); pointer-events: none; } :is(.dark) .section-glow::before { - background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 169, 110, 0.07), transparent 70%); + background: radial-gradient(ellipse, rgba(201, 169, 110, 0.05), transparent 70%); } /* ===== Glass Card ===== */ diff --git a/src/components/sections/Hero.tsx b/src/components/sections/Hero.tsx index dee922a..32ae398 100644 --- a/src/components/sections/Hero.tsx +++ b/src/components/sections/Hero.tsx @@ -186,11 +186,11 @@ export function Hero({ data: hero }: HeroProps) { */} -

+

{hero.headline}

-

+

{hero.subheadline}

diff --git a/src/components/ui/SectionHeading.tsx b/src/components/ui/SectionHeading.tsx index e5e6d41..fc447a8 100644 --- a/src/components/ui/SectionHeading.tsx +++ b/src/components/ui/SectionHeading.tsx @@ -8,7 +8,7 @@ export function SectionHeading({ children, className = "", centered = false }: S return (

{children}