Spaces:
Running
Running
| @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600&family=Source+Sans+Pro:wght@300;400;600&display=swap'); | |
| html { | |
| scroll-behavior: smooth; | |
| } | |
| :root { | |
| --primary-light: #f9f5f0; | |
| --secondary-light: #e8e0d7; | |
| --text-light: #2a2118; | |
| --primary-dark: #0f172a; | |
| --secondary-dark: #1e293b; | |
| --text-dark: #e2e8f0; | |
| --accent-color: #c19a6b; | |
| --gold-light: #d4af37; | |
| --gold-dark: #c19a6b; | |
| } | |
| body { | |
| font-family: 'Source Sans Pro', sans-serif; | |
| background-color: var(--primary-light); | |
| color: var(--text-light); | |
| } | |
| .dark body { | |
| background-color: var(--primary-dark); | |
| color: var(--text-dark); | |
| } | |
| .light .logo span, | |
| .light .footer-logo span, | |
| .light .text-secondary-500 { | |
| color: var(--gold-light); | |
| } | |
| .dark .logo span, | |
| .dark .footer-logo span, | |
| .dark .text-secondary-500 { | |
| color: var(--gold-dark); | |
| } | |
| h1, h2, h3, h4, .font-serif { | |
| font-family: 'Playfair Display', serif; | |
| } | |
| /* Custom scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #0f172a; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #334155; | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #475569; | |
| } | |
| /* Animations */ | |
| @keyframes fadeIn { | |
| from { opacity: 0; } | |
| to { opacity: 1; } | |
| } | |
| .fade-in { | |
| animation: fadeIn 0.8s ease-in-out; | |
| } | |
| .property-card { | |
| transition: transform 0.3s ease, box-shadow 0.3s ease; | |
| } | |
| .property-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); | |
| } |