/* ייבוא פונט Heebo בעברית */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;900&display=swap');

/* הגדרות בסיס */
body {
    font-family: 'Heebo', sans-serif, system-ui;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* כותרת עם גרדיאנט טכנולוגי (תכלת-סגול) */
.text-gradient-tech {
    background-image: linear-gradient(to right, #60a5fa, #a78bfa); /* blue-400 to violet-400 */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* עיצוב אחיד לתגיות הטכנולוגיה */
.tech-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px; /* עיגול מלא */
    padding: 0.25rem 0.75rem; /* px-3 py-1 */
    font-size: 0.75rem; /* text-xs */
    font-weight: 600;
    background-color: #f1f5f9; /* slate-100 */
    color: #334155; /* slate-700 */
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.tech-tag:hover {
    background-color: #e0e7ff; /* indigo-100 */
    color: #4338ca; /* indigo-700 */
    border-color: #c7d2fe;
}

/* אנימציה איטית לרקע בהירו */
@keyframes pulse-slow {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.1); }
}

.animate-pulse-slow {
    animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* שיפור נראות התמונות */
.perspective-container {
    perspective: 1000px;
}

/* עיצוב פס גלילה */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a; /* slate-900 */
}
::-webkit-scrollbar-thumb {
    background: #475569; /* slate-600 */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64748b; /* slate-500 */
}