26 lines
739 B
CSS
26 lines
739 B
CSS
/* =============================================================================
|
|
Dealspace Website — site.css
|
|
Single canonical stylesheet for all marketing website pages.
|
|
============================================================================= */
|
|
|
|
html { scroll-behavior: smooth; }
|
|
|
|
.gradient-text {
|
|
background: linear-gradient(135deg, #C9A84C 0%, #d4b85f 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.hero-gradient {
|
|
background: linear-gradient(180deg, #0F1B35 0%, #1a2847 100%);
|
|
}
|
|
|
|
.card-hover {
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
}
|
|
.card-hover:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
|
}
|