/* הגדרות גוף האתר */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff8f0;
    color: #333;
    position: absolute;
    width: 100%;
    left: 0;
}

/* עיצוב כותרת האתר */
header {
    position: relative;
    padding: 20px;
    text-align: center;
    color: white;
    background: linear-gradient(to right, #ffd195 20%, #ffca84 30%, #faae4a 40%, #ffa533 70%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}


header h1 {
    position: relative;
    z-index: 1; /* להבטיח שהכותרת תהיה מעל הרקע */
    text-shadow: 0px 0px 10px #d85d00;
    font-size: 3em;
}

header img {
    max-height: 140px;
    position: absolute;
    left: 20px;
    top: 10px;
}

/* עיצוב באנר */
.banner {
    background: url("../img/about.png");
    background-size: cover;
    background-position: center;
    height: 600px;
}


/* עיצוב התוכן התחתון (הסברים על המוצרים) */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
    background-color: #fff0e0;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-box {
    flex: 1 1 250px;
    background-color: #ffe1c2;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: scale(1.05);
}

.feature-box h3 {
    margin-top: 0;
    color: #d85d00;
}

/* עיצוב לתוכן SEO */
.seo {
    padding: 30px;
    background-color: white;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    line-height: 1.6;
}

.seo a {
    display: inline-block;
    margin: 10px 0;
    color: #d85d00;
    text-decoration: none;
    font-weight: bold;
}

.seo a:hover {
    text-decoration: underline;
}

/* הגדרת הקרוסלה */
/* הגדרת הקרוסלה */
.carousel-container {
    margin: 40px auto;
    width: 80%;
    height: 350px;
    overflow: hidden;
    border-radius: 15px;
    background-color: #fff3e6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center; /* מרכז אנכי */
    position: relative; /* חשוב כדי שהתמונות עם position:absolute יתייחסו אליו */
}
  
/* הגדרת המעקף (track) */
.carousel-track {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative; /* חשוב במקרה שתהיה תזוזה */
}
  
.carousel-track img {
    max-height: 300px;
    width: 400px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

  /* כל תמונה ב־active מצב */
  .call-button {
    position: fixed;
    bottom: 36px;
    right: 36px;
    background-color: #ffa726; /* כתום בהיר */
    color: white;
    font-size: 5px;
    padding: 26px;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    text-decoration: none;
    z-index: 1000;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .call-button:hover {
    background-color: #fb8c00; /* כתום בוהק */
    transform: scale(1.1);
  }
  
  .call-icon {
    display: inline-block;
    line-height: 1;
    color: white;
  }
  .carousel-track .active{
    opacity: 1;
  }