santycss 2.4.8 → 2.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1631,6 +1631,8 @@
1631
1631
  .set-max-width-narrow { max-width: 45ch; }
1632
1632
 
1633
1633
 
1634
+ /* @SANTYMOD:typography */
1635
+
1634
1636
  /* ── Variable Font Weights ── */
1635
1637
  .font-variable { font-variation-settings: normal; }
1636
1638
  .font-condensed { font-stretch: condensed; font-variation-settings: 'wdth' 75; }
@@ -1667,6 +1669,8 @@
1667
1669
  .set-width-5-of-6 { width: 83.3333%; }
1668
1670
 
1669
1671
 
1672
+ /* @SANTYMOD:colors */
1673
+
1670
1674
  /* ── Caret Colors (full shade scale) ── */
1671
1675
  .caret-red-50 { caret-color: #fef2f2; }
1672
1676
  .caret-red-100 { caret-color: #fee2e2; }
@@ -2268,6 +2272,8 @@
2268
2272
  .border-stone-shade-10 { border-color: color-mix(in srgb, #78716c 90%, #000000); }
2269
2273
  /* ═══ VARIANTS_BLOCK_END ═══ */
2270
2274
 
2275
+ /* @SANTYMOD:layout */
2276
+
2271
2277
  /* ═══════════════════════════════════════════════════════════════════════════
2272
2278
  v1.7 — ACCESSIBILITY UTILITIES
2273
2279
  ═══════════════════════════════════════════════════════════════════════════ */
@@ -3010,3 +3016,598 @@
3010
3016
  }
3011
3017
  .animate-dragon-fire { animation: santy-dragon-fire 1.6s ease-out infinite; transform-origin: left center; }
3012
3018
  .animate-fire-flicker { animation: santy-fire-flicker 0.14s ease-in-out infinite; }
3019
+
3020
+ /* ═══════════════════════════════════════════════════════════════════════
3021
+ PORTFOLIO TEMPLATE COMPONENTS (Added v2.4.9)
3022
+ ═══════════════════════════════════════════════════════════════════════ */
3023
+
3024
+ /* ── Icon base class for essential UI icons (uses --icon-url variable) ── */
3025
+ .icon {
3026
+ display: inline-block;
3027
+ background-color: currentColor;
3028
+ -webkit-mask: var(--icon-url, none) no-repeat center / contain;
3029
+ mask: var(--icon-url, none) no-repeat center / contain;
3030
+ vertical-align: -0.125em;
3031
+ flex-shrink: 0;
3032
+ width: 1em;
3033
+ height: 1em;
3034
+ }
3035
+ .icon-16 { width: 16px; height: 16px; }
3036
+ .icon-20 { width: 20px; height: 20px; }
3037
+ .icon-24 { width: 24px; height: 24px; }
3038
+ .icon-28 { width: 28px; height: 28px; }
3039
+ .icon-32 { width: 32px; height: 32px; }
3040
+ .icon-40 { width: 40px; height: 40px; }
3041
+ .icon-48 { width: 48px; height: 48px; }
3042
+
3043
+ /* ── Near-black background utility ── */
3044
+ .background-zinc-950 { background-color: #09090b; }
3045
+
3046
+ /* ── Full-page scroll-snap container ── */
3047
+ .portfolio-snap {
3048
+ height: 100vh;
3049
+ overflow-y: scroll;
3050
+ scroll-snap-type: y mandatory;
3051
+ scroll-behavior: smooth;
3052
+ overscroll-behavior: none;
3053
+ }
3054
+ .portfolio-snap::-webkit-scrollbar { display: none; }
3055
+ .portfolio-snap { -ms-overflow-style: none; scrollbar-width: none; }
3056
+
3057
+ /* ── Snap section (full-vh, overflow hidden) ── */
3058
+ .snap-section {
3059
+ height: 100vh;
3060
+ min-height: 100vh;
3061
+ scroll-snap-align: start;
3062
+ scroll-snap-stop: always;
3063
+ overflow: hidden;
3064
+ position: relative;
3065
+ }
3066
+
3067
+ /* ── Snap section with internal scroll ── */
3068
+ .snap-section-scrollable {
3069
+ height: 100vh;
3070
+ scroll-snap-align: start;
3071
+ scroll-snap-stop: always;
3072
+ overflow-y: auto;
3073
+ overscroll-behavior: contain;
3074
+ position: relative;
3075
+ }
3076
+ .snap-section-scrollable::-webkit-scrollbar { width: 3px; }
3077
+ .snap-section-scrollable::-webkit-scrollbar-track { background: transparent; }
3078
+ .snap-section-scrollable::-webkit-scrollbar-thumb { background: rgba(247,191,4,0.3); border-radius: 9999px; }
3079
+
3080
+ /* ── Right-side dot navigation ── */
3081
+ .portfolio-right-nav {
3082
+ position: fixed;
3083
+ right: 28px;
3084
+ top: 50%;
3085
+ transform: translateY(-50%);
3086
+ display: flex;
3087
+ flex-direction: column;
3088
+ align-items: center;
3089
+ gap: 14px;
3090
+ z-index: 100;
3091
+ }
3092
+ @media (max-width: 767px) { .portfolio-right-nav { display: none; } }
3093
+
3094
+ .nav-dot {
3095
+ display: block;
3096
+ width: 10px;
3097
+ height: 10px;
3098
+ border-radius: 9999px;
3099
+ background: rgba(255,255,255,0.2);
3100
+ border: none;
3101
+ cursor: pointer;
3102
+ text-decoration: none;
3103
+ transition: all 0.25s ease;
3104
+ position: relative;
3105
+ }
3106
+ .nav-dot::after {
3107
+ content: attr(data-label);
3108
+ position: absolute;
3109
+ right: 20px;
3110
+ top: 50%;
3111
+ transform: translateY(-50%);
3112
+ background: #f7bf04;
3113
+ color: #111;
3114
+ font-size: 11px;
3115
+ font-weight: 700;
3116
+ padding: 3px 10px;
3117
+ border-radius: 6px;
3118
+ white-space: nowrap;
3119
+ opacity: 0;
3120
+ pointer-events: none;
3121
+ transition: opacity 0.2s;
3122
+ font-family: ui-sans-serif, system-ui, sans-serif;
3123
+ }
3124
+ .nav-dot:hover::after { opacity: 1; }
3125
+ .nav-dot:hover { background: rgba(255,255,255,0.5); transform: scale(1.3); }
3126
+ .nav-dot.nav-dot-active {
3127
+ background: #f7bf04;
3128
+ transform: scale(1.4);
3129
+ box-shadow: 0 0 0 3px rgba(247,191,4,0.25);
3130
+ }
3131
+
3132
+ /* ── Glass card ── */
3133
+ .glass-card {
3134
+ background: rgba(255,255,255,0.05);
3135
+ backdrop-filter: blur(12px);
3136
+ -webkit-backdrop-filter: blur(12px);
3137
+ border: 1px solid rgba(255,255,255,0.1);
3138
+ border-radius: 16px;
3139
+ }
3140
+ .glass-card-light {
3141
+ background: rgba(255,255,255,0.08);
3142
+ backdrop-filter: blur(16px);
3143
+ -webkit-backdrop-filter: blur(16px);
3144
+ border: 1px solid rgba(255,255,255,0.15);
3145
+ border-radius: 16px;
3146
+ }
3147
+
3148
+ /* ── Large avatar with animated gradient ring ── */
3149
+ .avatar-ring-lg {
3150
+ position: relative;
3151
+ width: 130px;
3152
+ height: 130px;
3153
+ flex-shrink: 0;
3154
+ }
3155
+ .avatar-ring-lg::before {
3156
+ content: '';
3157
+ position: absolute;
3158
+ inset: -4px;
3159
+ border-radius: 50%;
3160
+ background: conic-gradient(#f7bf04, #fcd34d, rgba(255,255,255,0.04), #f7bf04);
3161
+ animation: santy-spin 4s linear infinite;
3162
+ z-index: 0;
3163
+ }
3164
+ .avatar-ring-lg > img,
3165
+ .avatar-ring-lg > .avatar-photo {
3166
+ position: relative;
3167
+ z-index: 1;
3168
+ width: 100%;
3169
+ height: 100%;
3170
+ border-radius: 50%;
3171
+ object-fit: cover;
3172
+ display: block;
3173
+ border: 4px solid #09090b;
3174
+ }
3175
+
3176
+ /* ── Skill bar track + fill ── */
3177
+ .skill-bar-track {
3178
+ width: 100%;
3179
+ height: 6px;
3180
+ background: rgba(255,255,255,0.1);
3181
+ border-radius: 9999px;
3182
+ overflow: hidden;
3183
+ }
3184
+ .skill-bar-fill {
3185
+ height: 100%;
3186
+ background: linear-gradient(90deg, #f7bf04, #fcd34d);
3187
+ border-radius: 9999px;
3188
+ width: 0;
3189
+ transition: width 1.4s cubic-bezier(0.25, 0.8, 0.25, 1);
3190
+ }
3191
+ .skill-bar-fill-blue { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
3192
+ .skill-bar-fill-purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
3193
+ .skill-bar-fill-green { background: linear-gradient(90deg, #22c55e, #4ade80); }
3194
+ .skill-bar-fill-pink { background: linear-gradient(90deg, #ec4899, #f472b6); }
3195
+ .skill-bar-fill-cyan { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
3196
+
3197
+ /* ── Amber gradient text ── */
3198
+ .text-gradient-amber-to-yellow {
3199
+ background-image: linear-gradient(135deg, #f7bf04, #fcd34d);
3200
+ -webkit-background-clip: text;
3201
+ background-clip: text;
3202
+ -webkit-text-fill-color: transparent;
3203
+ color: transparent;
3204
+ }
3205
+
3206
+ /* ── Progress bar amber variant ── */
3207
+ .progress-bar-amber { background: linear-gradient(90deg, #f7bf04, #fcd34d); }
3208
+
3209
+ /* ── Section badge ── */
3210
+ .section-badge {
3211
+ display: inline-flex;
3212
+ align-items: center;
3213
+ gap: 6px;
3214
+ padding: 4px 14px;
3215
+ border-radius: 9999px;
3216
+ border: 1px solid rgba(247,191,4,0.35);
3217
+ background: rgba(247,191,4,0.08);
3218
+ font-size: 11px;
3219
+ font-weight: 700;
3220
+ color: #f7bf04;
3221
+ letter-spacing: 0.1em;
3222
+ text-transform: uppercase;
3223
+ }
3224
+
3225
+ /* ── Mobile nav overlay ── */
3226
+ .mobile-menu-overlay {
3227
+ position: fixed;
3228
+ inset: 0;
3229
+ background: rgba(8, 8, 14, 0.97);
3230
+ z-index: 200;
3231
+ display: none;
3232
+ flex-direction: column;
3233
+ align-items: center;
3234
+ justify-content: center;
3235
+ gap: 6px;
3236
+ backdrop-filter: blur(20px);
3237
+ -webkit-backdrop-filter: blur(20px);
3238
+ }
3239
+ .mobile-menu-overlay.open {
3240
+ display: flex;
3241
+ animation: santy-fade-in 0.2s ease both;
3242
+ }
3243
+ .mobile-nav-link {
3244
+ display: flex;
3245
+ align-items: center;
3246
+ gap: 16px;
3247
+ font-size: 24px;
3248
+ font-weight: 700;
3249
+ color: rgba(255,255,255,0.55);
3250
+ text-decoration: none;
3251
+ padding: 12px 40px;
3252
+ border-radius: 14px;
3253
+ transition: color 0.2s ease, background 0.2s ease;
3254
+ width: 100%;
3255
+ max-width: 320px;
3256
+ }
3257
+ .mobile-nav-link:hover,
3258
+ .mobile-nav-link.nav-dot-active { color: #f7bf04; background: rgba(247,191,4,0.08); }
3259
+
3260
+ /* ── Portfolio hamburger button ── */
3261
+ .portfolio-hamburger {
3262
+ position: fixed;
3263
+ top: 20px;
3264
+ right: 20px;
3265
+ z-index: 300;
3266
+ width: 44px;
3267
+ height: 44px;
3268
+ border-radius: 10px;
3269
+ background: rgba(255,255,255,0.07);
3270
+ backdrop-filter: blur(8px);
3271
+ -webkit-backdrop-filter: blur(8px);
3272
+ border: 1px solid rgba(255,255,255,0.12);
3273
+ cursor: pointer;
3274
+ display: none;
3275
+ align-items: center;
3276
+ justify-content: center;
3277
+ color: #fff;
3278
+ transition: background 0.2s, border-color 0.2s;
3279
+ }
3280
+ .portfolio-hamburger:hover { background: rgba(247,191,4,0.15); border-color: rgba(247,191,4,0.4); }
3281
+ @media (max-width: 767px) { .portfolio-hamburger { display: flex; } }
3282
+
3283
+ /* ═══════════════════════════════════════════════════════════════════════
3284
+ PORTFOLIO CV SIDEBAR TEMPLATE COMPONENTS (Added v2.4.9)
3285
+ ═══════════════════════════════════════════════════════════════════════ */
3286
+
3287
+ /* ── Brand cyan accent ── */
3288
+ .color-brand-cyan { color: #0099e5; }
3289
+ .background-brand-cyan { background-color: #0099e5; }
3290
+ .border-color-brand-cyan { border-color: #0099e5; }
3291
+ .background-brand-cyan-soft { background-color: rgba(0,153,229,0.08); }
3292
+ .background-brand-cyan-10 { background-color: rgba(0,153,229,0.10); }
3293
+
3294
+ /* ── CV sidebar fixed-left layout ── */
3295
+ .cv-sidebar {
3296
+ position: fixed; top: 0; left: 0; width: 220px; height: 100vh;
3297
+ overflow-y: auto; display: flex; flex-direction: column;
3298
+ z-index: 100; background: #1c1c1e; border-right: 1px solid #252525;
3299
+ scrollbar-width: none;
3300
+ }
3301
+ .cv-sidebar::-webkit-scrollbar { display: none; }
3302
+ .cv-main { margin-left: 220px; background: #0f0f0f; min-height: 100vh; }
3303
+ @media (max-width: 900px) {
3304
+ .cv-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
3305
+ .cv-sidebar.cv-sidebar-open { transform: translateX(0); box-shadow: 4px 0 32px rgba(0,0,0,0.7); }
3306
+ .cv-main { margin-left: 0; }
3307
+ }
3308
+
3309
+ /* ── Sidebar nav links ── */
3310
+ .cv-nav-link {
3311
+ display: flex; align-items: center; gap: 10px; padding: 11px 22px;
3312
+ font-size: 13px; font-weight: 600; color: #777; text-decoration: none;
3313
+ border-left: 3px solid transparent; transition: all 0.2s; letter-spacing: 0.02em;
3314
+ }
3315
+ .cv-nav-link:hover, .cv-nav-link.cv-nav-active {
3316
+ color: #0099e5; border-left-color: #0099e5; background: rgba(0,153,229,0.07);
3317
+ }
3318
+
3319
+ /* ── Section wrapper ── */
3320
+ .cv-section { padding: 64px 56px; }
3321
+ .cv-section-alt { background: #161616; }
3322
+ @media (max-width: 700px) { .cv-section { padding: 40px 22px; } }
3323
+ .cv-section-label { font-size: 11px; font-weight: 700; color: #0099e5; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }
3324
+ .cv-section-title { font-size: 30px; font-weight: 800; color: #f0f0f0; margin: 0 0 8px; }
3325
+ .cv-section-divider { width: 36px; height: 3px; background: #0099e5; border-radius: 2px; margin-bottom: 36px; }
3326
+
3327
+ /* ── Dark timeline variant ── */
3328
+ .timeline-dark .timeline-item:not(:last-child) .timeline-dot::after { background-color: #252525; }
3329
+ .timeline-dot-cyan { background-color: #0099e5; box-shadow: 0 0 0 2px rgba(0,153,229,0.25); color: #fff; }
3330
+ .timeline-dot-zinc { background-color: #3f3f46; box-shadow: 0 0 0 2px #27272a; color: #a1a1aa; }
3331
+
3332
+ /* ── Skill bar (dark) ── */
3333
+ .skill-bar-dark { width: 100%; height: 4px; background: #252525; border-radius: 9999px; overflow: hidden; }
3334
+ .skill-bar-dark-fill { height: 100%; background: #0099e5; border-radius: 9999px; width: 0; transition: width 1.4s cubic-bezier(0.25,0.8,0.25,1); }
3335
+
3336
+ /* ── Fun fact card ── */
3337
+ .fun-fact-card { background: #1c1c1e; border: 1px solid #252525; border-radius: 14px; padding: 28px 16px; text-align: center; transition: border-color 0.2s, transform 0.2s; }
3338
+ .fun-fact-card:hover { border-color: #0099e5; transform: translateY(-4px); }
3339
+ .fun-fact-number { font-size: 44px; font-weight: 900; color: #0099e5; line-height: 1; }
3340
+ .fun-fact-suffix { font-size: 28px; font-weight: 900; color: #0099e5; }
3341
+ .fun-fact-label { font-size: 11px; color: #555; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 8px; font-weight: 600; }
3342
+
3343
+ /* ── Portfolio filter ── */
3344
+ .pf-filter-btn { padding: 7px 20px; border-radius: 9999px; font-size: 12px; font-weight: 600; cursor: pointer; border: 1px solid #252525; background: #1c1c1e; color: #666; transition: all 0.2s; font-family: inherit; letter-spacing: 0.02em; }
3345
+ .pf-filter-btn:hover, .pf-filter-btn.pf-active { background: #0099e5; color: #fff; border-color: #0099e5; }
3346
+
3347
+ /* ── Project card (dark) ── */
3348
+ .project-card-dark { background: #1c1c1e; border: 1px solid #252525; border-radius: 14px; overflow: hidden; transition: border-color 0.25s, transform 0.25s; display: flex; flex-direction: column; }
3349
+ .project-card-dark:hover { border-color: #0099e5; transform: translateY(-5px); }
3350
+ .project-thumb-dark { height: 155px; display: flex; align-items: center; justify-content: center; background: #141414; }
3351
+ .project-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
3352
+
3353
+ /* ── Blog card (dark) ── */
3354
+ .blog-card-dark { background: #1c1c1e; border: 1px solid #252525; border-radius: 14px; overflow: hidden; transition: border-color 0.25s, transform 0.25s; display: flex; flex-direction: column; cursor: pointer; }
3355
+ .blog-card-dark:hover { border-color: #0099e5; transform: translateY(-5px); }
3356
+ .blog-thumb-dark { height: 175px; display: flex; align-items: center; justify-content: center; }
3357
+
3358
+ /* ── Service card (dark) ── */
3359
+ .service-card-dark { background: #1c1c1e; border: 1px solid #252525; border-radius: 12px; padding: 26px 22px; transition: border-color 0.2s, transform 0.2s; }
3360
+ .service-card-dark:hover { border-color: #0099e5; transform: translateY(-3px); }
3361
+
3362
+ /* ── Dark inputs ── */
3363
+ .input-dark { width: 100%; background: #1c1c1e; border: 1px solid #252525; border-radius: 8px; padding: 12px 16px; color: #e2e8f0; font-size: 14px; transition: border-color 0.2s; outline: none; font-family: inherit; box-sizing: border-box; }
3364
+ .input-dark:focus { border-color: #0099e5; }
3365
+ .textarea-dark { width: 100%; background: #1c1c1e; border: 1px solid #252525; border-radius: 8px; padding: 12px 16px; color: #e2e8f0; font-size: 14px; transition: border-color 0.2s; outline: none; font-family: inherit; box-sizing: border-box; resize: vertical; min-height: 130px; }
3366
+ .textarea-dark:focus { border-color: #0099e5; }
3367
+
3368
+ /* ── Cyan CTA buttons ── */
3369
+ .btn-cyan { background: #0099e5; color: #fff; border: none; padding: 12px 28px; border-radius: 9999px; font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.15s; font-family: inherit; display: inline-flex; align-items: center; gap: 8px; }
3370
+ .btn-cyan:hover { background: #0087cc; transform: translateY(-2px); }
3371
+ .btn-cyan-outline { background: transparent; color: #0099e5; border: 1.5px solid #0099e5; padding: 11px 26px; border-radius: 9999px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: inherit; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
3372
+ .btn-cyan-outline:hover { background: rgba(0,153,229,0.1); transform: translateY(-2px); }
3373
+
3374
+ /* ── Tag pill (dark) ── */
3375
+ .tag-dark { display: inline-flex; padding: 5px 14px; background: #1c1c1e; border: 1px solid #252525; border-radius: 9999px; font-size: 12px; font-weight: 500; color: #888; transition: all 0.2s; }
3376
+ .tag-dark:hover { border-color: #0099e5; color: #0099e5; }
3377
+
3378
+ /* ── Mobile hamburger & sidebar overlay ── */
3379
+ .cv-hamburger { display: none; position: fixed; top: 14px; left: 14px; z-index: 300; width: 42px; height: 42px; background: #1c1c1e; border: 1px solid #252525; border-radius: 8px; cursor: pointer; align-items: center; justify-content: center; color: #ccc; transition: border-color 0.2s, color 0.2s; }
3380
+ .cv-hamburger:hover { border-color: #0099e5; color: #0099e5; }
3381
+ @media (max-width: 900px) { .cv-hamburger { display: flex; } }
3382
+ .cv-sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 99; }
3383
+ .cv-sidebar-overlay.cv-overlay-open { display: block; animation: santy-fade-in 0.2s ease; }
3384
+
3385
+ /* ── Testimonial card dark ── */
3386
+ .testimonial-card-dark { background: #1c1c1e; border: 1px solid #252525; border-radius: 14px; padding: 26px 24px; }
3387
+
3388
+ /* ── What I do card ── */
3389
+ .what-i-do-card { background: #1c1c1e; border: 1px solid #252525; border-radius: 12px; padding: 22px; transition: border-color 0.2s, transform 0.2s; }
3390
+ .what-i-do-card:hover { border-color: #0099e5; transform: translateY(-3px); }
3391
+
3392
+ /* ═══════════════════════════════════════════════════════════════════════
3393
+ "IT'S ME" PORTFOLIO TEMPLATE COMPONENTS (Added v2.5.0)
3394
+ Light, orange-accent, multi-section single-page portfolio
3395
+ ═══════════════════════════════════════════════════════════════════════ */
3396
+
3397
+ /* ── Sticky nav ── */
3398
+ .itsme-nav {
3399
+ position: sticky; top: 0; z-index: 200; background: #fff;
3400
+ border-bottom: 1px solid #efefef; box-shadow: 0 2px 16px rgba(0,0,0,.06);
3401
+ display: flex; align-items: center; justify-content: space-between;
3402
+ padding: 0 40px; height: 68px;
3403
+ }
3404
+ .itsme-brand { font-size: 22px; font-weight: 800; color: #222; letter-spacing: -0.02em; }
3405
+ .itsme-brand span { color: #f97316; }
3406
+ .itsme-nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
3407
+ .itsme-nav-link {
3408
+ font-size: 12px; font-weight: 700; color: #555; text-decoration: none;
3409
+ letter-spacing: 0.06em; text-transform: uppercase; transition: color .2s; cursor: pointer; background: none; border: none; font-family: inherit; padding: 0;
3410
+ }
3411
+ .itsme-nav-link:hover, .itsme-nav-link.itsme-nav-active { color: #f97316; }
3412
+ .itsme-nav-getcv {
3413
+ font-size: 11px; font-weight: 800; color: #fff; background: #f97316;
3414
+ border: none; border-radius: 5px; padding: 9px 22px; cursor: pointer;
3415
+ text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
3416
+ transition: background .2s, transform .15s; font-family: inherit;
3417
+ }
3418
+ .itsme-nav-getcv:hover { background: #ea6c10; transform: translateY(-1px); }
3419
+ .itsme-hamburger { display: none; background: none; border: 1px solid #e8e8e8; border-radius: 6px; padding: 7px 9px; cursor: pointer; color: #444; line-height: 1; }
3420
+ @media (max-width: 768px) {
3421
+ .itsme-nav { padding: 0 20px; }
3422
+ .itsme-hamburger { display: flex; align-items: center; }
3423
+ .itsme-nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 8px 0; border-bottom: 1px solid #efefef; gap: 0; box-shadow: 0 8px 24px rgba(0,0,0,.08); z-index: 199; }
3424
+ .itsme-nav-links.open { display: flex; }
3425
+ .itsme-nav-link { padding: 13px 24px; border-bottom: 1px solid #f5f5f5; }
3426
+ .itsme-nav-getcv { display: none; }
3427
+ }
3428
+
3429
+ /* ── Hero ── */
3430
+ .itsme-hero {
3431
+ min-height: 100vh; display: flex; flex-direction: column;
3432
+ align-items: center; justify-content: center; text-align: center;
3433
+ background: #fff; padding: 80px 24px; overflow: hidden;
3434
+ }
3435
+ .itsme-profile-ring {
3436
+ width: 180px; height: 180px; border-radius: 50%; border: 4px solid #f97316;
3437
+ padding: 5px; display: inline-flex; align-items: center; justify-content: center;
3438
+ margin-bottom: 32px; flex-shrink: 0;
3439
+ }
3440
+ .itsme-profile-img {
3441
+ width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
3442
+ background: linear-gradient(135deg, #fde68a 0%, #f97316 100%);
3443
+ display: flex; align-items: center; justify-content: center;
3444
+ font-size: 52px; font-weight: 900; color: #fff; overflow: hidden;
3445
+ }
3446
+ .itsme-hero-name { font-size: 52px; font-weight: 900; color: #1a1a2e; line-height: 1.1; margin: 0 0 14px; }
3447
+ .itsme-hero-tagline { font-size: 16px; color: #777; max-width: 480px; line-height: 1.7; margin: 0 0 32px; }
3448
+ .itsme-social-row { display: flex; gap: 10px; justify-content: center; margin-top: 32px; }
3449
+ .itsme-social-btn {
3450
+ width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid #e8e8e8;
3451
+ display: flex; align-items: center; justify-content: center; color: #888;
3452
+ text-decoration: none; transition: all .2s; background: #fff;
3453
+ }
3454
+ .itsme-social-btn:hover { border-color: #f97316; color: #f97316; background: rgba(249,115,22,.06); }
3455
+ @media (max-width: 640px) {
3456
+ .itsme-hero-name { font-size: 34px; }
3457
+ .itsme-profile-ring { width: 140px; height: 140px; }
3458
+ .itsme-profile-img { font-size: 40px; }
3459
+ }
3460
+
3461
+ /* ── Section scaffold ── */
3462
+ .itsme-section { padding: 80px 40px; }
3463
+ .itsme-section-alt { background: #f8f9fa; }
3464
+ .itsme-section-inner { max-width: 1100px; margin: 0 auto; }
3465
+ .itsme-eyebrow { font-size: 12px; font-weight: 800; color: #f97316; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }
3466
+ .itsme-title { font-size: 34px; font-weight: 900; color: #1a1a2e; margin: 0 0 10px; line-height: 1.15; }
3467
+ .itsme-divider { width: 48px; height: 3px; background: #f97316; border-radius: 2px; margin-bottom: 40px; }
3468
+ @media (max-width: 768px) {
3469
+ .itsme-section { padding: 56px 20px; }
3470
+ .itsme-title { font-size: 26px; }
3471
+ }
3472
+
3473
+ /* ── Bio info grid ── */
3474
+ .itsme-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; margin-bottom: 28px; }
3475
+ .itsme-info-label { font-size: 11px; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
3476
+ .itsme-info-value { font-size: 14px; font-weight: 600; color: #333; }
3477
+ @media (max-width: 480px) { .itsme-info-grid { grid-template-columns: 1fr; } }
3478
+
3479
+ /* ── Service card ── */
3480
+ .itsme-service-card {
3481
+ background: #fff; border: 1px solid #efefef; border-radius: 14px;
3482
+ padding: 28px 22px; transition: box-shadow .25s, transform .25s;
3483
+ }
3484
+ .itsme-service-card:hover { box-shadow: 0 10px 36px rgba(249,115,22,.12); transform: translateY(-5px); }
3485
+ .itsme-service-icon {
3486
+ width: 52px; height: 52px; border-radius: 12px;
3487
+ background: rgba(249,115,22,.08); border: 1px solid rgba(249,115,22,.18);
3488
+ display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
3489
+ }
3490
+
3491
+ /* ── Light skill bars ── */
3492
+ .itsme-skill-row { margin-bottom: 18px; }
3493
+ .itsme-skill-meta { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 13px; font-weight: 600; color: #444; }
3494
+ .itsme-skill-pct { color: #f97316; }
3495
+ .itsme-skill-track { height: 6px; background: #f0f0f0; border-radius: 3px; overflow: hidden; }
3496
+ .itsme-skill-fill { height: 100%; border-radius: 3px; background: #f97316; width: 0; transition: width 1.2s cubic-bezier(.4,0,.2,1); }
3497
+ .itsme-skill-fill-blue { background: #3b82f6; }
3498
+ .itsme-skill-fill-purple { background: #8b5cf6; }
3499
+ .itsme-skill-fill-green { background: #22c55e; }
3500
+
3501
+ /* ── Light timeline ── */
3502
+ .itsme-timeline { position: relative; padding-left: 30px; }
3503
+ .itsme-timeline::before { content: ''; position: absolute; left: 5px; top: 8px; width: 2px; height: calc(100% - 16px); background: #efefef; }
3504
+ .itsme-timeline-item { position: relative; margin-bottom: 32px; }
3505
+ .itsme-timeline-dot {
3506
+ position: absolute; left: -30px; top: 5px; width: 12px; height: 12px;
3507
+ border-radius: 50%; background: #f97316; border: 2px solid #fff; box-shadow: 0 0 0 2px #f97316;
3508
+ }
3509
+ .itsme-timeline-badge {
3510
+ display: inline-block; font-size: 10px; font-weight: 800; color: #f97316;
3511
+ background: rgba(249,115,22,.08); border-radius: 4px; padding: 2px 10px;
3512
+ letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px;
3513
+ }
3514
+ .itsme-timeline-role { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 3px; }
3515
+ .itsme-timeline-org { font-size: 12px; color: #f97316; font-weight: 700; margin-bottom: 8px; }
3516
+ .itsme-timeline-desc { font-size: 13px; color: #777; line-height: 1.7; margin: 0; }
3517
+
3518
+ /* ── Testimonial card ── */
3519
+ .itsme-testimonial {
3520
+ background: #fff; border: 1px solid #efefef; border-radius: 14px;
3521
+ padding: 28px 24px; transition: box-shadow .2s;
3522
+ }
3523
+ .itsme-testimonial:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); }
3524
+ .itsme-testimonial-quote { font-size: 36px; color: #f97316; line-height: 1; margin-bottom: 12px; font-weight: 900; }
3525
+
3526
+ /* ── Work/portfolio card ── */
3527
+ .itsme-work-card {
3528
+ border-radius: 14px; overflow: hidden; background: #fff;
3529
+ border: 1px solid #efefef; transition: box-shadow .25s, transform .25s; position: relative;
3530
+ }
3531
+ .itsme-work-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.12); transform: translateY(-5px); }
3532
+ .itsme-work-thumb { aspect-ratio: 4/3; overflow: hidden; position: relative; }
3533
+ .itsme-work-thumb-bg { width: 100%; height: 100%; transition: transform .3s; display: flex; align-items: center; justify-content: center; }
3534
+ .itsme-work-card:hover .itsme-work-thumb-bg { transform: scale(1.06); }
3535
+ .itsme-work-overlay {
3536
+ position: absolute; inset: 0; background: rgba(249,115,22,.88);
3537
+ display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
3538
+ opacity: 0; transition: opacity .25s;
3539
+ }
3540
+ .itsme-work-card:hover .itsme-work-overlay { opacity: 1; }
3541
+ .itsme-work-cat {
3542
+ display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
3543
+ text-transform: uppercase; color: #f97316; background: rgba(249,115,22,.08);
3544
+ border-radius: 4px; padding: 2px 10px; margin-bottom: 6px;
3545
+ }
3546
+
3547
+ /* ── Portfolio filter buttons ── */
3548
+ .itsme-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
3549
+ .itsme-filter-btn {
3550
+ padding: 7px 20px; border-radius: 4px; border: 1.5px solid #e2e8f0;
3551
+ background: transparent; cursor: pointer; font-size: 11px; font-weight: 800;
3552
+ color: #777; font-family: inherit; transition: all .18s;
3553
+ text-transform: uppercase; letter-spacing: 0.06em;
3554
+ }
3555
+ .itsme-filter-btn:hover, .itsme-filter-btn.itsme-filter-active { background: #f97316; color: #fff; border-color: #f97316; }
3556
+
3557
+ /* ── Blog card ── */
3558
+ .itsme-blog-card {
3559
+ background: #fff; border: 1px solid #efefef; border-radius: 14px;
3560
+ overflow: hidden; transition: box-shadow .25s, transform .25s;
3561
+ }
3562
+ .itsme-blog-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,.1); transform: translateY(-4px); }
3563
+ .itsme-blog-thumb { aspect-ratio: 16/9; overflow: hidden; }
3564
+ .itsme-blog-thumb-inner { width: 100%; height: 100%; transition: transform .3s; display: flex; align-items: center; justify-content: center; }
3565
+ .itsme-blog-card:hover .itsme-blog-thumb-inner { transform: scale(1.05); }
3566
+ .itsme-blog-tag {
3567
+ display: inline-block; font-size: 10px; font-weight: 800; padding: 3px 10px;
3568
+ border-radius: 4px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px;
3569
+ }
3570
+ .itsme-tag-web { background: rgba(59,130,246,.08); color: #3b82f6; }
3571
+ .itsme-tag-graphic { background: rgba(249,115,22,.08); color: #f97316; }
3572
+ .itsme-tag-motion { background: rgba(139,92,246,.08); color: #8b5cf6; }
3573
+
3574
+ /* ── Contact form ── */
3575
+ .itsme-input {
3576
+ width: 100%; padding: 12px 16px; border: 1.5px solid #e8e8e8;
3577
+ border-radius: 8px; font-size: 14px; color: #333; background: #fff;
3578
+ outline: none; transition: border-color .2s; font-family: inherit;
3579
+ display: block;
3580
+ }
3581
+ .itsme-input:focus { border-color: #f97316; }
3582
+ .itsme-textarea { resize: vertical; min-height: 130px; }
3583
+
3584
+ /* ── Primary button ── */
3585
+ .itsme-btn {
3586
+ display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px;
3587
+ background: #f97316; color: #fff; border: 2px solid #f97316;
3588
+ border-radius: 6px; font-size: 12px; font-weight: 800; letter-spacing: 0.06em;
3589
+ text-transform: uppercase; cursor: pointer; text-decoration: none;
3590
+ transition: background .2s, transform .15s; font-family: inherit;
3591
+ }
3592
+ .itsme-btn:hover { background: #ea6c10; border-color: #ea6c10; transform: translateY(-1px); }
3593
+ .itsme-btn-ghost { background: transparent; color: #f97316; }
3594
+ .itsme-btn-ghost:hover { background: #f97316; color: #fff; }
3595
+
3596
+ /* ── Floating dots background deco ── */
3597
+ .itsme-dot-deco {
3598
+ position: absolute; border-radius: 50%; pointer-events: none;
3599
+ background: #f97316; opacity: .04;
3600
+ }
3601
+
3602
+ /* ── Contact info card ── */
3603
+ .itsme-contact-card {
3604
+ display: flex; align-items: flex-start; gap: 16px; padding: 20px;
3605
+ background: #fff; border: 1px solid #efefef; border-radius: 12px; margin-bottom: 16px;
3606
+ transition: box-shadow .2s;
3607
+ }
3608
+ .itsme-contact-card:hover { box-shadow: 0 6px 24px rgba(249,115,22,.1); }
3609
+ .itsme-contact-icon {
3610
+ width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
3611
+ background: rgba(249,115,22,.08); border: 1px solid rgba(249,115,22,.18);
3612
+ display: flex; align-items: center; justify-content: center;
3613
+ }