39036-vm/assets/css/custom.css
2026-03-09 02:49:40 +00:00

13 lines
489 B
CSS

:root {
--primary: #D4AF37; /* Gold */
--secondary: #FFF5F7; /* Pink/White tint */
--accent: #E58D9C; /* Soft Pink */
--text: #4A4A4A;
}
body { font-family: 'Inter', sans-serif; color: var(--text); }
.text-pink { color: var(--accent); }
.btn-primary { background-color: var(--primary); border: none; }
.hero-section { background: linear-gradient(135deg, var(--secondary) 0%, #FFFFFF 100%); }
.card { transition: transform 0.3s ease; }
.card:hover { transform: translateY(-10px); }