תוכניות גפ"ן - קרן ילדנו מרכזי תקוותנו * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Heebo', 'Arial', sans-serif; background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); padding: 40px 20px; line-height: 1.6; } .container { max-width: 1400px; margin: 0 auto; } /* כותרת ראשית */ .page-header { text-align: center; margin-bottom: 60px; animation: fadeInDown 0.8s ease; } .page-header h1 { font-size: 3.5em; color: #2c3e50; margin-bottom: 15px; font-weight: 700; text-shadow: 2px 2px 4px rgba(0,0,0,0.1); } .page-header p { font-size: 1.3em; color: #7f8c8d; max-width: 700px; margin: 0 auto; } /* Grid של כרטיסים */ .programs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 50px; } /* כרטיס בודד */ .program-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.15); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; animation: fadeInUp 0.6s ease; } .program-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.25); } /* תמונת הכרטיס */ .program-image { width: 100%; height: 220px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; } .program-image::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); animation: pulse 3s ease-in-out infinite; } .program-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; } .program-card:hover .program-image img { transform: scale(1.1); } .program-image .placeholder-icon { font-size: 4em; color: white; opacity: 0.9; position: relative; z-index: 1; } /* תוכן הכרטיס */ .program-content { padding: 25px; text-align: center; } .program-title { font-size: 1.3em; color: #2c3e50; margin-bottom: 12px; font-weight: 600; min-height: 50px; display: flex; align-items: center; justify-content: center; } .program-number { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 8px 16px; border-radius: 20px; font-size: 0.9em; display: inline-block; margin-bottom: 20px; font-weight: 500; box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); } /* כפתור */ .program-button { display: inline-block; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; text-decoration: none; padding: 12px 30px; border-radius: 25px; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4); margin-top: 10px; } .program-button:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6); background: linear-gradient(135deg, #764ba2 0%, #667eea 100%); } /* צבעים שונים לכרטיסים */ .program-card:nth-child(1) .program-image { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } .program-card:nth-child(2) .program-image { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); } .program-card:nth-child(3) .program-image { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); } .program-card:nth-child(4) .program-image { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); } .program-card:nth-child(5) .program-image { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); } .program-card:nth-child(6) .program-image { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); } .program-card:nth-child(7) .program-image { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); } /* אנימציות */ @keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes pulse { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(180deg); } } /* עיצוב לעיתונות */ .program-card:nth-child(n) { animation-delay: calc(0.1s * var(--card-index)); } /* רספונסיבי */ @media (max-width: 1200px) { .programs-grid { grid-template-columns: repeat(3, 1fr); } } @media (max-width: 900px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } .page-header h1 { font-size: 2.5em; } } @media (max-width: 600px) { .programs-grid { grid-template-columns: 1fr; } .page-header h1 { font-size: 2em; } body { padding: 20px 10px; } } /* תוכן נוסף - אזור צור קשר */ .contact-section { background: white; padding: 50px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; margin-top: 60px; } .contact-section h2 { font-size: 2.5em; color: #2c3e50; margin-bottom: 20px; } .contact-section p { font-size: 1.2em; color: #7f8c8d; margin-bottom: 30px; } .contact-button { display: inline-block; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; text-decoration: none; padding: 18px 50px; border-radius: 30px; font-weight: 700; font-size: 1.2em; transition: all 0.3s ease; box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4); } .contact-button:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6); }
📚
<!-- להחליף עם: ילדות מעושרת -->

ילדות מעושרת

מספר תוכנית: 39806
למידע נוסף ←
😊
<!-- להחליף עם: מאושרים -->

מאושרים – סדנאות לפיתוח רווחה וחוסן

מספר תוכנית: 39937
למידע נוסף ←
🤝
<!-- להחליף עם: ביחד מנצחים -->

ביחד מנצחים

מספר תוכנית: 40161
למידע נוסף ←
🎓
<!-- להחליף עם: לומדים פה -->

לומדים פה

מספר תוכנית: 40164
למידע נוסף ←
⚛️
<!-- להחליף עם: פיזיקה לבגרות -->

פיזיקה לבגרות אונליין למידה מעשית

מספר תוכנית: 45602
למידע נוסף ←
🔢
<!-- להחליף עם: מתמטיכיף -->

מתמטיכיף הכנה לבגרות

מספר תוכנית: 45641
למידע נוסף ←
🎖️
<!-- להחליף עם: אקדמיה לצעירים -->

אקדמיה לצעירים – לימודי ארץ ישראל

מספר תוכנית: 46277
למידע נוסף ←

מעוניינים בתוכנית?

נשמח לספק לכם מידע נוסף ולענות על כל שאלה

צור קשר עכשיו