
.title {
    margin-left: 10px; /* יוצר מרווח של 10 פיקסלים משמאל לכותרת */
}

header{
    font-weight: bold;
    background: #ffffff; /* רקע לבן */
    color: #333; /* צבע טקסט אפור כהה (או כל צבע שתרצה) */
    padding: 20px 0;
    text-align: center;
    width: 100%;
    box-shadow: 1px 1px 2px #999;
    transition: background-color 0.3s ease; /* מעבר חלק */
}

.headernav {
    font-weight: bold;
    background: #ffffff; /* רקע לבן */
    color: #333; /* צבע טקסט אפור כהה (או כל צבע שתרצה) */
    padding: 20px 0;
    text-align: center;
    position: fixed;
    z-index: 100;
    width: 100%;
    box-shadow: 1px 1px 2px #999;
    transition: background-color 0.3s ease; /* מעבר חלק */
    
}

.video-for-open{
width: 100%;
margin-top: 90px;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.5); /* רקע לבן שקוף למחצה */
}



/*פופ אימייל*/
#email-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#email-popup-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: popupIn .4s ease;
}

@keyframes popupIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

#email-popup-box input {
    width: 90%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

#email-popup-box button {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    background: #1a73e8;
    color: white;
    font-size: 16px;
}

.close-btn {
    background: #e53935;
    margin-left: 10px;
}

#popup-status {
    margin-top: 10px;
    font-weight: bold;
}

/*פופ אימייל סיום*/


body {
    font-family: 'Heebo', sans-serif;
    direction: rtl; /* תמיכה בשפה העברית */
    background-color: hsl(180, 33%, 84%);
    margin: 0;
    padding: 0;
}

hr{
    height: 2px;
    background-color: #000;
    border: none;
}

h2, h3,h4 {
    color: rgb(16, 0, 0); /* צבע הכותרת */
}

p {
    color: #000000; /* צבע טקסט פסקאות */
    line-height: 1.5; /* גובה השורה */
}

a {
    color: #2b2727; /* צבע קישורים */
    text-decoration: none; /* הסרת קו תחתון */
}

a:hover {
    text-decoration: underline; /* קו תחתון בקישור בהעברה */
    text-decoration-thickness: 3px; /* עובי הקו הרצוי במעבר עכבר (אתה יכול לשנות את הערך) */ 
}



.qlik:active {
  background-color:#c22323; font-size:14px;
  border-radius: 5px;
  padding: 2px 5px;
  border: #000000 2px;
  text-decoration: none;
  color: white;
}


/* כותרת עליונה */

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 15px;
}

nav ul li a {
    color: #2a2b27;
    text-decoration: none;
}

/* קטעים */
section {
    padding: 60px;
    margin: 90px;
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: 0 0 5px rgba(85, 67, 67, 0.1);  
}




.video-about-section{
border-radius: 15px;
height: 537px;
}

.video-about-section-rohav{
  border-radius: 15px;
}



.Musik {
  padding: 50px;
  margin: 90px;
  background-image: url('img/imgdj.png');
  box-shadow: 0 0 5px rgba(85, 67, 67, 0.1);
}

.Musik h1{
  color: white;
}

.Musik p {
  color: rgb(255, 255, 255);
}

.Musik2{
  width: 400px;
  padding: 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 0 5px rgba(85, 67, 67, 0.1);  
  background-color: #324356;
}

#text1{
    color: #000000;
}





