/**
 * ===================================================================
 * בליינד אורקסטרה - Sections CSS נקי וממוקד
 * ===================================================================
 * תיאור: כל הסקציות הספציפיות - Hero, מטרות, המלצות, פוטר
 * גרסה: 2.0 - נקייה וממוקדת
 * ===================================================================
 */

/* ==========================================================================
   סקציית Hero
   ========================================================================== */

.hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 2rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* לוגו ראשי למעלה */
.hero-header-logo {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  opacity: 0;
  animation: fadeInDown 1.2s ease-out 0.5s forwards;
}

.header-logo-image {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* לוגו עגול מרכזי */
.hero-logo {
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  pointer-events: none;
  user-select: none;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* כותרות Hero */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--white);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 3rem;
  font-weight: 400;
  opacity: 0.95;
}

/* ==========================================================================
   סקציית קצת על הפרויקט
   ========================================================================== */

.about-project {
  padding: 5rem 0;
  position: relative;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 3rem;
  text-align: center;
}

.about-content .section-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.about-text {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.8;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   סקציית החוקים
   ========================================================================== */

.rules {
  padding: 5rem 0;
  position: relative;
}

.rules-simple-wrapper {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.rules-simple-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.rules-explanation {
  max-width: 1000px;
  margin: 0 auto;
}

.rules-explanation-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f39c12;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  text-align: center;
  margin-bottom: 2rem;
}

/* קונטיינר טקסט עם אפקט דעוך */
.text-with-fade {
  position: relative;
  max-height: 4.5em;
  overflow: hidden;
  line-height: 1.5em;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

.text-with-fade::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, 
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.3) 30%,
    rgba(0,0,0,0.7) 60%,
    rgba(0,0,0,0.9) 100%);
  pointer-events: none;
  z-index: 1;
}

.text-with-fade p {
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* כפתור הצג עוד על השורה השלישית */
.show-more-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: #000;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  z-index: 2;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.show-more-btn:hover {
  background: #f0d35a;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.show-more-btn .arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.show-more-btn.expanded .arrow {
  transform: rotate(180deg);
}

/* ==========================================================================
   סקציית על הסדנה
   ========================================================================== */

.about-workshop {
  padding: 5rem 0;
  position: relative;
}

.workshop-explanation {
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.workshop-image-section {
  text-align: center;
}

.workshop-content-image {
  width: 100%;
  max-width: 600px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   סקציית מטרות הסדנה
   ========================================================================== */

.workshop-goals {
  padding: 5rem 0;
  position: relative;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.goal-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.goal-item:hover {
  transform: translateY(-5px);
}

.goal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #e74c3c, #f39c12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.goal-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.goal-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   סקציית אלתור קבוצתי
   ========================================================================== */

.group-improvisation {
  padding: 5rem 0;
  position: relative;
}

.improvisation-intro {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  margin: 2rem auto;
  max-width: 1000px;
  text-align: center;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.improvisation-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--white);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
}

.improvisation-intro p:last-child {
  margin-bottom: 0;
}

/* בעיה ופתרון */
.problem-solution-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.problem-section,
.solution-section {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.problem-icon {
  background: rgba(231, 76, 60, 0.2);
  border: 2px solid #e74c3c;
}

.solution-icon {
  background: rgba(243, 156, 18, 0.2);
  border: 2px solid #f39c12;
}

.section-header h3 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--white);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.issue-item,
.solution-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-right: 4px solid;
}

.issue-item {
  border-right-color: #e74c3c;
}

.solution-item {
  border-right-color: #f39c12;
}

.issue-item h4,
.solution-item h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 0 0.8rem 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.issue-item p,
.solution-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   סקציית קהל היעד
   ========================================================================== */

.target-audience {
  padding: 5rem 0;
  position: relative;
}

.audience-content {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.audience-content p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--white);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
}

.audience-content p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   סקציית התארחו אצלנו
   ========================================================================== */

.hosted-artists {
  padding: 5rem 0;
  position: relative;
}

.artists-text-section {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
}

/* ==========================================================================
   סקציית על המנחה - רקע לבן שקוף
   ========================================================================== */

.about-instructor {
  padding: 5rem 0;
  position: relative;
}

.instructor-card {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.instructor-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 2.5rem;
  object-fit: cover;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
  border: 5px solid rgba(255, 255, 255, 0.8);
}

.instructor-name {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-weight: 800;
}

.instructor-bio {
  margin-bottom: 2rem;
}

.instructor-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #7f8c8d;
  padding: 1.5rem;
  border-right: 4px solid #f39c12;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}

/* ==========================================================================
   סקציית המלצות
   ========================================================================== */

.testimonials {
  padding: 5rem 0;
  position: relative;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.testimonial {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.testimonial-author {
  color: #f39c12;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.testimonial-role {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   סקציית כתבו עלינו
   ========================================================================== */

.media-coverage {
  padding: 5rem 0;
  position: relative;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.media-item {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
}

.media-item-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.media-item-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.media-video-container,
.media-image-container {
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
}

.video-player {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: rgba(212, 175, 55, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
  color: #000;
  font-size: 24px;
  margin-left: 3px;
}

.media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   פוטר
   ========================================================================== */

.site-footer {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.98), rgba(52, 73, 94, 0.95));
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: #f39c12;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-contact,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #f39c12;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.social-links a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: #f39c12;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ==========================================================================
   אלמנטים צפים
   ========================================================================== */

/* כפתור וואטסאפ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: scale(1.1);
}

/* כפתור חזרה למעלה */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #e74c3c;
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #c0392b;
  transform: translateY(-3px);
}

/* הודעת עוגיות */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.98);
  color: var(--white);
  padding: 1.5rem;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.cookie-content button {
  background: #e74c3c;
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cookie-content button:hover {
  background: #c0392b;
}

/* מסך טעינה */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-overlay.fade-out {
  opacity: 0;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #e74c3c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 2rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner p {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0;
}

/* ==========================================================================
   אנימציות בסיסיות
   ========================================================================== */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   רספונסיביות
   ========================================================================== */

/* טאבלט */
@media (max-width: 1024px) {
  .goals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-container {
    grid-template-columns: 1fr;
  }
  
  .media-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .problem-solution-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* מובייל */
@media (max-width: 768px) {
  .hero-logo {
    width: 300px;
    height: 300px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .goals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .goal-item {
    padding: 1.5rem 1rem;
  }
  
  .about-content,
  .improvisation-intro,
  .audience-content,
  .artists-text-section,
  .testimonial,
  .media-item {
    padding: 2rem 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    padding: 2rem 0;
  }
  
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

/* מובייל קטן */
@media (max-width: 480px) {
  .hero {
    min-height: 100vh;
    padding: 1rem;
  }
  
  .hero-logo {
    width: 250px;
    height: 250px;
  }
  
  .hero-header-logo {
    top: 20px;
  }
  
  .header-logo-image {
    height: 60px;
  }
  
  .goals-grid {
    grid-template-columns: 1fr;
  }
  
  .text-with-fade {
    padding: 1.5rem 1rem;
  }
  
  .show-more-btn {
    padding: 6px 16px;
    font-size: 12px;
  }
  
  .media-item {
    min-height: 380px;
    padding: 2rem 1.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}