.header-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  position: relative;
}

.logo1 {
  width: 120px;
  height: auto;
}
a{
  text-decoration:none !important;
}
.logo2 {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
}

.dropdown {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 999;
}

.main-button {
  font-size: 24px;
  padding: 8px 12px;
  top: 25;
  background-color: rgba(154, 20, 176, 1);
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
}

.main-button:hover,
.main-button:active,
.main-button:focus,
.main-button:visited {
  background-color:  rgba(154, 20, 176, 1) !important;
  color: white !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.dropdown-content {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: row; 
  justify-content: space-around;
  gap: 10px;
  padding: 8px 12px;
  z-index: 1000;
  box-shadow: -4px 6px 6px rgba(0, 0, 0, 0.3) !important;
  align-items: center;
  width:600px;
  height:40px;
  border-radius: 12px;
}

.dropdown-content.active {
  display: flex;
}


.sub-button {
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  color:rgba(154, 20, 176, 1);
  font-weight:600;
  font-family: var(--font-hebrew);
}

.language-selector {
  position: relative;
  display: inline-block;
}
.language-options input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 15px;
  height: 15px;
  border: 2px solid #999;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  background-color: #fff;
}

.language-options input[type="radio"]:checked {
  background-color: rgba(154, 20, 176, 1); 
}

.language-options {
  position: absolute;
  top: 100%; 
  left: 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 5px 10px;
  border-radius: 8px;
  z-index: 1000;
  gap:10px;
}

.language-selector:hover .language-options,
.language-selector.active .language-options {
  display: flex;
}

.hebrew,
.english {
  display:flex;
  gap:10px;
  color: #fff;
  justify-content:center;
  align-items: center;
}

.sub-button:hover,
.sub-button:active,
.sub-button:focus,
.sub-button:visited {
  color:rgba(154, 20, 176, 1) !important;
}