/*כפתור מ המעודכן וזיקה צף*/
        /* ======================== CSS כללי וגלובלי ======================== */
        body {
            height: 200vh;
            /* רק כדי לאפשר גלילה */
            font-family: Arial, sans-serif;
        }

        /* ======================== כפתור צף וגלים (Visualizer) ======================== */
        .floating-button {
            position: fixed;
            bottom: 20px;
            /* מיקום בצד שמאל */
            left: 20px;

            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: #2c3e50;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
            transition: transform 0.2s, background-color 0.2s;
            z-index: 1000;
            font-size: 24px;
        }

        .floating-button:hover {
            transform: scale(1.05);
        }

        /* סימן 'X' כשהכפתור פתוח */
        .floating-button.open .icon::after {
            content: '✖';
            font-size: 28px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .floating-button.open .icon {
            visibility: hidden;
        }

        .floating-button.open .icon::after {
            visibility: visible;
        }

        /* עיצוב הגלים (Visualizer) */
        .waves {
            position: absolute;
            width: 60%;
            height: 60%;
            display: flex;
            justify-content: space-around;
            align-items: flex-end;
            opacity: 0;
            transition: opacity 0.5s;
        }

        /* הצגת הגלים כשהכפתור מנגן */
        .floating-button.playing .waves {
            opacity: 1;
        }

        .bar {
            width: 10%;
            background-color: #3498db;
            animation: wave-jump 0.7s infinite alternate;
        }

        /* השהיה שונה לכל גל ליצירת אפקט אקראי */
        .waves .bar:nth-child(2) {
            animation-delay: -0.2s;
        }

        .waves .bar:nth-child(3) {
            animation-delay: -0.4s;
        }

        /* הגדרת אנימציית הגלים */
        @keyframes wave-jump {
            0% {
                height: 5%;
            }

            100% {
                height: 100%;
            }
        }

        /* ======================== חלונית הפלייליסט ======================== */
        #playlist-panel {
            position: fixed;
            bottom: 100px;
            /* מיקום בצד שמאל */
            left: 20px;

            width: 250px;
            max-height: 400px;
            overflow-y: auto;
            background-color: white;
            border: 1px solid #ccc;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            padding: 15px;
            z-index: 999;

            /* הסתרה חלקה */
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.3s ease-out;
            pointer-events: none;
        }

        #playlist-panel.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        #song-list {
            list-style: none;
            padding: 0;
            margin: 10px 0;
        }

        #song-list li {
            padding: 8px;
            cursor: pointer;
            border-bottom: 1px solid #eee;
            transition: background-color 0.1s;
        }

        #song-list li.current-song {
            background-color: #e0f7fa;
            font-weight: bold;
        }

        #song-list li:hover {
            background-color: #f0f0f0;
        }

        #audioPlayer {
            width: 100%;
            margin-top: 15px;
        }

        /* ======================== רספונסיביות (מובייל) ======================== */
        @media (max-width: 600px) {

            /* הכפתור הצף במובייל */
            .floating-button {
                width: 55px;
                height: 55px;
                bottom: 15px;
                left: 15px;
                font-size: 20px;
            }

            /* חלונית הפלייליסט במובייל */
            #playlist-panel {
                bottom: 80px;
                left: 10px;
                /* מוודא שאין גלישה ימינה */
                right: auto;

                width: auto;
                max-width: calc(100% - 20px);
                max-height: 60vh;
                font-size: 14px;
            }
        }


/*כפתור מוזיקה צף*/
#music-orb {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, #2b2b2b, #000);
    box-shadow: 0 0 25px rgba(0,255,120,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

#music-orb:hover {
    box-shadow: 0 0 35px rgba(0,255,120,0.8);
    transform: scale(1.05);
}

#orb-visual {
    width: 70px;
    height: 70px;
    background: #111;
    border-radius: 50%;
    box-shadow: inset 0 0 15px rgba(0,255,120,0.3);
}

#orb-controls {
    position: absolute;
    bottom: 130px;
    right: 0;
    background: #111;
    color: #0f0;
    padding: 12px;
    border-radius: 15px;
    width: 180px;
    display: none;
    box-shadow: 0 0 20px rgba(0,255,120,0.3);
}

#orb-title {
    font-size: 14px;
    margin-bottom: 10px;
    direction: rtl;
}

