/* header */
#header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    height: auto;
    /* background-image: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 99, 121)); */
    background-image: url("../images/acustic_guitar.webp");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

#header::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background-color: rgba(0, 0, 0, 0.6); /* שחור שקוף בעוצמה 50% */
  z-index: 1;
}

#header > * {
  position: relative;
  z-index: 2; /* לוודא שהתוכן מעל ה-overlay */
}

@media (max-width: 1300px) {
    #header {
         padding: 30px;
     }
   }

#headers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 0px;
}

@media (max-width: 1300px) {
    #headers {
        padding: 50px 0px;
     }
   }

#header h1 {
    font-weight: bold;
    font-size: clamp(40px, 5vw, 100px);
    font-family: 'Rubik Dirt', sans-serif;
    font-weight: 200;
    color: orange;
}

#header h2 {
    font-weight: lighter;
    font-size: clamp(30px, 5vw, 50px);
    font-family: 'Rubik Dirt', sans-serif;
    font-weight: 100;
    color: white;
}

#btnHeader {
    display: block;
    text-align: center;
    border: none;
    border-radius: 5px;
    padding: clamp(12px, 8vw, 20px);
    width: 80%;
    margin-bottom: 30px;
    font-size: clamp(16px, 3vw, 18px);
    font-family: 'Rubik Dirt', sans-serif;
    cursor: pointer;
    color: white;
    background-image: linear-gradient(to right, rgb(242, 1, 1), rgb(167, 0, 0));
    /* background-image: linear-gradient(to right, rgb(0, 163, 233), rgb(40, 145, 190)); */
}
#btnHeader:hover {
    background-image: linear-gradient(to right, rgb(242, 1, 1), rgb(242, 1, 1));
}

#imgHeader {
    width: 50%;
    /* padding: 40px; */
    opacity: 0.8;
    border-radius: 10px;
}

@media (max-width: 1300px) {
    #imgHeader {
         width: 100%;
     }
   }