<!DOCTYPE html>
<html dir="rtl" lang="he">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI לכולם - לימודי בינה מלאכותית</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary: #2b6cb0;
--secondary: #1a365d;
--accent: #4299e1;
--text: #2d3748;
--bg-light: #f7fafc;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
line-height: 1.6;
color: var(--text);
}
nav {
background: white;
padding: 1rem;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.nav-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-links a {
text-decoration: none;
color: var(--text);
font-weight: 500;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: var(--primary);
}
.hero {
min-height: 100vh;
background: linear-gradient(135deg, #4299e1 0%, #2b6cb0 100%);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 6rem 2rem 2rem;
position: relative;
overflow: hidden;
}
.hero-content {
max-width: 800px;
color: white;
position: relative;
z-index: 1;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
animation: fadeInDown 1s ease-out;
}
.hero p {
font-size: 1.25rem;
margin-bottom: 2rem;
animation: fadeInUp 1s ease-out 0.5s both;
}
.courses {
padding: 4rem 2rem;
background: var(--bg-light);
}
.courses-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.course-card {
background: white;
border-radius: 10px;
padding: 2rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
position: relative;
overflow: hidden;
}
.course-card:hover {
transform: translateY(-5px);
}
.course-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--accent);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.course-card:hover::before {
transform: scaleX(1);
}
.course-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--primary);
}
.cta-button {
display: inline-block;
padding: 1rem 2rem;
background: var(--accent);
color: white;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: transform 0.3s ease, background 0.3s ease;
}
.cta-button:hover {
transform: scale(1.05);
background: var(--primary);
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.section-title {
text-align: center;
margin-bottom: 3rem;
color: var(--secondary);
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.1rem;
}
.nav-links {
display: none;
}
}
</style>
</head>
<body>
<nav>
<div class="nav-content">
<div class="logo">AI לכולם</div>
<div class="nav-links">
<a href="#courses">קורסים</a>
<a href="#about">אודות</a>
<a href="#contact">צור קשר</a>
</div>
</div>
</nav>
<section class="hero">
<div class="hero-content">
<h1>הצטרפו למהפכת הבינה המלאכותית</h1>
<p>למדו כיצד להשתמש בכלי AI בצורה חכמה ויעילה - בלי רקע טכני קודם</p>
<a href="#courses" class="cta-button">גלו את הקורסים שלנו</a>
</div>
</section>
<section id="courses" class="courses">
<h2 class="section-title">הקורסים שלנו</h2>
<div class="courses-grid">
<div class="course-card">
<div class="course-icon">🎓</div>
<h3>מבוא לבינה מלאכותית למתחילים</h3>
<p>קורס בסיסי המתאים לכל מי שרוצה להכיר את עולם ה-AI ללא צורך בידע טכני קודם</p>
</div>
<div class="course-card">
<div class="course-icon">💼</div>
<h3>AI למקצועות חופשיים</h3>
<p>למדו כיצד לשלב כלי AI בעבודתכם המקצועית ולשפר את השירות ללקוחות</p>
</div>
<div class="course-card">
<div class="course-icon">🚀</div>
<h3>קורס ליזמים מתחילים</h3>
<p>גלו כיצד לשלב AI במיזם שלכם ולקבל יתרון תחרותי בשוק</p>
</div>
<div class="course-card">
<div class="course-icon">📱</div>
<h3>ניהול חכם של חיי היומיום</h3>
<p>למדו להשתמש בכלי AI לניהול זמן, משימות ופיננסים אישיים</p>
</div>
<div class="course-card">
<div class="course-icon">👨👩👧👦</div>
<h3>AI למשפחה</h3>
<p>סדנה מיוחדת להורים וילדים - למידה חווייתית של כלים חינוכיים מבוססי AI</p>
</div>
<div class="course-card">
<div class="course-icon">🎨</div>
<h3>יצירת תוכן דיגיטלי</h3>
<p>למדו להשתמש בכלי AI ליצירת תמונות, טקסטים ותוכן דיגיטלי מרהיב</p>
</div>
</div>
</section>
</body>
</html>