#orb-controls button {
    background: #0f0;
    border: none;
    padding: 8px;
    margin-right: 5px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

/*כפתור מוזיקה צף סיום*/


/*עיגולים 3 INDEX במחשב */

#text2 {
    padding: 30px;
    margin: 60px;
    border-radius: 30px;
    background-color: #ffffff;
    box-shadow: 0 0 5px rgba(85, 67, 67, 0.1);   
}



.zoom{
  border-radius: 50%;
   width: 200px;
   height: 200px;
    border-radius: 50%;
    padding: 20px;
     transition: transform 0.3s ease-in-out; /* אנימציה חלקה לשינוי גודל */
}

.zoom:hover {
    transform: scale(1.1); /* מגדיל את האלמנט ב-10% */
}

/*עיגולים 3 INDEX במחשב  מסוים*/

h2 {
    color: #324356;
}

/* רשימות */
ul {
    padding: 0;
}

/* פוטר */
footer {
    background-image: url("img/imge-fooder.jpg");
    text-align: center;
    width: 100%;
    height: 100%;   
}

.footer-div{
    padding: 15px;
}

.footer-div2{
    margin: 10px;
    padding: 15px;
}

/*FLEBOX של האייקונים והלוגו*/

/* 1. האב: מפריד את שתי הקבוצות לקצוות (ימין ושמאל) */
.footer-av-aicon {
    display: flex;
    justify-content: space-between;
    align-items: center; /* מוודא ששתי הקבוצות מיושרות אנכית */
    width: 100%;
}

/* 2. הדיב של האייקונים: מסדר את האייקונים בשורה אחת */
.fooder-aicon {
    display: flex; 
    align-items: center;
    gap: 5px; 
}

/* 3. הדיב של הלוגו והפסקאות: מסדר אותם בשורה אחת */
.fooder-logo {
    display: flex;
    align-items: center; 
    gap: 15px; 
}

/* הגדרות קטנות נוספות */
.fooder-logo p {
    margin: 0; /* מנטרל שוליים שעלולים לשבש את היישור */
    font-weight: bold;
}

.aicon {
    height: 16px;
    width: 16px;
}

.logo {
    height: 100px;
    width: 100px;
}




h5{
color: #000000;

}

/*עמוד צור קשר*/
/*השליחת מייל*/
.section-contact{
    display: flex;
    padding: 50px;
    margin: 90px;
    border-radius: 25px;
    background-color: #c6b4b45d;
    box-shadow: 0 0 5px rgba(85, 67, 67, 0.1);  
}

/*דיב פרטי טלפון ומייל ליצירת קשר*/
.div-telpon-av{
   display: block;
   padding: 30px;
   width: 400px;
   height: 200px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   border-radius: 16px;
}

