|
| 1 | +@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,400;0,500;1,400&display=swap'); |
| 2 | + |
| 3 | +$fire: #E8390E; |
| 4 | +$coal: #1A1208; |
| 5 | +$ash: #2E2416; |
| 6 | +$cream: #F5ECD7; |
| 7 | +$muted: #9C8E7A; |
| 8 | + |
| 9 | +.home { |
| 10 | + background: #0F0C08; |
| 11 | + color: $cream; |
| 12 | + font-family: 'DM Sans', sans-serif; |
| 13 | + min-height: 100vh; |
| 14 | +} |
| 15 | + |
| 16 | +.hero { |
| 17 | + background: $coal; |
| 18 | + border-bottom: 1px solid $ash; |
| 19 | + padding: 5rem 2rem 4rem; |
| 20 | + text-align: center; |
| 21 | + position: relative; |
| 22 | + overflow: hidden; |
| 23 | + |
| 24 | + &::before { |
| 25 | + content: 'EFFES'; |
| 26 | + position: absolute; |
| 27 | + font-family: 'Bebas Neue', sans-serif; |
| 28 | + font-size: 20rem; |
| 29 | + color: rgba(255,255,255,0.02); |
| 30 | + top: 50%; |
| 31 | + left: 50%; |
| 32 | + transform: translate(-50%, -50%); |
| 33 | + pointer-events: none; |
| 34 | + white-space: nowrap; |
| 35 | + } |
| 36 | +} |
| 37 | + |
| 38 | +.hero-eyebrow { |
| 39 | + display: block; |
| 40 | + font-size: 0.8rem; |
| 41 | + letter-spacing: 0.3em; |
| 42 | + text-transform: uppercase; |
| 43 | + color: $muted; |
| 44 | + margin-bottom: 0.5rem; |
| 45 | +} |
| 46 | + |
| 47 | +.hero-title { |
| 48 | + font-family: 'Bebas Neue', sans-serif; |
| 49 | + font-size: clamp(4rem, 12vw, 9rem); |
| 50 | + color: $cream; |
| 51 | + line-height: 1; |
| 52 | + letter-spacing: 0.04em; |
| 53 | + margin: 0 0 0.5rem; |
| 54 | + |
| 55 | + span { |
| 56 | + color: $fire; |
| 57 | + } |
| 58 | +} |
| 59 | + |
| 60 | +.hero-sub { |
| 61 | + font-size: 1.1rem; |
| 62 | + color: $muted; |
| 63 | + font-style: italic; |
| 64 | + margin-bottom: 2rem; |
| 65 | +} |
| 66 | + |
| 67 | +.hero-cta { |
| 68 | + display: inline-block; |
| 69 | + background: $fire; |
| 70 | + color: $cream; |
| 71 | + text-decoration: none; |
| 72 | + padding: 0.75rem 2.5rem; |
| 73 | + font-size: 0.9rem; |
| 74 | + font-weight: 500; |
| 75 | + letter-spacing: 0.05em; |
| 76 | + text-transform: uppercase; |
| 77 | + border-radius: 3px; |
| 78 | + transition: background 0.2s, transform 0.15s; |
| 79 | + |
| 80 | + &:hover { |
| 81 | + background: darken($fire, 8%); |
| 82 | + transform: translateY(-2px); |
| 83 | + } |
| 84 | +} |
| 85 | + |
| 86 | +.section { |
| 87 | + max-width: 1100px; |
| 88 | + margin: 0 auto; |
| 89 | + padding: 4rem 2rem; |
| 90 | + |
| 91 | + &.two-col { |
| 92 | + display: grid; |
| 93 | + grid-template-columns: 1fr 1fr; |
| 94 | + gap: 2rem; |
| 95 | + |
| 96 | + @media (max-width: 768px) { |
| 97 | + grid-template-columns: 1fr; |
| 98 | + } |
| 99 | + } |
| 100 | +} |
| 101 | + |
| 102 | +.section-title { |
| 103 | + font-family: 'Bebas Neue', sans-serif; |
| 104 | + font-size: 1.8rem; |
| 105 | + letter-spacing: 0.06em; |
| 106 | + color: $cream; |
| 107 | + border-bottom: 1px solid $ash; |
| 108 | + padding-bottom: 0.5rem; |
| 109 | + margin-bottom: 1.5rem; |
| 110 | +} |
| 111 | + |
| 112 | +.card { |
| 113 | + background: $coal; |
| 114 | + border: 1px solid $ash; |
| 115 | + border-radius: 6px; |
| 116 | + padding: 2rem; |
| 117 | +} |
| 118 | + |
| 119 | +.hours-block { |
| 120 | + display: flex; |
| 121 | + flex-direction: column; |
| 122 | + gap: 1.25rem; |
| 123 | + margin-bottom: 2rem; |
| 124 | +} |
| 125 | + |
| 126 | +.hours-row { |
| 127 | + display: flex; |
| 128 | + flex-direction: column; |
| 129 | + gap: 0.4rem; |
| 130 | + |
| 131 | + strong { |
| 132 | + font-size: 1rem; |
| 133 | + color: $cream; |
| 134 | + padding-left: 0.25rem; |
| 135 | + } |
| 136 | +} |
| 137 | + |
| 138 | +.badge { |
| 139 | + display: inline-block; |
| 140 | + background: $fire; |
| 141 | + color: $cream; |
| 142 | + font-size: 0.75rem; |
| 143 | + font-weight: 500; |
| 144 | + letter-spacing: 0.05em; |
| 145 | + padding: 0.25rem 0.75rem; |
| 146 | + border-radius: 99px; |
| 147 | + text-transform: uppercase; |
| 148 | + width: fit-content; |
| 149 | +} |
| 150 | + |
| 151 | +.service-chips { |
| 152 | + display: grid; |
| 153 | + grid-template-columns: 1fr 1fr; |
| 154 | + gap: 1rem; |
| 155 | +} |
| 156 | + |
| 157 | +.chip { |
| 158 | + background: $ash; |
| 159 | + border: 1px solid lighten($ash, 8%); |
| 160 | + border-radius: 4px; |
| 161 | + padding: 0.75rem 1rem; |
| 162 | + text-align: center; |
| 163 | + |
| 164 | + .chip-title { |
| 165 | + display: block; |
| 166 | + font-family: 'Bebas Neue', sans-serif; |
| 167 | + font-size: 1.1rem; |
| 168 | + letter-spacing: 0.08em; |
| 169 | + color: $fire; |
| 170 | + margin-bottom: 0.2rem; |
| 171 | + } |
| 172 | + |
| 173 | + small { |
| 174 | + color: $muted; |
| 175 | + font-size: 0.8rem; |
| 176 | + } |
| 177 | +} |
| 178 | + |
| 179 | +.photo-card { |
| 180 | + display: flex; |
| 181 | + flex-direction: column; |
| 182 | +} |
| 183 | + |
| 184 | +.photo-frame { |
| 185 | + background: $ash; |
| 186 | + border-radius: 4px; |
| 187 | + overflow: hidden; |
| 188 | + height: 250px; |
| 189 | + |
| 190 | + img { |
| 191 | + width: 100%; |
| 192 | + height: 100%; |
| 193 | + object-fit: cover; |
| 194 | + display: block; |
| 195 | + object-position: center 30%; |
| 196 | + } |
| 197 | +} |
| 198 | + |
| 199 | +.about { |
| 200 | + border-top: 1px solid $ash; |
| 201 | +} |
| 202 | + |
| 203 | +.about-lead { |
| 204 | + font-size: 1.05rem; |
| 205 | + line-height: 1.8; |
| 206 | + color: darken($cream, 15%); |
| 207 | + margin-bottom: 2.5rem; |
| 208 | + |
| 209 | + strong { |
| 210 | + color: $fire; |
| 211 | + } |
| 212 | +} |
| 213 | + |
| 214 | +.why-title { |
| 215 | + font-family: 'Bebas Neue', sans-serif; |
| 216 | + font-size: 1.4rem; |
| 217 | + letter-spacing: 0.06em; |
| 218 | + color: $cream; |
| 219 | + margin-bottom: 1.5rem; |
| 220 | +} |
| 221 | + |
| 222 | +.reasons { |
| 223 | + list-style: none; |
| 224 | + padding: 0; |
| 225 | + margin: 0; |
| 226 | + display: flex; |
| 227 | + flex-direction: column; |
| 228 | + gap: 1.5rem; |
| 229 | + |
| 230 | + li { |
| 231 | + display: flex; |
| 232 | + gap: 1.25rem; |
| 233 | + align-items: flex-start; |
| 234 | + padding: 1.5rem; |
| 235 | + background: $coal; |
| 236 | + border: 1px solid $ash; |
| 237 | + border-left: 3px solid $fire; |
| 238 | + border-radius: 4px; |
| 239 | + } |
| 240 | + |
| 241 | + .reason-icon { |
| 242 | + font-size: 1.5rem; |
| 243 | + flex-shrink: 0; |
| 244 | + margin-top: 2px; |
| 245 | + } |
| 246 | + |
| 247 | + strong { |
| 248 | + display: block; |
| 249 | + font-size: 1rem; |
| 250 | + color: $cream; |
| 251 | + margin-bottom: 0.4rem; |
| 252 | + } |
| 253 | + |
| 254 | + p { |
| 255 | + font-size: 0.9rem; |
| 256 | + color: $muted; |
| 257 | + line-height: 1.7; |
| 258 | + margin: 0; |
| 259 | + } |
| 260 | +} |
0 commit comments