|
1 | 1 | .page-home { |
| 2 | + .intro { |
| 3 | + background: linear-gradient(135deg, rgba(229, 38, 31, 0.05) 0%, rgba(248, 131, 121, 0.05) 100%); |
| 4 | + border-bottom: 1px solid rgba(229, 38, 31, 0.1); |
| 5 | + } |
| 6 | + |
| 7 | + .intro h1 { |
| 8 | + background: linear-gradient(135deg, #e5261f, #f88379); |
| 9 | + -webkit-background-clip: text; |
| 10 | + -webkit-text-fill-color: transparent; |
| 11 | + background-clip: text; |
| 12 | + font-weight: 700; |
| 13 | + letter-spacing: -0.02em; |
| 14 | + } |
| 15 | + |
| 16 | + .intro h2 { |
| 17 | + color: #2f2f41; |
| 18 | + font-weight: 600; |
| 19 | + margin-top: 20px; |
| 20 | + margin-bottom: 25px; |
| 21 | + } |
| 22 | + |
| 23 | + .intro p { |
| 24 | + font-size: 1.1rem; |
| 25 | + line-height: 1.6; |
| 26 | + color: #5c5a5a; |
| 27 | + margin-bottom: 30px; |
| 28 | + } |
| 29 | + |
| 30 | + .strip-grey { |
| 31 | + background: #fafafa; |
| 32 | + border-top: 1px solid #f0f0f0; |
| 33 | + } |
| 34 | + |
| 35 | + .feature { |
| 36 | + text-align: center; |
| 37 | + padding: 30px 20px; |
| 38 | + border-radius: 12px; |
| 39 | + transition: all 0.3s ease; |
| 40 | + background: white; |
| 41 | + border: 1px solid #f0f0f0; |
| 42 | + height: 100%; |
| 43 | + |
| 44 | + &:hover { |
| 45 | + transform: translateY(-5px); |
| 46 | + box-shadow: 0 10px 25px rgba(229, 38, 31, 0.1); |
| 47 | + border-color: rgba(229, 38, 31, 0.2); |
| 48 | + } |
| 49 | + } |
| 50 | + |
| 51 | + .feature-image { |
| 52 | + margin-bottom: 20px; |
| 53 | + |
| 54 | + img { |
| 55 | + filter: opacity(0.8); |
| 56 | + transition: all 0.3s ease; |
| 57 | + } |
| 58 | + } |
| 59 | + |
| 60 | + .feature:hover .feature-image img { |
| 61 | + filter: opacity(1); |
| 62 | + transform: scale(1.05); |
| 63 | + } |
| 64 | + |
| 65 | + .feature-title { |
| 66 | + font-size: 1.3rem; |
| 67 | + font-weight: 600; |
| 68 | + color: #2f2f41; |
| 69 | + margin-bottom: 15px; |
| 70 | + font-family: $font-family-heading; |
| 71 | + } |
| 72 | + |
| 73 | + .feature-content { |
| 74 | + font-size: 0.95rem; |
| 75 | + line-height: 1.5; |
| 76 | + color: #5c5a5a; |
| 77 | + } |
| 78 | + |
| 79 | + .call { |
| 80 | + background: linear-gradient(135deg, #e5261f, #f88379); |
| 81 | + border-radius: 12px; |
| 82 | + padding: 25px; |
| 83 | + margin-top: 20px; |
| 84 | + border: none; |
| 85 | + |
| 86 | + h2 { |
| 87 | + color: white !important; |
| 88 | + font-size: 1.2rem; |
| 89 | + margin-bottom: 15px; |
| 90 | + } |
| 91 | + |
| 92 | + p { |
| 93 | + color: rgba(255, 255, 255, 0.9) !important; |
| 94 | + margin-bottom: 20px; |
| 95 | + } |
| 96 | + |
| 97 | + .btn { |
| 98 | + background: white; |
| 99 | + color: #e5261f; |
| 100 | + border: none; |
| 101 | + font-weight: 600; |
| 102 | + padding: 12px 24px; |
| 103 | + border-radius: 8px; |
| 104 | + transition: all 0.3s ease; |
| 105 | + |
| 106 | + &:hover { |
| 107 | + background: rgba(255, 255, 255, 0.9); |
| 108 | + transform: translateY(-2px); |
| 109 | + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); |
| 110 | + } |
| 111 | + } |
| 112 | + } |
2 | 113 | } |
0 commit comments