/*עמוד הסרטונים*/
    /* 1. הגדרת כל האלמנטים להכליל גבולות וריפוד במידות (מומלץ) */
    * {
      box-sizing: border-box;
    }

    /* 2. הגדרת הקונטיינר (הדיב העוטף את הסרטון) */
    .video-container {
      text-align: center;
      color: #b7cdfd;
      height: 750px;
      width: 300px;
      position: relative;
      overflow: hidden;
      padding: 0;
      background-color: #f7dadac0;
      border-radius: 8px;
      transition: transform 0.3s ease-in-out;
    }

    /* 3. הגדרת הסרטון למילוי מלא וללא רווחים מיותרים */
    .video-container video {
      width: 100%;
      display: block;
      margin: 0;
      padding: 0;
      border-radius: 8px;
      transition: transform 0.3s ease-in-out;
    }

    /* 4. אפקט ההגדלה במעבר עכבר */
    .video-container:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    /*הצבע של הטקסט בתיאור של הסרטון*/
    .colort {
      color: #000;
    }

        /*הדיב שעוטף את כול הסרטונים לאורך*/
    .section-about1 {
      padding: 30px;
      padding-top: 60px;
      padding-right: 60px;
        margin: 90px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* 5. --------------הגדרת הסטיקר האדום--------------------------*/
    .css-sticker {
      position: absolute;
      top: 15px;
      right: 15px;
      z-index: 20;
      background-color: #e74c3c;
      color: white;
      font-size: 14px;
      font-weight: bold;
      padding: 8px 12px;
      border-radius: 5px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      transform: rotate(3deg);
      transform-origin: top right;
      pointer-events: none;
    }
/*עמוד הסרטונים סיום*/


  /*H2 עמוד הבלוג*/
.h2-blog{
color: #4CAF50;
font-size: 2em;
}

 .img-blog{
    width: 800px;
    height: 500px;
    border-radius: 30px;
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
}
/*H2 עמוד הבלוג סיום*/

  input[type="text"]  {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 200px;
  }
  
  form {
    display: flex; /* מאפשר שימוש ב-flexbox לסידור אלמנטים */
    flex-direction: column; /* מסדר את האלמנטים אנכית */
    width: 300px; /* רוחב הטופס, ניתן להתאים */
    margin: 0 auto; /* ממקם את הטופס במרכז הדף */
  }
  
  label {
    margin-bottom: 20px; /* מרווח בין התוויות */
  }
  
  input[type="email"],
  textarea {
    width: 200px;
    height: 40px;
    padding: 5px;
    border: 2px solid #ccc;
    font-family: cursive;
    border-radius: 4px;
    box-sizing: border-box; /* כולל padding ו-border ברוחב ובגובה */
  }
  
  textarea {
    height: 100px; /* גובה תיבת הטקסט, ניתן להתאים */
    resize: vertical; /* מאפשר שינוי גובה אנכי של תיבת הטקסט */
  }
  
  .button-submit {
    margin-top: 10px; /* מרווח מעל הכפתור */
    text-align: center; /* ממקם את הכפתור במרכז */
  }
  
  .label-submit {
    background-color: #4CAF50; /* ירוק */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .label-submit:hover {
    background-color: #45a049; /* ירוק כהה יותר בעת ריחוף */
  }
  
  /* עיצוב רספונסיבי אופציונלי למסכים קטנים */
  @media (max-width: 400px) {
    form {
      width: 90%; /* הטופס יתפוס יותר רוחב במסכים קטנים */
    }
  }

  #message{
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

 textarea{
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 200px;
 }

  button[type="submit"] {
    width: 200px;
    text-align: center;
    background-color: #4CAF50;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .container {
    width: 80%;
    margin: 0 auto;
  }
  
.center-title {
    text-align: center;
    padding: 30px;
    margin: 0;
    font-size: 20px;
    color: #324356;
}
  
  .center-image {
    text-align: center;
    border-radius: 50%;
    
  }

  img {
    width: 200px;
    height: 200px;
    padding: 20px;
  }

#launcher {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: #ebe4e4;
    border-radius: 10px;
    padding: 10px;
    z-index: 2000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  
  #launcher:hover {
    scale: 1.1;
  }
  

 #button1 {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    margin: 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 3%;
  }
    
  #lll{
    box-shadow: 0 0 10px rgba(85, 67, 67, 0.1);
    border-radius: 50px;
  }


 /* desktop */
.chat {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFFFFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.whatsapp-icon {
    margin-top: 16px;
}

/* mobile */
@media screen and (max-width: 767px) {
    .whatsapp-icon {
        margin-top: 10px;
    }

    .chat {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 10px;
        font-size: 22px;
    }
}

#email{
    width: 50;
    height: 10;
}

/* סגנון וידאו */
.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.video-container video {
    max-width: 400px; /* גודל מקסימלי כדי למנוע מהסרטונים להיות גדולים מדי */
}

/* סגנון נייד */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column; /* סידור אנכי של הקישורים */
    }

    nav li {
        margin: 5px 0; /* מרווח בין הקישורים */
    }
}



