/* הרקע הכללי של האתר*/

body {
  margin: 0;
  font-family:'Inter', sans-serif;
  background-color: #FAFAF6; /*צבע הרקע הכללי של האתר*/
  color: #2D2D2A;
  line-height: 1.6;
  font-size: 18px;
}

/* תבנית לעמוד המרכזי*/
.container {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 30px 20px;
}

/* עיצוב הכותרות בעמוד הראשי*/
h2 {
  border-bottom: 2px solid #D9A5B3;
  padding-bottom: 1px;
  margin-top: 20px; 
  color: #2D2D2A;
  font-size: 25px;
}

/* תמונת הפרופיל שלי*/
.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(20%) brightness(1.05);
  border: 2px solid #F1B4AA;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.intro {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* טקסט ליד התמונה */
.intro-text {
  flex: 1;
  min-width: 300px;
}



/***********************My Skills*******************/
.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* 🏷️ תגיות של מיומנויות (Skill Tags) */
.skill {
  background-color: #FAFAF6;
  color: #2D2D2A;
  padding: 8px 14px;
  border-radius: 6px; /* פינות מעוגלות בעדינות */
  border: 2px solid #F1B4AA;
  font-size: 15px;
  font-weight: 400;
  transition: background-color 0.3s ease;
}

/***********************Education*******************/
.course-tag {
  display: inline-flex; /* חדש */
  align-items: center;  /* ליישור אנכי נעים */
  background-color: #FAFAF6;
  color: #2D2D2A;
  padding: 6px 12px;     /* פחות padding אנכי */
  border-radius: 6px;
  border: 2px solid #F1B4AA;
  font-size: 15px;
  font-weight: 400;
  transition: background-color 0.3s ease;
  line-height: 1;        /* שורת טקסט צפופה יותר */
  margin: 0;             /* מונע ריווח אנכי עודף */
}

.courses-container {
  margin-top: 10px;
}

.courses-title {
  font-size: 18px;
  color: #2D2D2A;
  margin: 0 0 6px 0; /* פחות רווחים */
  font-weight: 600;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.education-details p {
  margin: 0 0 4px 0; /* צמצום רווח בין השורות */
}

.contact li a {
  display: inline-block;
  padding: 10px 10px;
  border: 2px solid #F1B4AA;
  border-radius: 6px;
  background-color: #FAFAF6;
  color: #D9A5B3;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact li a:hover {
  background-color: #ebd3da; /* כמו explore */
  color: #D9A5B3; /* לא שחור */
  transform: translateY(-3px);
}

/* Courses Button – styled like explore-box */
.courses-btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #FAFAF6;
  border: 2px solid #F1B4AA;
  border-radius: 10px;
  color: #D9A5B3;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background-color 0.3s ease;
  font-size: 14px;
  text-align: center;
}

.courses-btn:hover {
  transform: translateY(-3px);
  background-color: #ebd3da;
}



/***********************Explore More*******************/
.explore-container {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap; 
  margin-top: 20px;
  justify-content: center;
  padding-bottom: 10px;
}

.explore-box {
  flex: 0 0 200px; 
  height: 80px;
  background-color: #FAFAF6;
  border: 2px solid #F1B4AA;
  border-radius: 10px;
  text-decoration: none;
  color: #D9A5B3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.explore-box:hover {
  transform: translateY(-5px);
  background-color: #ebd3da;
}

.explore-box h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

/***********************Contact*******************/
.contact {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: flex-start; 
}

