santycss 2.4.8 → 2.5.0

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.
@@ -3010,3 +3010,375 @@
3010
3010
  }
3011
3011
  .animate-dragon-fire { animation: santy-dragon-fire 1.6s ease-out infinite; transform-origin: left center; }
3012
3012
  .animate-fire-flicker { animation: santy-fire-flicker 0.14s ease-in-out infinite; }
3013
+
3014
+ /* ═══════════════════════════════════════════════════════════════════════
3015
+ PORTFOLIO TEMPLATE COMPONENTS (Added v2.4.9)
3016
+ ═══════════════════════════════════════════════════════════════════════ */
3017
+
3018
+ /* ── Icon base class for essential UI icons (uses --icon-url variable) ── */
3019
+ .icon {
3020
+ display: inline-block;
3021
+ background-color: currentColor;
3022
+ -webkit-mask: var(--icon-url, none) no-repeat center / contain;
3023
+ mask: var(--icon-url, none) no-repeat center / contain;
3024
+ vertical-align: -0.125em;
3025
+ flex-shrink: 0;
3026
+ width: 1em;
3027
+ height: 1em;
3028
+ }
3029
+ .icon-16 { width: 16px; height: 16px; }
3030
+ .icon-20 { width: 20px; height: 20px; }
3031
+ .icon-24 { width: 24px; height: 24px; }
3032
+ .icon-28 { width: 28px; height: 28px; }
3033
+ .icon-32 { width: 32px; height: 32px; }
3034
+ .icon-40 { width: 40px; height: 40px; }
3035
+ .icon-48 { width: 48px; height: 48px; }
3036
+
3037
+ /* ── Near-black background utility ── */
3038
+ .background-zinc-950 { background-color: #09090b; }
3039
+
3040
+ /* ── Full-page scroll-snap container ── */
3041
+ .portfolio-snap {
3042
+ height: 100vh;
3043
+ overflow-y: scroll;
3044
+ scroll-snap-type: y mandatory;
3045
+ scroll-behavior: smooth;
3046
+ overscroll-behavior: none;
3047
+ }
3048
+ .portfolio-snap::-webkit-scrollbar { display: none; }
3049
+ .portfolio-snap { -ms-overflow-style: none; scrollbar-width: none; }
3050
+
3051
+ /* ── Snap section (full-vh, overflow hidden) ── */
3052
+ .snap-section {
3053
+ height: 100vh;
3054
+ min-height: 100vh;
3055
+ scroll-snap-align: start;
3056
+ scroll-snap-stop: always;
3057
+ overflow: hidden;
3058
+ position: relative;
3059
+ }
3060
+
3061
+ /* ── Snap section with internal scroll ── */
3062
+ .snap-section-scrollable {
3063
+ height: 100vh;
3064
+ scroll-snap-align: start;
3065
+ scroll-snap-stop: always;
3066
+ overflow-y: auto;
3067
+ overscroll-behavior: contain;
3068
+ position: relative;
3069
+ }
3070
+ .snap-section-scrollable::-webkit-scrollbar { width: 3px; }
3071
+ .snap-section-scrollable::-webkit-scrollbar-track { background: transparent; }
3072
+ .snap-section-scrollable::-webkit-scrollbar-thumb { background: rgba(247,191,4,0.3); border-radius: 9999px; }
3073
+
3074
+ /* ── Right-side dot navigation ── */
3075
+ .portfolio-right-nav {
3076
+ position: fixed;
3077
+ right: 28px;
3078
+ top: 50%;
3079
+ transform: translateY(-50%);
3080
+ display: flex;
3081
+ flex-direction: column;
3082
+ align-items: center;
3083
+ gap: 14px;
3084
+ z-index: 100;
3085
+ }
3086
+ @media (max-width: 767px) { .portfolio-right-nav { display: none; } }
3087
+
3088
+ .nav-dot {
3089
+ display: block;
3090
+ width: 10px;
3091
+ height: 10px;
3092
+ border-radius: 9999px;
3093
+ background: rgba(255,255,255,0.2);
3094
+ border: none;
3095
+ cursor: pointer;
3096
+ text-decoration: none;
3097
+ transition: all 0.25s ease;
3098
+ position: relative;
3099
+ }
3100
+ .nav-dot::after {
3101
+ content: attr(data-label);
3102
+ position: absolute;
3103
+ right: 20px;
3104
+ top: 50%;
3105
+ transform: translateY(-50%);
3106
+ background: #f7bf04;
3107
+ color: #111;
3108
+ font-size: 11px;
3109
+ font-weight: 700;
3110
+ padding: 3px 10px;
3111
+ border-radius: 6px;
3112
+ white-space: nowrap;
3113
+ opacity: 0;
3114
+ pointer-events: none;
3115
+ transition: opacity 0.2s;
3116
+ font-family: ui-sans-serif, system-ui, sans-serif;
3117
+ }
3118
+ .nav-dot:hover::after { opacity: 1; }
3119
+ .nav-dot:hover { background: rgba(255,255,255,0.5); transform: scale(1.3); }
3120
+ .nav-dot.nav-dot-active {
3121
+ background: #f7bf04;
3122
+ transform: scale(1.4);
3123
+ box-shadow: 0 0 0 3px rgba(247,191,4,0.25);
3124
+ }
3125
+
3126
+ /* ── Glass card ── */
3127
+ .glass-card {
3128
+ background: rgba(255,255,255,0.05);
3129
+ backdrop-filter: blur(12px);
3130
+ -webkit-backdrop-filter: blur(12px);
3131
+ border: 1px solid rgba(255,255,255,0.1);
3132
+ border-radius: 16px;
3133
+ }
3134
+ .glass-card-light {
3135
+ background: rgba(255,255,255,0.08);
3136
+ backdrop-filter: blur(16px);
3137
+ -webkit-backdrop-filter: blur(16px);
3138
+ border: 1px solid rgba(255,255,255,0.15);
3139
+ border-radius: 16px;
3140
+ }
3141
+
3142
+ /* ── Large avatar with animated gradient ring ── */
3143
+ .avatar-ring-lg {
3144
+ position: relative;
3145
+ width: 130px;
3146
+ height: 130px;
3147
+ flex-shrink: 0;
3148
+ }
3149
+ .avatar-ring-lg::before {
3150
+ content: '';
3151
+ position: absolute;
3152
+ inset: -4px;
3153
+ border-radius: 50%;
3154
+ background: conic-gradient(#f7bf04, #fcd34d, rgba(255,255,255,0.04), #f7bf04);
3155
+ animation: santy-spin 4s linear infinite;
3156
+ z-index: 0;
3157
+ }
3158
+ .avatar-ring-lg > img,
3159
+ .avatar-ring-lg > .avatar-photo {
3160
+ position: relative;
3161
+ z-index: 1;
3162
+ width: 100%;
3163
+ height: 100%;
3164
+ border-radius: 50%;
3165
+ object-fit: cover;
3166
+ display: block;
3167
+ border: 4px solid #09090b;
3168
+ }
3169
+
3170
+ /* ── Skill bar track + fill ── */
3171
+ .skill-bar-track {
3172
+ width: 100%;
3173
+ height: 6px;
3174
+ background: rgba(255,255,255,0.1);
3175
+ border-radius: 9999px;
3176
+ overflow: hidden;
3177
+ }
3178
+ .skill-bar-fill {
3179
+ height: 100%;
3180
+ background: linear-gradient(90deg, #f7bf04, #fcd34d);
3181
+ border-radius: 9999px;
3182
+ width: 0;
3183
+ transition: width 1.4s cubic-bezier(0.25, 0.8, 0.25, 1);
3184
+ }
3185
+ .skill-bar-fill-blue { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
3186
+ .skill-bar-fill-purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
3187
+ .skill-bar-fill-green { background: linear-gradient(90deg, #22c55e, #4ade80); }
3188
+ .skill-bar-fill-pink { background: linear-gradient(90deg, #ec4899, #f472b6); }
3189
+ .skill-bar-fill-cyan { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
3190
+
3191
+ /* ── Amber gradient text ── */
3192
+ .text-gradient-amber-to-yellow {
3193
+ background-image: linear-gradient(135deg, #f7bf04, #fcd34d);
3194
+ -webkit-background-clip: text;
3195
+ background-clip: text;
3196
+ -webkit-text-fill-color: transparent;
3197
+ color: transparent;
3198
+ }
3199
+
3200
+ /* ── Progress bar amber variant ── */
3201
+ .progress-bar-amber { background: linear-gradient(90deg, #f7bf04, #fcd34d); }
3202
+
3203
+ /* ── Section badge ── */
3204
+ .section-badge {
3205
+ display: inline-flex;
3206
+ align-items: center;
3207
+ gap: 6px;
3208
+ padding: 4px 14px;
3209
+ border-radius: 9999px;
3210
+ border: 1px solid rgba(247,191,4,0.35);
3211
+ background: rgba(247,191,4,0.08);
3212
+ font-size: 11px;
3213
+ font-weight: 700;
3214
+ color: #f7bf04;
3215
+ letter-spacing: 0.1em;
3216
+ text-transform: uppercase;
3217
+ }
3218
+
3219
+ /* ── Mobile nav overlay ── */
3220
+ .mobile-menu-overlay {
3221
+ position: fixed;
3222
+ inset: 0;
3223
+ background: rgba(8, 8, 14, 0.97);
3224
+ z-index: 200;
3225
+ display: none;
3226
+ flex-direction: column;
3227
+ align-items: center;
3228
+ justify-content: center;
3229
+ gap: 6px;
3230
+ backdrop-filter: blur(20px);
3231
+ -webkit-backdrop-filter: blur(20px);
3232
+ }
3233
+ .mobile-menu-overlay.open {
3234
+ display: flex;
3235
+ animation: santy-fade-in 0.2s ease both;
3236
+ }
3237
+ .mobile-nav-link {
3238
+ display: flex;
3239
+ align-items: center;
3240
+ gap: 16px;
3241
+ font-size: 24px;
3242
+ font-weight: 700;
3243
+ color: rgba(255,255,255,0.55);
3244
+ text-decoration: none;
3245
+ padding: 12px 40px;
3246
+ border-radius: 14px;
3247
+ transition: color 0.2s ease, background 0.2s ease;
3248
+ width: 100%;
3249
+ max-width: 320px;
3250
+ }
3251
+ .mobile-nav-link:hover,
3252
+ .mobile-nav-link.nav-dot-active { color: #f7bf04; background: rgba(247,191,4,0.08); }
3253
+
3254
+ /* ── Portfolio hamburger button ── */
3255
+ .portfolio-hamburger {
3256
+ position: fixed;
3257
+ top: 20px;
3258
+ right: 20px;
3259
+ z-index: 300;
3260
+ width: 44px;
3261
+ height: 44px;
3262
+ border-radius: 10px;
3263
+ background: rgba(255,255,255,0.07);
3264
+ backdrop-filter: blur(8px);
3265
+ -webkit-backdrop-filter: blur(8px);
3266
+ border: 1px solid rgba(255,255,255,0.12);
3267
+ cursor: pointer;
3268
+ display: none;
3269
+ align-items: center;
3270
+ justify-content: center;
3271
+ color: #fff;
3272
+ transition: background 0.2s, border-color 0.2s;
3273
+ }
3274
+ .portfolio-hamburger:hover { background: rgba(247,191,4,0.15); border-color: rgba(247,191,4,0.4); }
3275
+ @media (max-width: 767px) { .portfolio-hamburger { display: flex; } }
3276
+
3277
+ /* ═══════════════════════════════════════════════════════════════════════
3278
+ PORTFOLIO CV SIDEBAR TEMPLATE COMPONENTS (Added v2.4.9)
3279
+ ═══════════════════════════════════════════════════════════════════════ */
3280
+
3281
+ /* ── Brand cyan accent ── */
3282
+ .color-brand-cyan { color: #0099e5; }
3283
+ .background-brand-cyan { background-color: #0099e5; }
3284
+ .border-color-brand-cyan { border-color: #0099e5; }
3285
+ .background-brand-cyan-soft { background-color: rgba(0,153,229,0.08); }
3286
+ .background-brand-cyan-10 { background-color: rgba(0,153,229,0.10); }
3287
+
3288
+ /* ── CV sidebar fixed-left layout ── */
3289
+ .cv-sidebar {
3290
+ position: fixed; top: 0; left: 0; width: 220px; height: 100vh;
3291
+ overflow-y: auto; display: flex; flex-direction: column;
3292
+ z-index: 100; background: #1c1c1e; border-right: 1px solid #252525;
3293
+ scrollbar-width: none;
3294
+ }
3295
+ .cv-sidebar::-webkit-scrollbar { display: none; }
3296
+ .cv-main { margin-left: 220px; background: #0f0f0f; min-height: 100vh; }
3297
+ @media (max-width: 900px) {
3298
+ .cv-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
3299
+ .cv-sidebar.cv-sidebar-open { transform: translateX(0); box-shadow: 4px 0 32px rgba(0,0,0,0.7); }
3300
+ .cv-main { margin-left: 0; }
3301
+ }
3302
+
3303
+ /* ── Sidebar nav links ── */
3304
+ .cv-nav-link {
3305
+ display: flex; align-items: center; gap: 10px; padding: 11px 22px;
3306
+ font-size: 13px; font-weight: 600; color: #777; text-decoration: none;
3307
+ border-left: 3px solid transparent; transition: all 0.2s; letter-spacing: 0.02em;
3308
+ }
3309
+ .cv-nav-link:hover, .cv-nav-link.cv-nav-active {
3310
+ color: #0099e5; border-left-color: #0099e5; background: rgba(0,153,229,0.07);
3311
+ }
3312
+
3313
+ /* ── Section wrapper ── */
3314
+ .cv-section { padding: 64px 56px; }
3315
+ .cv-section-alt { background: #161616; }
3316
+ @media (max-width: 700px) { .cv-section { padding: 40px 22px; } }
3317
+ .cv-section-label { font-size: 11px; font-weight: 700; color: #0099e5; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }
3318
+ .cv-section-title { font-size: 30px; font-weight: 800; color: #f0f0f0; margin: 0 0 8px; }
3319
+ .cv-section-divider { width: 36px; height: 3px; background: #0099e5; border-radius: 2px; margin-bottom: 36px; }
3320
+
3321
+ /* ── Dark timeline variant ── */
3322
+ .timeline-dark .timeline-item:not(:last-child) .timeline-dot::after { background-color: #252525; }
3323
+ .timeline-dot-cyan { background-color: #0099e5; box-shadow: 0 0 0 2px rgba(0,153,229,0.25); color: #fff; }
3324
+ .timeline-dot-zinc { background-color: #3f3f46; box-shadow: 0 0 0 2px #27272a; color: #a1a1aa; }
3325
+
3326
+ /* ── Skill bar (dark) ── */
3327
+ .skill-bar-dark { width: 100%; height: 4px; background: #252525; border-radius: 9999px; overflow: hidden; }
3328
+ .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); }
3329
+
3330
+ /* ── Fun fact card ── */
3331
+ .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; }
3332
+ .fun-fact-card:hover { border-color: #0099e5; transform: translateY(-4px); }
3333
+ .fun-fact-number { font-size: 44px; font-weight: 900; color: #0099e5; line-height: 1; }
3334
+ .fun-fact-suffix { font-size: 28px; font-weight: 900; color: #0099e5; }
3335
+ .fun-fact-label { font-size: 11px; color: #555; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 8px; font-weight: 600; }
3336
+
3337
+ /* ── Portfolio filter ── */
3338
+ .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; }
3339
+ .pf-filter-btn:hover, .pf-filter-btn.pf-active { background: #0099e5; color: #fff; border-color: #0099e5; }
3340
+
3341
+ /* ── Project card (dark) ── */
3342
+ .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; }
3343
+ .project-card-dark:hover { border-color: #0099e5; transform: translateY(-5px); }
3344
+ .project-thumb-dark { height: 155px; display: flex; align-items: center; justify-content: center; background: #141414; }
3345
+ .project-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
3346
+
3347
+ /* ── Blog card (dark) ── */
3348
+ .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; }
3349
+ .blog-card-dark:hover { border-color: #0099e5; transform: translateY(-5px); }
3350
+ .blog-thumb-dark { height: 175px; display: flex; align-items: center; justify-content: center; }
3351
+
3352
+ /* ── Service card (dark) ── */
3353
+ .service-card-dark { background: #1c1c1e; border: 1px solid #252525; border-radius: 12px; padding: 26px 22px; transition: border-color 0.2s, transform 0.2s; }
3354
+ .service-card-dark:hover { border-color: #0099e5; transform: translateY(-3px); }
3355
+
3356
+ /* ── Dark inputs ── */
3357
+ .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; }
3358
+ .input-dark:focus { border-color: #0099e5; }
3359
+ .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; }
3360
+ .textarea-dark:focus { border-color: #0099e5; }
3361
+
3362
+ /* ── Cyan CTA buttons ── */
3363
+ .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; }
3364
+ .btn-cyan:hover { background: #0087cc; transform: translateY(-2px); }
3365
+ .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; }
3366
+ .btn-cyan-outline:hover { background: rgba(0,153,229,0.1); transform: translateY(-2px); }
3367
+
3368
+ /* ── Tag pill (dark) ── */
3369
+ .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; }
3370
+ .tag-dark:hover { border-color: #0099e5; color: #0099e5; }
3371
+
3372
+ /* ── Mobile hamburger & sidebar overlay ── */
3373
+ .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; }
3374
+ .cv-hamburger:hover { border-color: #0099e5; color: #0099e5; }
3375
+ @media (max-width: 900px) { .cv-hamburger { display: flex; } }
3376
+ .cv-sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 99; }
3377
+ .cv-sidebar-overlay.cv-overlay-open { display: block; animation: santy-fade-in 0.2s ease; }
3378
+
3379
+ /* ── Testimonial card dark ── */
3380
+ .testimonial-card-dark { background: #1c1c1e; border: 1px solid #252525; border-radius: 14px; padding: 26px 24px; }
3381
+
3382
+ /* ── What I do card ── */
3383
+ .what-i-do-card { background: #1c1c1e; border: 1px solid #252525; border-radius: 12px; padding: 22px; transition: border-color 0.2s, transform 0.2s; }
3384
+ .what-i-do-card:hover { border-color: #0099e5; transform: translateY(-3px); }