#button-miuzik{
  background-color: #e50914;
  text-decoration: none; /* הסרת קו תחתון */
  text-align: center;
  padding: 15px;
  margin: 25px;
  border-radius: 5px;
  border: none;
  box-shadow: 0px 0px 0.5px;
}

          article {
            background-color: white;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        article h2 {
            color: #4CAF50;
            margin-bottom: 5px;
            font-size: 2em;
        }
        article p {
            font-size: 1.1em;
        }
 
        .post-meta {
            font-size: 0.9em;
            color: #888;
            margin-bottom: 10px;
        }



        .read-more-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff; /* כחול */
    color: white;
    text-decoration: none;
    border-radius: 5px;
        }


        .read-more-button:hover {
            background-color: #45a049;
            text-decoration: none;
        }




            article .featured-image {
            width: 520px;
            border-radius: 30px;
            max-height: 300px;
            object-fit: cover;
            margin-bottom: 15px;
        }


.h23{
text-align: center;
}


.articles-container {
    display: flex; /* הופך את הקונטיינר ל-flex container */
    justify-content: center; /* ממקם את התוכן במרכז אופקית */
    align-items: flex-start; /* מיישר את הפריטים לחלק העליון (אופציונלי, תלוי אם יש גבהים שונים) */
    gap: 20px; /* רווח בין האלמנטים (אופציונלי) */
    flex-wrap: wrap; /* מאפשר לפריטים לעבור שורה אם אין מספיק מקום (חשוב לרספונסיביות) */
}

.articles-container article {
    flex: 1; /* מאפשר לכל article לתפוס חלק שווה מהשטח הזמין */
    max-width: 45%; /* הגבלת רוחב כדי שלא יתפרסו יותר מדי (התאם לפי הצורך) */
    height: 630px;
    box-sizing: border-box; /* כולל padding ו-border ברוחב הכולל */
    padding: 30px; /* רווח פנימי (אופציונלי) */
    border: 1px solid #ddd; /* מסגרת (אופציונלי) */
    
}



/* כפתור "קרא עוד" */
.articles-container .read-more-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff; /* כחול */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}



/* --- מודול חיפוש מודרני --- */ /* --- מודול חיפוש מודרני --- */

.search-container {
    display: flex; /* לסידור אלמנטים בשורה */
    justify-content: center; /* למרכז את תיבת החיפוש */
    align-items: center; /* ליישר אנכית */
    margin: 40px auto; /* רווח מלמעלה/למטה ומרכוז */
    max-width: 600px; /* רוחב מקסימלי לתיבת החיפוש */
    position: relative; /* למיקום אייקונים */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* צל עדין */
    border-radius: 30px; /* פינות מעוגלות מאוד */
    background-color: #fff; /* רקע לבן לתיבה */
    overflow: hidden; /* לוודא שהפינות נשארות מעוגלות */
}

#searchInput {
    flex-grow: 1; /* יתפוס כמה שיותר מקום */
    padding: 12px 20px; /* רווח פנימי */
    padding-right: 50px; /* מקום לאייקון החיפוש מימין (בהתאם ל-RTL, האייקון בצד ימין) */
    border: none; /* הסרת הגבול המוגדר כברירת מחדל */
    outline: none; /* הסרת ה"הילה" בעת לחיצה */
    font-size: 1.1em;
    color: #333;
    background-color: transparent; /* שקוף כדי שהרקע של .search-container ייראה */
    direction: rtl; /* לכתיבה מימין לשמאל בתוך השדה */
    text-align: right; /* ליישור הפלייס הולדר והטקסט מימין */
}

#searchInput::placeholder {
    color: #888;
}



#searchButton {
    background-color: #007bff; /* כחול בולט */
    color: white;
    border: none;
    padding: 12px 25px; /* רווח פנימי גדול יותר */
    border-radius: 0 30px 30px 0; /* פינות מעוגלות רק מצד ימין */
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease; /* אנימציה בעת ריחוף */
}

