/* ===== MENU BUTTON SIDEBAR ===== */
.openBtn.hide{
     display:none;
}
.openBtn{    

  position:fixed;
  top:20px;
  left:20px;
  z-index:900;

  width:auto;
  padding:10px 15px;

  font-size:18px;
  background:#111;
  color:white;
  border:none;
  border-radius:6px;
  cursor:pointer;
  transition:0.3s;
}

.openBtn:hover{
  background:#333;
}

/* ===== OVERLAY SIDEBAR ===== */
#overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  opacity:0;
  visibility:hidden;
  transition:0.4s ease;
   z-index:950;
}

#overlay.active{
  opacity:1;
  visibility:visible;
}

/* ===== SIDEBAR ===== */
#sidebar{
  position:fixed;
  top:0;
  left:-260px;
  width:260px;
  height:100%;
  background:#0d1b2a;
  padding-top:60px;
  transition:0.4s ease;
    z-index:1000;
  box-shadow:2px 0 10px rgba(0,0,0,0.3);
}

#sidebar.active{
  left:0;
}

#sidebar a{
	
  display:block;
  padding:15px 25px;
  color:white;
  text-decoration:none;
  font-size:17px;
  transition:0.3s;
}

#sidebar a:hover{
  background:#1b263b;
  padding-left:35px;
}

.closebtn{
  position:absolute;
  top:15px;
  right:20px;
  font-size:24px;
  color:white;
  cursor:pointer;
}

/* ===== ΤΟ logo ΤΟΥ ΑΝΔΡΕΑ ===== */

.company-logo{
	position:fixed !important;
  right:20px !important;
  left:auto !important;
  transform:none !important;

top:20px !important;

 z-index:2000; /* 🔥 ΒΑΛΕ ΜΕΓΑΛΟ */
background:white;
padding:10px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.3);  
border:2px solid #e8dfc5;
}


.company-logo img{
  width:clamp(90px, 15vw, 190px); /* 🔥 MAGIC */
  height:auto;
}

/* 🔥 ΕΙΝΑΙ ΔΕΥΤΕΡΟ logo */
.company-logos{
position:absolute;
z-index:1000;
background:white;
padding:8px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.3);

}
.company-logos img{
width:140px;
height:auto;
}
