feat: Instagram data sync, gold accent, SVG logo, FAQ & Pricing sections

- Sync all content from Instagram: fix addresses, trainer names, add 5 new
  trainers, remove 2 inactive, update class descriptions
- Add FAQ section (11 Q&A items) and Pricing section (tabs: subscriptions,
  rental, rules)
- Redesign with editorial magazine feel: centered headings, generous spacing,
  section glow effects, glassmorphism cards
- Migrate entire accent palette from rose to warm gold (#c9a96e)
- Replace low-res PNG logo with vector SVG traced via potrace — crisp at any
  size, animated gradient (black↔gold), heartbeat pulse animation
- Make header brand name gold

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-10 00:45:50 +03:00
parent 9cf09b6894
commit a75922c730
25 changed files with 614 additions and 174 deletions

View File

@@ -8,6 +8,9 @@
@theme inline {
--font-display: var(--font-oswald);
--font-sans: var(--font-inter);
--color-gold: #c9a96e;
--color-gold-light: #d4b87a;
--color-gold-dark: #a08050;
}
/* ===== Base ===== */
@@ -23,7 +26,7 @@ body {
/* ===== Selection ===== */
::selection {
background-color: rgba(225, 29, 72, 0.3);
background-color: rgba(201, 169, 110, 0.3);
color: inherit;
}
@@ -43,5 +46,5 @@ body {
/* ===== Focus ===== */
:focus-visible {
@apply outline-2 outline-offset-2 outline-rose-500;
@apply outline-2 outline-offset-2 outline-[#c9a96e];
}