#searchButton:hover {
    background-color: #0056b3; /* כחול כהה יותר בריחוף */
}


/* עיצוב ומיקום אייקון ה-SVG */
.search-icon {
    position: absolute;
    right: 15px; /* מיקום ימין (בגלל RTL) */
    width: 24px; /* גודל האייקון */
    height: 24px;
    color: #888; /* צבע האייקון */
    pointer-events: none; /* כדי לא להפריע ללחיצה על תיבת הטקסט */
    z-index: 1; /* וודא שהוא מעל תיבת הקלט */
}

/* --- עיצוב תוצאות חיפוש --- */
.search-results {
    margin: 20px auto; /* מרכוז */
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px; /* פינות מעוגלות יותר */
    background-color: #ffffff;
    max-width: 600px; /* רוחב תואם לתיבת החיפוש */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); /* צל עדין יותר */
    text-align: right; /* ליישור לימין בגלל עברית */
}

.search-results p {
    color: #666;
    font-size: 1em;
}

.search-results ul {
    list-style: none;
    padding: 0;
}

.search-results li {
    margin-bottom: 18px; /* רווח בין תוצאות שונות */
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0; /* קו הפרדה עדין יותר */
}

.search-results li:last-child {
    border-bottom: none; /* הסר קו תחתון מתוצאה אחרונה */
    margin-bottom: 0;
    padding-bottom: 0;
}

.search-results li a {
    color: #007bff; /* צבע כחול בולט לקישור */
    text-decoration: none;
    font-weight: 600; /* עובי גופן בינוני */
    font-size: 1.15em;
    display: block; /* כדי שהלינק יתפוס שורה שלמה */
    margin-bottom: 5px;
}

.search-results li a:hover {
    text-decoration: underline;
    color: #df0505; /* צבע כחול כהה בריחוף */
}

/* עיצוב קטע הטקסט (snippet) */
.search-snippet {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
}

/* הדגשת מילים בתוך הקטע */
.search-snippet strong {
    background-color: #ffe08a; /* צהוב בהיר יותר */
    padding: 1px 4px;
    border-radius: 4px;
    font-weight: bold;
    color: #333; /* צבע טקסט בתוך ההדגשה */
}

/* תיבת חיפוש של האתר סיום */ /* תיבת חיפוש של האתר סיום */


/* רקע כהה שמופיע מאחורי הפופ-אפ */
#popup-container {
    position: fixed; /* נשאר במקום גם בגלילה */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* רקע שחור שקוף */
    display: flex; /* למיקום מרכזי של התוכן */
    justify-content: center; /* מרכז אופקית */
    align-items: center; /* מרכז אנכית */
    z-index: 1000; /* ודא שהפופ-אפ יהיה מעל שאר התוכן */
}

/* עיצוב תוכן הפופ-אפ */
.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative; /* למיקום כפתור הסגירה */
    width: 90%; /* רוחב יחסי */
    max-width: 500px; /* רוחב מירבי */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* כפתור סגירה */
.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

.close-button:hover {
    color: #000;
}

/* עיצוב כפתור הקריאה לפעולה */
.popup-content button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.popup-content button:hover {
    background-color: #0056b3;
}

/* כותרת צור קשר*/
.cotert{
font-weight: 400;
}

    @media only screen and (max-width: 1024px) {

body {
    margin: 0;
    padding: 0;
}


/* index*/
section {
    margin: 0px;
}

/* שירים*/
.Musik {
  text-align: center;
    font-size: 1em;
}

.Musik2{
    margin: 60px;
   width: 310px; 
   overflow: hidden;
} 
/* סודר באמת -שירים*/

/*סהקשן index 3 עיגולים */

.zoom{
  width: 100px;
  height: 100px;
}
/* סיום 3 עיגולים INDEX*/



/* סגנון וידאו */
.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

       /*הדיב שעוטף את כול הסרטונים לאורך*/
    .section-about1 {
        margin: 15px;
    }

/*  לקישורים סגנון נייד */

    nav ul {
        flex-direction: column; /* סידור אנכי של הקישורים */
    }

    nav li {
        margin: 5px 0; /* מרווח בין הקישורים */
    }
/* סגנון נייד לא לגעת!*/


/*תמונה לפוסטים*/
            article .featured-image {
            width: 210px;
        }
/* סיום תמונה לפוסטים*/

/*פוסטים בעמוד הראשי*/
.articles-container {
    display: flex; /* הופך את הקונטיינר ל-flex container */
    justify-content: center; /* ממקם את התוכן במרכז אופקית */
    align-items: flex-start; /* מיישר את הפריטים לחלק העליון (אופציונלי, תלוי אם יש גבהים שונים) */
    gap: 20px; /* רווח בין האלמנטים (אופציונלי) */
    flex-wrap: wrap; /* מאפשר לפריטים לעבור שורה אם אין מספיק מקום (חשוב לרספונסיביות) */

}

.articles-container article {
    flex: 1; /* מאפשר לכל article לתפוס חלק שווה מהשטח הזמין */
    max-width: 45%; /* הגבלת רוחב כדי שלא יתפרסו יותר מדי (התאם לפי הצורך) */
    box-sizing: border-box; /* כולל padding ו-border ברוחב הכולל */
    padding: 30px; /* רווח פנימי (אופציונלי) */
    border: 1px solid #ddd; /* מסגרת (אופציונלי) */
    margin: 20px;
    
}

          article {
            height: 750px;
            max-height: 750px;
            padding: 20px;
        }
/*פוסטים בעמוד הראשי סיום */


/*  כללי כפתור "קרא עוד" */
.articles-container .read-more-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff; /* כחול */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
/*  סיום כפתור "קרא עוד" */


/* עיצוב תוכן הפופ-אפ */
.popup-content {
    margin: 10px;
}
/* עיצוב תוכן הפופ-אפ סיום!*/


/*עמוד הסרטונים*/
.section-about{
    margin: 15px;   
}
 /*VIDEO -עמוד הסרטונים*/
.video-about-section{
border-radius: 30px;
width: 250px;
max-width: 250px;
}


/*עמוד הסרטונים כפתור עוד סרטונים*/
        .read-more-button-about {
    display: inline-block;
    margin-top: 20px;
    margin-right: 0px;
    padding: 10px 20px;
    background-color: #d50318;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
        }
/*עמוד הסרטונים סיום*/

}

    @media only screen and (max-width: 820px) {
        .articles-container article{
            height: 700px;
        }
    }



/*מסכי טלפון רגילים*/
    @media only screen and (max-width: 540px) {
   

body {
    margin: 0;
    padding: 0;
}


/* index*/
section {
    margin: 0px;
    margin: 0px;
}

/* שירים*/
.Musik {
  text-align: center;
    font-size: 1em;
    max-width: 450px;
    margin: 0px;
    border-radius: 0px;
}

.Musik2{
   width: 310px; 
   overflow: hidden;
   margin: 10px;
   padding: 0px;
} 
/* סודר באמת -שירים*/

/*סהקשן index 3 עיגולים */

.zoom{
  width: 100px;
  height: 100px;
}
/* סיום 3 עיגולים INDEX*/

#text2 {
    padding: 30px;
    margin: 10px;
    border-radius: 30px;
    background-color: #ffffff;
    box-shadow: 0 0 5px rgba(85, 67, 67, 0.1);   
}

#searchInput {
    flex-grow: 1; /* יתפוס כמה שיותר מקום */
    padding: 12px 20px; /* רווח פנימי */
    padding-right: 50px; /* מקום לאייקון החיפוש מימין (בהתאם ל-RTL, האייקון בצד ימין) */
    border: none; /* הסרת הגבול המוגדר כברירת מחדל */
    outline: none; /* הסרת ה"הילה" בעת לחיצה */
    font-size: 0.9em;
    color: #333;
    background-color: transparent; /* שקוף כדי שהרקע של .search-container ייראה */
    direction: rtl; /* לכתיבה מימין לשמאל בתוך השדה */
    text-align: right; /* ליישור הפלייס הולדר והטקסט מימין */
}

/* סגנון וידאו */
.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


/*  לקישורים סגנון נייד */

    nav ul {
        flex-direction: column; /* סידור אנכי של הקישורים */
    }

    nav li {
        margin: 5px 0; /* מרווח בין הקישורים */
    }
/* סגנון נייד לא לגעת!*/

/*תמונה של המודי הבלוגים*/
.img-blog{
    width: 210px;
}
/*סיום תמונה של עמודי הבלוגים*/

#button-miuzik{
  background-color: #e50914;
  text-decoration: none; /* הסרת קו תחתון */
  text-align: center;
  padding: 15px;
  margin: 25px;
  border-radius: 5px;
  border: none;
  box-shadow: 0px 0px 0.5px;
}

    
        article h2 {
            margin-bottom: 5px;
            font-size: 2em;
        }
        article p {
            font-size: 1.1em;
        }
 
        .post-meta {
            font-size: 0.9em;
            color: #888;
            margin-bottom: 10px;
        }


        .read-more-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 40px;
    background-color: #007bff; /* כחול */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
        }

/*תמונה לפוסטים*/
            article .featured-image {
            width: 310px; 
            margin-right: -30px;
        }
/* סיום תמונה לפוסטים*/


.articles-container {
    display: block; /* הופך את הקונטיינר ל-flex container */
}

.articles-container article {
    max-width: 350px; /* הגבלת רוחב כדי שלא יתפרסו יותר מדי (התאם לפי הצורך) */
    width: 350px;
    padding: 30px; /* רווח פנימי (אופציונלי) */   
}


          article {
            padding: 20px;
        }

/* כפתור "קרא עוד" */
.articles-container .read-more-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff; /* כחול */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* עיצוב תוכן הפופ-אפ */
.popup-content {
    margin: 10px;
}
/* עיצוב תוכן הפופ-אפ סיום!*/


/*עמוד הסרטונים*/
.section-about{
    margin: 10px;   
}
 /*VIDEO עמוד הסרטונים*/
.video-about-section{
border-radius: 30px;
width: 250px;
max-width: 250px;
height: 450px;
max-height: 700px;
}

 /*VIDEO לרוחב עמוד הסרטונים*/
.video-about-section-rohav{
border-radius: 30px;
width: 250px;
max-width: 250px;
}

/*לאורך עמוד הסרטונים*/
   .section-about1 {
      padding-right: 35px;
        margin: 10px;
    }
    
        /* 2. הגדרת הקונטיינר (הדיב העוטף את הסרטון) */
    .video-container {
      height: auto;
    }
    
    .video-container video {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 8px;
}

/*עמוד הסרטונים סיום*/

/*עמוד צור קשר*/
.section-contact{
    margin: 30px;
    border-radius: 25px;
    background-color: #c6b4b45d;
    box-shadow: 0 0 5px rgba(85, 67, 67, 0.1);  
  }

  /*הדיב של האימייל והטלפון שרואים רק במובייל*/
.div-telpon-av{
    display: none;
}

/*סיום צור קשר*/

/*FOOTER החדש*/

footer {
    width: 100%;
}

/* 3. הדיב של הלוגו והפסקאות: מסדר אותם בשורה אחת */
.fooder-logo {
    display: flex;
    flex-direction: column-reverse;
    align-items: center; 
    gap: 15px; 
}

/*FOOTER החדש סיום*/

.articles-container article{
    height: 750px;
}

}